:root {
  --header-bg: #101010;
  --gold: #ba9751;
  --gold-light: #d4b872;
  --text-on-dark: #e8e2d8;
  --top-header-height: 40px;
  --header-height: 100px;
  --logo-height: 62px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--text-on-dark);
  overflow-x: hidden;
  max-width: 100vw;
  background-color: #14100D;
}

/* Site header wrapper (top-header + main header) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  max-width: 100%;
  overflow: visible;
}

/* Top header - iletişim & sosyal */
.top-header {
  background: rgba(16, 16, 16, 0.9);
  border-bottom: 1px solid rgba(186, 151, 81, 0.12);
  min-height: var(--top-header-height);
}

.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--top-header-height);
}

.top-header-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: color 0.2s, opacity 0.2s;
}

.top-social-link:hover {
  color: var(--gold-light);
  opacity: 0.9;
}

.top-social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.top-header-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-header-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}

.top-header-link:hover {
  color: var(--gold-light);
}

.top-header-link svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  stroke: currentColor;
}

/* Main header */
.header {
  background: rgba(16, 16, 16, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(186, 151, 81, 0.15);
  padding: 1rem 0;
  min-height: var(--header-height);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(var(--header-height) - 2rem);
  position: relative;
  overflow: visible;
}

.hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold);
  cursor: pointer;
  transition: color 0.2s;
}

.hamburger-btn:hover {
  color: var(--gold-light);
}

.hamburger-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
}

.hamburger-btn .close-icon {
  display: none;
}

body.menu-open .hamburger-btn .hamburger-icon {
  display: none;
}

body.menu-open .hamburger-btn .close-icon {
  display: block;
}

.nav-wrapper-logo {
  display: none;
}

.nav-wrapper-signature {
  display: none;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  justify-content: flex-end;
  overflow: visible;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

body.menu-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.logo {
  height: var(--logo-height);
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  padding-right: 20px;
}

/* Masaüstünde logo tam ölçüde görünsün */
@media (min-width: 993px) {
  .logo-link {
    flex-shrink: 0;
  }
  .logo {
    max-width: none;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  margin-right: 1rem; /* menü ile İletişim butonu arası boşluk */
  overflow: visible;
}

.nav a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav a .nav-icon,
.nav a svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  stroke: currentColor;
}

.nav a:hover {
  color: var(--gold-light);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  overflow: visible;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-dropdown-trigger .nav-icon,
.nav-dropdown-trigger .nav-dropdown-chevron,
.nav-dropdown-trigger svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  stroke: currentColor;
}

.nav-dropdown-chevron {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-trigger:hover {
  color: var(--gold-light);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  min-width: 200px;
  padding: 0.5rem 0;
  list-style: none;
  margin-left: 0;
  margin-right: 0;
  background: rgba(16, 16, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(186, 151, 81, 0.25);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu--wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.75rem;
  min-width: 560px;
  max-width: 720px;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}

.nav-dropdown-menu--wide a {
  white-space: nowrap;
}

.nav-dropdown-menu--wide a span {
  flex: 0 1 auto;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
  background: rgba(186, 151, 81, 0.15);
  color: var(--gold-light);
}

.nav-dropdown-menu svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  stroke: currentColor;
}

.nav-dropdown-group {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-dropdown-group + .nav-dropdown-group {
  border-top: 1px solid rgba(186, 151, 81, 0.15);
  margin-top: 0.25rem;
  padding-top: 0.25rem;
}

.nav-dropdown-label {
  display: block;
  padding: 0.35rem 1rem 0.15rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(186, 151, 81, 0.75);
}

.nav-dropdown-group a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-cta .btn-icon,
.btn-cta svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  stroke: currentColor;
}

.btn-cta:hover {
  background: var(--gold);
  color: var(--header-bg);
}

/* Hero */
/* Container - içerik sağa sola yaslanmasın */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: #101010 url('../img/elif-coskun-hero-banner-2.webp') no-repeat center top;
  background-size: cover;
  background-position: center top;
  position: relative;
  margin-top: 0;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  padding-top: calc(var(--top-header-height) + var(--header-height) + 2rem);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16, 16, 16, 0.4) 0%,
    rgba(16, 16, 16, 0.1) 40%,
    rgba(16, 16, 16, 0.3) 100%
  );
  pointer-events: none;
}

/* Hero card - glass style, oval edges */
.hero-card {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 2.25rem 2.5rem;
  background: rgba(16, 16, 16, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(186, 151, 81, 0.25);
  border-radius: 48px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  will-change: transform;
}

.hero-card-slogan {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero-card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.hero-card-title-icon {
  flex-shrink: 0;
  width: 1.35em;
  height: 1.35em;
  color: var(--gold);
  stroke: currentColor;
}

.hero-card-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(232, 226, 216, 0.9);
  margin-bottom: 1.5rem;
}

.hero-card-cta-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-card-signature {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Kartlar bölümü - hero altı, carousel (container ile aynı ölçüde) */
.cards-section {
  background-color: #14100D;
  padding: 4rem 0;
}

.cards-section-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}

.cards-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 400;
  color: var(--text-on-dark);
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.cards-section-title-icon {
  flex-shrink: 0;
  width: 1.4em;
  height: 1.4em;
  color: var(--gold);
  stroke: currentColor;
}

/* Kart alanı sol/sağ kenar – transparan gradyan maske (kesik görünümü yumuşatır) */
.cards-carousel-mask-wrap {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.cards-carousel-mask-wrap::before,
.cards-carousel-mask-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(3rem, 8vw, 6rem);
  z-index: 5;
  pointer-events: none;
}

.cards-carousel-mask-wrap::before {
  left: 0;
  background: linear-gradient(to right, #14100D 0%, rgba(20, 16, 13, 0.6) 40%, transparent 100%);
}

.cards-carousel-mask-wrap::after {
  right: 0;
  background: linear-gradient(to left, #14100D 0%, rgba(20, 16, 13, 0.6) 40%, transparent 100%);
}

/* Cards carousel – Swiper 3D coverflow (UI Initiative style) */
.cards-carousel {
  position: relative;
  padding: 1rem 0 3rem;
  overflow: visible;
}

.cards-carousel .swiper-wrapper {
  align-items: stretch;
}

.cards-carousel .swiper-slide {
  width: 280px;
  max-width: 85vw;
  height: auto;
  display: flex;
  transition: opacity 0.3s ease;
}

.cards-carousel .swiper-slide .card {
  width: 100%;
  height: 100%;
  min-height: 220px;
}

/* Swiper nav buttons – önceki kartlar gibi ikonlu, tema uyumlu */
.cards-carousel-prev,
.cards-carousel-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  margin-top: -1.375rem;
  border-radius: 50%;
  border: 1px solid rgba(186, 151, 81, 0.4);
  background: rgba(186, 151, 81, 0.1);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.cards-carousel-prev {
  left: -0.5rem;
}

.cards-carousel-next {
  right: -0.5rem;
}

.cards-carousel-prev:hover,
.cards-carousel-next:hover {
  background: rgba(186, 151, 81, 0.25);
  border-color: var(--gold);
  color: var(--gold-light);
}

.cards-carousel-prev:focus-visible,
.cards-carousel-next:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.cards-carousel-prev i,
.cards-carousel-next i,
.cards-carousel-prev svg,
.cards-carousel-next svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* Pagination – kartların altında, spark (çizgi) şeklinde */
.cards-section-inner .cards-carousel-pagination {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 0;
  width: 100%;
  left: 0;
  bottom: auto;
}

.cards-carousel-pagination .swiper-pagination-bullet {
  width: 1.5rem;
  height: 0.25rem;
  border-radius: 2px;
  background: rgba(186, 151, 81, 0.35);
  opacity: 1;
  transition: background 0.2s, transform 0.2s, width 0.2s;
}

.cards-carousel-pagination .swiper-pagination-bullet:hover {
  background: rgba(186, 151, 81, 0.6);
}

.cards-carousel-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 2rem;
  transform: none;
}

.card {
  background: rgba(232, 226, 216, 0.06);
  border: 1px solid rgba(186, 151, 81, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s, backdrop-filter 0.2s;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Faaliyet alanları kartları – glass blur */
.cards-section .card {
  background: rgba(20, 16, 13, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  text-align: center;
}

.cards-section .card:hover {
  background: rgba(20, 16, 13, 0.65);
  border-color: rgba(186, 151, 81, 0.35);
}

.card:hover {
  background: rgba(232, 226, 216, 0.08);
  border-color: rgba(186, 151, 81, 0.35);
}

.card-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: rgba(186, 151, 81, 0.15);
  margin-bottom: 1rem;
}

.card-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--gold);
  stroke: currentColor;
}

.card-title {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin: 0;
  line-height: 1.35;
}

.cards-section .card-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(232, 226, 216, 0.75);
  margin: 0.5rem 0 0;
  flex: 1;
}

/* Bizden Haberler – kartlar bölümü gibi aynı alan stili */
.news-section {
  background-color: #14100D;
  padding: 4rem 0;
}

.news-section-inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}

.news-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 400;
  color: var(--text-on-dark);
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.news-section-title-icon {
  flex-shrink: 0;
  width: 1.4em;
  height: 1.4em;
  color: var(--gold);
  stroke: currentColor;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news-card {
  background: rgba(232, 226, 216, 0.06);
  border: 1px solid rgba(186, 151, 81, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  background: rgba(232, 226, 216, 0.08);
  border-color: rgba(186, 151, 81, 0.35);
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.news-card-date {
  font-size: 0.75rem;
  color: rgba(186, 151, 81, 0.9);
  font-family: 'Jost', sans-serif;
}

.news-card-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.news-card-title {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-on-dark);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.news-card-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(232, 226, 216, 0.75);
  margin: 0 0 1rem;
  flex: 1;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.news-card-link:hover {
  color: var(--gold-light);
}

.news-card-link svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: currentColor;
}

.news-section-footer {
  margin-top: 2rem;
  text-align: center;
}

/* Sıkça Sorulan Sorular – Akordeon */
.sss-accordion-wrap {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(186, 151, 81, 0.2);
}

.sss-accordion-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text-on-dark);
  margin: 0 0 1.5rem;
  text-align: center;
}

.sss-accordion-title-icon {
  flex-shrink: 0;
  width: 1.35em;
  height: 1.35em;
  color: var(--gold);
  stroke: currentColor;
}

.sss-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.sss-accordion-item {
  border: 1px solid rgba(186, 151, 81, 0.2);
  border-bottom: none;
  background: rgba(232, 226, 216, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.sss-accordion-item:first-child {
  border-radius: 12px 12px 0 0;
}

.sss-accordion-item:last-child {
  border-bottom: 1px solid rgba(186, 151, 81, 0.2);
  border-radius: 0 0 12px 12px;
}

.sss-accordion-item:only-child {
  border-radius: 12px;
  border-bottom: 1px solid rgba(186, 151, 81, 0.2);
}

.sss-accordion-item:hover {
  background: rgba(232, 226, 216, 0.06);
}

.sss-accordion-item.is-open {
  background: rgba(186, 151, 81, 0.08);
  border-color: rgba(186, 151, 81, 0.35);
}

.sss-accordion-item.is-open + .sss-accordion-item {
  border-top-color: rgba(186, 151, 81, 0.2);
}

.sss-accordion-heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.sss-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-on-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.sss-accordion-trigger:hover {
  color: var(--gold);
}

.sss-accordion-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.sss-accordion-trigger-text {
  flex: 1;
}

.sss-accordion-icon {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--gold);
  stroke: currentColor;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sss-accordion-item.is-open .sss-accordion-icon {
  transform: rotate(180deg);
}

/* Panel: grid 0fr → 1fr ile yükseklik animasyonu */
.sss-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sss-accordion-panel.is-open {
  grid-template-rows: 1fr;
}

.sss-accordion-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.sss-accordion-panel-content {
  padding: 0 1.25rem 1rem;
}

.sss-accordion-panel-content p {
  margin: 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(232, 226, 216, 0.85);
}

/* Bizden Haberler */
.bizden-haberler-wrap {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(186, 151, 81, 0.2);
}

.bizden-haberler-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text-on-dark);
  margin: 0 0 1.5rem;
  text-align: center;
}

.bizden-haberler-title-icon {
  flex-shrink: 0;
  width: 1.35em;
  height: 1.35em;
  color: var(--gold);
  stroke: currentColor;
}

.haberler-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.haberler-item {
  display: flex;
  flex-direction: column;
  background: rgba(232, 226, 216, 0.04);
  border: 1px solid rgba(186, 151, 81, 0.2);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-on-dark);
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.haberler-item:hover {
  background: rgba(232, 226, 216, 0.08);
  border-color: rgba(186, 151, 81, 0.35);
  color: var(--gold-light);
}

.haberler-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1512;
  overflow: hidden;
}

.haberler-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.haberler-item:hover .haberler-thumb-img {
  transform: scale(1.03);
}

.haberler-item-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 1rem 1.25rem;
}

.haberler-date {
  font-size: 0.75rem;
  color: rgba(186, 151, 81, 0.9);
  flex-shrink: 0;
}

.haberler-title {
  flex: 1;
  min-width: 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.haberler-icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  stroke: currentColor;
  opacity: 0.8;
}

.haberler-item:hover .haberler-icon {
  opacity: 1;
}

.bizden-haberler-footer {
  margin-top: 1.5rem;
  text-align: center;
}

/* Hesaplama Araçları */
.hesaplama-araclari-wrap {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(186, 151, 81, 0.2);
}

.hesaplama-araclari-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text-on-dark);
  margin: 0 0 1.5rem;
  text-align: center;
}

.hesaplama-araclari-title-icon {
  flex-shrink: 0;
  width: 1.35em;
  height: 1.35em;
  color: var(--gold);
  stroke: currentColor;
}

.hesaplama-kartlari-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hesaplama-karti {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  background: rgba(232, 226, 216, 0.06);
  border: 1px solid rgba(186, 151, 81, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-on-dark);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hesaplama-karti:hover {
  background: rgba(232, 226, 216, 0.1);
  border-color: rgba(186, 151, 81, 0.4);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.hesaplama-karti-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.hesaplama-karti-icon {
  width: 1.75rem;
  height: 1.75rem;
  stroke: currentColor;
  flex-shrink: 0;
}

.hesaplama-karti:hover .hesaplama-karti-icon-wrap {
  color: var(--gold-light);
}

.hesaplama-karti-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

/* Site Footer */
.site-footer {
  position: relative;
  background: #0D0906;
  color: var(--text-on-dark);
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
  margin-top: 0;
  border-top: 1px solid rgba(186, 151, 81, 0.2);
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C300,0 600,60 900,30 C1050,15 1150,45 1200,30 L1200,60 L0,60 Z' fill='%230D0906'/%3E%3C/svg%3E") no-repeat center top;
  background-size: 100% 60px;
  margin-top: -1px;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(186, 151, 81, 0.15);
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(232, 226, 216, 0.85);
  margin: 0.75rem 0 0;
  max-width: 320px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
  margin: 0;
  letter-spacing: 0.02em;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(186, 151, 81, 0.35);
  color: var(--gold);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.footer-social-link:hover {
  background: var(--gold);
  color: var(--header-bg);
  border-color: var(--gold);
}

.footer-social-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: rgba(232, 226, 216, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-nav a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(232, 226, 216, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-contact-link:hover {
  color: var(--gold-light);
}

.footer-contact-link svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  stroke: currentColor;
}

.footer-bottom {
  text-align: center;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(232, 226, 216, 0.6);
  margin: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(186, 151, 81, 0.4);
  background: rgba(16, 16, 16, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s, color 0.2s, border-color 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--header-bg);
  border-color: var(--gold);
}

.back-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
}

/* Blog & Makaleler – görselli kartlar */
.blog-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-post-card {
  background: rgba(232, 226, 216, 0.06);
  border: 1px solid rgba(186, 151, 81, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  background: rgba(232, 226, 216, 0.08);
  border-color: rgba(186, 151, 81, 0.35);
}

.blog-post-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1512;
  overflow: hidden;
}

.blog-post-card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post-card-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-post-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.blog-post-card-date {
  font-size: 0.75rem;
  color: rgba(186, 151, 81, 0.9);
  font-family: 'Jost', sans-serif;
}

.blog-post-card-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-post-card-title {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-on-dark);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.blog-post-card-excerpt {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(232, 226, 216, 0.75);
  margin: 0 0 1rem;
  flex: 1;
}

.blog-post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.blog-post-card-link:hover {
  color: var(--gold-light);
}

.blog-post-card-link svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: currentColor;
}

/* Blog & Makaleler – 3 kartın altında 6’lı kolon (devamı, daha ufak) */
.blog-more-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.blog-more-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: rgba(232, 226, 216, 0.04);
  border: 1px solid rgba(186, 151, 81, 0.15);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  overflow: hidden;
}

.blog-more-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1512;
  overflow: hidden;
}

.blog-more-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.blog-more-item:hover .blog-more-thumb-img {
  transform: scale(1.05);
}

.blog-more-item > .blog-more-cat,
.blog-more-item > .blog-more-title,
.blog-more-item > .blog-more-date {
  padding-left: 0.85rem;
  padding-right: 0.85rem;
}

.blog-more-item > .blog-more-cat {
  padding-top: 0.6rem;
}

.blog-more-item > .blog-more-date {
  padding-bottom: 0.75rem;
}

.blog-more-item:hover {
  background: rgba(232, 226, 216, 0.08);
  border-color: rgba(186, 151, 81, 0.3);
}

.blog-more-cat {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.blog-more-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-on-dark);
  margin-bottom: 0.3rem;
}

.blog-more-item:hover .blog-more-title {
  color: var(--gold-light);
}

.blog-more-date {
  font-size: 0.65rem;
  color: rgba(186, 151, 81, 0.75);
  font-family: 'Jost', sans-serif;
  margin-top: auto;
}

/* Tam ekran banner – Faaliyet Alanları ile Blog & Makaleler arası (parallax) */
.banner-full {
  width: 100%;
  max-width: 100%;
  height: 55vh;
  min-height: 320px;
  overflow: hidden;
  position: relative;
  line-height: 0;
  background-color: #14100D;
}

.banner-full-img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 220%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-50%);
  will-change: transform;
}

/* Tema renginde maske */
.banner-full-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 16, 13, 0.75) 0%, rgba(20, 16, 13, 0.5) 45%, rgba(20, 16, 13, 0.35) 65%, transparent 100%);
  pointer-events: none;
}

/* Container içinde metin + imza (sağ taraf) */
.banner-full-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.banner-full-content {
  max-width: 42%;
  min-width: 280px;
  text-align: right;
  padding: 1.75rem 2rem;
  background: rgba(16, 16, 16, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(186, 151, 81, 0.25);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
}

.banner-full-title {
  margin: 0 0 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--gold-light);
}

.banner-full-text {
  margin: 0 0 1rem;
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-style: normal;
  line-height: 1.6;
  color: var(--text-on-dark);
}

.banner-full-signature {
  height: 40px;
  width: auto;
  max-width: 114px;
  object-fit: contain;
  display: block;
  margin-left: auto;
}

/* Banner (kartlar bölümü sonrası) – tam görünür, sayfa aşağı kayar */
.banner-section {
  position: relative;
  width: 100%;
  background-color: #14100D;
}

.banner-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Container overlay – yukarıdaki düzen gibi container içinde */
.banner-section-inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
  pointer-events: none;
}

.banner-section-inner .blog-glass {
  pointer-events: auto;
}

/* Blog glass panel – tam alan, scroll yok, sağa geniş, 4 kolon */
.blog-glass {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: min(720px, 72%);
  min-width: 360px;
  padding: 1.25rem 1.25rem;
  background: rgba(16, 16, 16, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(186, 151, 81, 0.25);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.blog-glass-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(186, 151, 81, 0.2);
}

.blog-glass-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--text-on-dark);
  margin: 0;
}

.blog-glass-title-icon {
  flex-shrink: 0;
  width: 1.25em;
  height: 1.25em;
  color: var(--gold);
  stroke: currentColor;
}

.blog-glass-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.blog-glass-link:hover {
  color: var(--gold-light);
}

.blog-glass-link svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
}

.blog-glass-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-glass-list li {
  margin-bottom: 0.5rem;
}

.blog-glass-list li:last-child {
  margin-bottom: 0;
}

.blog-glass-item {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  color: rgba(232, 226, 216, 0.92);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(186, 151, 81, 0.1);
  transition: color 0.2s, border-color 0.2s;
}

.blog-glass-item:hover {
  color: var(--gold-light);
  border-bottom-color: rgba(186, 151, 81, 0.25);
}

.blog-glass-item-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.blog-glass-item-title {
  display: block;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog glass içi – 4'lü küçük kartlar, tam alan */
.blog-glass-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.blog-glass-card {
  background: rgba(232, 226, 216, 0.03);
  border-radius: 10px;
  padding: 0.5rem 0.45rem;
  border: 1px solid rgba(186, 151, 81, 0.15);
}

.blog-glass-card-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: rgba(232, 226, 216, 0.02);
  border: 1px dashed rgba(186, 151, 81, 0.35);
  margin-bottom: 0.35rem;
}

.blog-glass-card-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.28;
  color: var(--text-on-dark);
  margin: 0 0 0.2rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.blog-glass-card-excerpt {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  line-height: 1.28;
  color: rgba(232, 226, 216, 0.75);
  margin: 0;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

@media (max-width: 992px) {
  .blog-glass-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-glass-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .blog-glass {
    width: min(560px, 62%);
    right: 1rem;
    padding: 1.25rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .banner-section-inner {
    position: relative;
    height: auto;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .blog-glass {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: none;
    min-width: 0;
    max-height: none;
    margin-top: 1rem;
    border-radius: 16px;
  }
}

/* Blog & Makaleler – manşet alanı (eski tam genişlik bölüm) */
.blog-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.blog-section-bg {
  position: absolute;
  inset: 0;
  background: #0f1419 url('../img/blog-makaleler-bg.webp') no-repeat center center;
  background-size: cover;
}

.blog-section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 16, 13, 0.92) 0%, rgba(15, 20, 25, 0.88) 100%);
  pointer-events: none;
}

.blog-section-inner {
  position: relative;
  z-index: 1;
}

.blog-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.blog-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 400;
  color: var(--text-on-dark);
  margin: 0;
}

.blog-section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.blog-section-link:hover {
  color: var(--gold-light);
}

.blog-section-link svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
}

.blog-manşet {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.blog-card-featured {
  grid-row: span 2;
}

.blog-card {
  background: rgba(232, 226, 216, 0.05);
  border: 1px solid rgba(186, 151, 81, 0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.blog-card:hover {
  background: rgba(232, 226, 216, 0.08);
  border-color: rgba(186, 151, 81, 0.35);
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.blog-card-featured .blog-card-link {
  padding: 2rem;
  justify-content: flex-end;
}

.blog-card-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--text-on-dark);
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-featured .blog-card-title {
  font-size: 1.2rem;
  -webkit-line-clamp: 4;
}

.blog-card-excerpt {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(232, 226, 216, 0.75);
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-featured .blog-card-excerpt {
  font-size: 0.9rem;
  -webkit-line-clamp: 3;
}

.blog-card-more {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-top: auto;
}

.blog-card-link:hover .blog-card-more {
  color: var(--gold-light);
}


/* ========== Blog detay sayfası ========== */
.page-blog-detail {
  padding-top: calc(var(--top-header-height) + var(--header-height));
}

.blog-detail-main {
  background-color: #14100D;
  min-height: 60vh;
  padding: 2rem 0 4rem;
}

/* Anasayfadaki .container ile aynı ölçü (max-width: 1200px) – ek kısıtlama yok */
.blog-detail-container {
  /* container sınıfı zaten 1200px veriyor */
}

.blog-detail-breadcrumb {
  margin-bottom: 1.5rem;
}

.blog-detail-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: rgba(232, 226, 216, 0.7);
}

.blog-detail-breadcrumb-list li:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  color: var(--gold);
  font-weight: 600;
}

.blog-detail-breadcrumb-list a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-detail-breadcrumb-list a:hover {
  color: var(--gold-light);
}

.blog-detail-breadcrumb-list li[aria-current="page"] {
  color: var(--text-on-dark);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-detail-article {
  background: rgba(232, 226, 216, 0.03);
  border: 1px solid rgba(186, 151, 81, 0.18);
  border-radius: 16px;
  overflow: hidden;
}

.blog-detail-header {
  padding: 2rem 2rem 0;
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.blog-detail-meta-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-detail-views {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(232, 226, 216, 0.7);
  font-size: 0.85rem;
}

.blog-detail-views svg,
.blog-detail-views [data-lucide] {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  flex-shrink: 0;
}

.blog-detail-date {
  color: rgba(232, 226, 216, 0.7);
}

.blog-detail-cat {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: rgba(186, 151, 81, 0.15);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
}

.blog-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-on-dark);
  margin: 0 0 0.75rem;
}

.blog-detail-lead {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(232, 226, 216, 0.85);
  margin: 0;
}

.blog-detail-figure {
  margin: 1.5rem 0 0;
  padding: 0;
}

.blog-detail-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: #1a1512;
}

.blog-detail-content {
  padding: 2rem 2rem 1.5rem;
  font-family: 'Jost', sans-serif;
}

.blog-detail-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(232, 226, 216, 0.9);
  margin: 0 0 1.25rem;
}

.blog-detail-content p:last-of-type {
  margin-bottom: 0;
}

.blog-detail-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin: 2rem 0 0.75rem;
  padding-top: 0.5rem;
}

.blog-detail-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
}

.blog-detail-content strong {
  font-weight: 600;
  color: var(--text-on-dark);
}

.blog-detail-tags {
  padding: 1.75rem 2rem 1.5rem;
  border-top: 1px solid rgba(186, 151, 81, 0.2);
  margin-top: 1.5rem;
}

.blog-detail-tags-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.blog-detail-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-detail-tags-list a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  color: rgba(232, 226, 216, 0.9);
  background: rgba(186, 151, 81, 0.12);
  border: 1px solid rgba(186, 151, 81, 0.25);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.blog-detail-tags-list a:hover {
  background: rgba(186, 151, 81, 0.2);
  border-color: rgba(186, 151, 81, 0.4);
  color: var(--text-on-dark);
}

.blog-detail-footer {
  padding: 0 2rem 2rem;
}

.blog-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-detail-back .btn-icon {
  width: 1.1em;
  height: 1.1em;
  stroke: currentColor;
}


/* ========== İletişim sayfası ========== */
.page-iletisim {
  padding-top: calc(var(--top-header-height) + var(--header-height));
}

.iletisim-main {
  background-color: #14100D;
  min-height: 60vh;
  padding: 2rem 0 4rem;
}

.iletisim-breadcrumb {
  margin-bottom: 1.5rem;
  text-align: center;
}

.iletisim-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: rgba(232, 226, 216, 0.7);
}

.iletisim-breadcrumb-list li:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  color: var(--gold);
  font-weight: 600;
}

.iletisim-breadcrumb-list a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.iletisim-breadcrumb-list a:hover {
  color: var(--gold-light);
}

.iletisim-breadcrumb-list li[aria-current="page"] {
  color: var(--text-on-dark);
}

.iletisim-content {
  max-width: 720px;
  margin: 0 auto;
}

.iletisim-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  color: var(--text-on-dark);
  margin: 0 0 0.25rem;
}

.iletisim-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem;
}

.iletisim-info-box {
  background: rgba(232, 226, 216, 0.03);
  border: 1px solid rgba(186, 151, 81, 0.18);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}

.iletisim-info-heading {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.iletisim-info-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(232, 226, 216, 0.9);
  margin: 0 0 0.75rem;
}

.iletisim-info-text:last-child {
  margin-bottom: 0;
}

.iletisim-info-text strong {
  color: var(--text-on-dark);
  font-weight: 600;
}

.iletisim-email-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.iletisim-email-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.iletisim-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-bottom: 2rem;
}

.iletisim-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.iletisim-detail-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
  stroke: currentColor;
}

.iletisim-detail-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(232, 226, 216, 0.7);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.iletisim-detail-value {
  font-size: 1rem;
  color: var(--text-on-dark);
  font-style: normal;
  line-height: 1.5;
  margin: 0;
}

.iletisim-detail-item a.iletisim-detail-value {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.iletisim-detail-item a.iletisim-detail-value:hover {
  color: var(--gold-light);
}

.iletisim-form {
  background: rgba(232, 226, 216, 0.03);
  border: 1px solid rgba(186, 151, 81, 0.18);
  border-radius: 12px;
  padding: 1.75rem;
}

.iletisim-form-row {
  margin-bottom: 1.25rem;
}

.iletisim-form-row:last-of-type {
  margin-bottom: 1.5rem;
}

.iletisim-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-on-dark);
  margin-bottom: 0.4rem;
}

.iletisim-form-optional {
  font-weight: 400;
  color: rgba(232, 226, 216, 0.6);
  font-size: 0.85rem;
}

.iletisim-form-input,
.iletisim-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: var(--text-on-dark);
  background: rgba(20, 16, 13, 0.6);
  border: 1px solid rgba(186, 151, 81, 0.25);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.iletisim-form-input::placeholder,
.iletisim-form-textarea::placeholder {
  color: rgba(232, 226, 216, 0.45);
}

.iletisim-form-input:focus,
.iletisim-form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(186, 151, 81, 0.2);
}

.iletisim-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.iletisim-form-actions {
  margin-top: 0.5rem;
}

.iletisim-form-submit .btn-icon {
  width: 1.1em;
  height: 1.1em;
  stroke: currentColor;
}


/* ========== Hakkımızda sayfası ========== */
.page-hakkimizda {
  padding-top: calc(var(--top-header-height) + var(--header-height));
}

.hakkimizda-main {
  background-color: #14100D;
  min-height: 60vh;
  padding: 2rem 0 4rem;
}

.hakkimizda-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hakkimizda-breadcrumb {
  margin-bottom: 1.5rem;
  text-align: center;
}

.hakkimizda-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: rgba(232, 226, 216, 0.7);
}

.hakkimizda-breadcrumb-list li:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  color: var(--gold);
  font-weight: 600;
}

.hakkimizda-breadcrumb-list a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.hakkimizda-breadcrumb-list a:hover {
  color: var(--gold-light);
}

.hakkimizda-breadcrumb-list li[aria-current="page"] {
  color: var(--text-on-dark);
}

.hakkimizda-content {
  max-width: 720px;
  margin: 0 auto;
}

.hakkimizda-hero {
  width: 100%;
  margin-bottom: 1.75rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(186, 151, 81, 0.18);
}

.hakkimizda-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hakkimizda-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  color: var(--text-on-dark);
  margin: 0 0 0.25rem;
}

.hakkimizda-heading {
  font-family: 'Jost', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem;
}

.hakkimizda-section {
  background: rgba(232, 226, 216, 0.03);
  border: 1px solid rgba(186, 151, 81, 0.18);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}

.hakkimizda-section--highlight {
  border-color: rgba(186, 151, 81, 0.35);
  background: rgba(186, 151, 81, 0.06);
  position: relative;
  padding-top: 3rem;
}

.hakkimizda-award-badge {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold) 0%, var(--gold-light) 50%, #9a7d3a 100%);
  box-shadow: 0 4px 16px rgba(186, 151, 81, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(186, 151, 81, 0.6);
}

.hakkimizda-award-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: #0d0d0d;
  stroke-width: 2.25;
  flex-shrink: 0;
}

.hakkimizda-section-title {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.hakkimizda-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(232, 226, 216, 0.9);
  margin: 0 0 0.75rem;
}

.hakkimizda-text:last-child {
  margin-bottom: 0;
}

.hakkimizda-text strong {
  color: var(--text-on-dark);
  font-weight: 600;
}

/* TinyMCE / HTML detay içerik (faaliyet.php vb.): paragraf, başlık, liste, vurgu */
.hakkimizda-text--rich {
  margin-bottom: 0;
}

.hakkimizda-text--rich > *:first-child {
  margin-top: 0;
}

.hakkimizda-text--rich p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(232, 226, 216, 0.9);
  margin: 0 0 1rem;
}

.hakkimizda-text--rich p:last-child {
  margin-bottom: 0;
}

.hakkimizda-text--rich h2,
.hakkimizda-text--rich h3,
.hakkimizda-text--rich h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--text-on-dark);
  line-height: 1.35;
  margin: 1.5rem 0 0.65rem;
}

.hakkimizda-text--rich h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
}

.hakkimizda-text--rich h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
}

.hakkimizda-text--rich h4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.hakkimizda-text--rich h2:first-child,
.hakkimizda-text--rich h3:first-child,
.hakkimizda-text--rich h4:first-child {
  margin-top: 0;
}

.hakkimizda-text--rich ul,
.hakkimizda-text--rich ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(232, 226, 216, 0.9);
}

.hakkimizda-text--rich li {
  margin-bottom: 0.4rem;
}

.hakkimizda-text--rich li:last-child {
  margin-bottom: 0;
}

.hakkimizda-text--rich ul {
  list-style: disc;
}

.hakkimizda-text--rich ol {
  list-style: decimal;
}

.hakkimizda-text--rich strong,
.hakkimizda-text--rich b {
  color: var(--text-on-dark);
  font-weight: 600;
}

.hakkimizda-text--rich em,
.hakkimizda-text--rich i {
  font-style: italic;
}

.hakkimizda-text--rich u {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.hakkimizda-text--rich a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.2s;
}

.hakkimizda-text--rich a:hover {
  color: var(--gold-light);
}

.hakkimizda-text--rich blockquote {
  margin: 1rem 0;
  padding: 0.75rem 0 0.75rem 1rem;
  border-left: 3px solid rgba(186, 151, 81, 0.55);
  color: rgba(232, 226, 216, 0.85);
  font-style: italic;
}

.hakkimizda-text--rich hr {
  border: none;
  border-top: 1px solid rgba(186, 151, 81, 0.25);
  margin: 1.25rem 0;
}

.hakkimizda-text--rich img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 0.75rem 0;
}

.hakkimizda-text--rich pre,
.hakkimizda-text--rich code {
  font-family: ui-monospace, 'Cascadia Code', 'Segoe UI Mono', monospace;
  font-size: 0.88em;
}

.hakkimizda-text--rich pre {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  overflow-x: auto;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  border: 1px solid rgba(186, 151, 81, 0.15);
}

.hakkimizda-list {
  margin: 0 0 0 1.25rem;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(232, 226, 216, 0.9);
}

.hakkimizda-list li {
  margin-bottom: 0.5rem;
}

.hakkimizda-value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(232, 226, 216, 0.9);
}

.hakkimizda-value-list li {
  margin-bottom: 1rem;
  padding-left: 0;
}

.hakkimizda-value-list li:last-child {
  margin-bottom: 0;
}

.hakkimizda-value-list strong {
  color: var(--gold);
  font-weight: 600;
  display: inline;
}

.hakkimizda-cta {
  margin-top: 2rem;
  text-align: center;
}

.nav-link-active {
  color: var(--gold-light) !important;
  font-weight: 600;
}

/* ========== Blog & Makaleler sayfası ========== */
.blog-makaleler-main {
  background-color: #14100D;
  min-height: 60vh;
  padding: 2rem 0 4rem;
  padding-top: calc(var(--top-header-height) + var(--header-height) + 2rem);
}

.blog-makaleler-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.blog-makaleler-breadcrumb {
  margin-bottom: 1.5rem;
  text-align: center;
}

.blog-makaleler-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  font-family: 'Jost', sans-serif;
}

.blog-makaleler-breadcrumb-list li:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  color: var(--gold);
}

.blog-makaleler-breadcrumb-list a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-makaleler-breadcrumb-list a:hover {
  color: var(--gold-light);
}

.blog-makaleler-breadcrumb-list li[aria-current="page"] {
  color: var(--text-on-dark);
}

.blog-makaleler-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 400;
  color: var(--text-on-dark);
  text-align: center;
  margin: 0 0 0.5rem;
}

.blog-makaleler-title-icon {
  flex-shrink: 0;
  width: 1.25em;
  height: 1.25em;
  color: var(--gold);
  stroke: currentColor;
}

.blog-makaleler-desc {
  text-align: center;
  color: rgba(232, 226, 216, 0.8);
  font-size: 1rem;
  margin: 0 0 2.5rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.blog-makaleler-section {
  margin-bottom: 2.5rem;
}

.blog-makaleler-more-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--text-on-dark);
  margin: 0 0 1.25rem;
  text-align: center;
}

.blog-makaleler-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== Videolar sayfası ========== */
.videolar-main {
  background-color: #14100D;
  min-height: 60vh;
  padding: 2rem 0 4rem;
  padding-top: calc(var(--top-header-height) + var(--header-height) + 2rem);
}

.videolar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.videolar-breadcrumb {
  margin-bottom: 1.5rem;
  text-align: center;
}

.videolar-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  font-family: 'Jost', sans-serif;
}

.videolar-breadcrumb-list li:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  color: var(--gold);
}

.videolar-breadcrumb-list a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.videolar-breadcrumb-list a:hover {
  color: var(--gold-light);
}

.videolar-breadcrumb-list li[aria-current="page"] {
  color: var(--text-on-dark);
}

.videolar-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.videolar-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-on-dark);
  text-align: center;
  margin: 0 0 0.5rem;
}

.videolar-title-icon {
  flex-shrink: 0;
  width: 1.25em;
  height: 1.25em;
  color: var(--gold);
  stroke: currentColor;
}

.videolar-desc {
  text-align: center;
  color: rgba(232, 226, 216, 0.9);
  font-size: 1rem;
  margin: 0 auto;
  max-width: 42ch;
  line-height: 1.5;
}

/* YouTube tarzı kanal üst bilgisi */
.videolar-channel-header {
  background: rgba(24, 24, 24, 0.95);
  border: 1px solid rgba(186, 151, 81, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.videolar-channel-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.videolar-channel-avatar-link {
  flex-shrink: 0;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(186, 151, 81, 0.35);
  transition: border-color 0.2s, transform 0.2s;
}

.videolar-channel-avatar-link:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}

.videolar-channel-avatar {
  display: block;
  width: 128px;
  height: 128px;
  object-fit: cover;
  background: #1a1512;
}

.videolar-channel-info {
  flex: 1;
  min-width: 0;
}

.videolar-channel-name {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--text-on-dark);
  margin: 0 0 0.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.videolar-channel-handle-stats {
  font-size: 0.9rem;
  color: rgba(232, 226, 216, 0.7);
  margin: 0 0 0.6rem;
}

.videolar-channel-handle {
  color: rgba(232, 226, 216, 0.85);
}

.videolar-channel-sep {
  color: rgba(232, 226, 216, 0.5);
}

.videolar-channel-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(232, 226, 216, 0.75);
  margin: 0 0 0.5rem;
  max-width: 55ch;
}

.videolar-channel-desc-more {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.videolar-channel-desc-more:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.videolar-channel-links {
  font-size: 0.85rem;
  margin: 0 0 1rem;
}

.videolar-channel-link {
  color: #6ba3e8;
  text-decoration: none;
}

.videolar-channel-link:hover {
  text-decoration: underline;
}

.videolar-channel-links-more {
  color: rgba(232, 226, 216, 0.6);
}

.videolar-channel-subscribe {
  display: inline-block;
  background: #fff;
  color: #0f0f0f;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.videolar-channel-subscribe:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #0f0f0f;
  transform: scale(1.03);
}

.videolar-section-desc {
  text-align: center;
  color: rgba(232, 226, 216, 0.75);
  font-size: 0.95rem;
  margin: -0.5rem auto 1.5rem;
  max-width: 50ch;
}

.videolar-section {
  margin-bottom: 2.5rem;
}

.videolar-section--channel {
  margin-bottom: 3rem;
}

.videolar-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--text-on-dark);
  margin: 0 0 1.25rem;
  text-align: center;
}

.videolar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.videolar-card {
  background: rgba(232, 226, 216, 0.04);
  border: 1px solid rgba(186, 151, 81, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.videolar-card:hover {
  border-color: rgba(186, 151, 81, 0.35);
  background: rgba(232, 226, 216, 0.06);
}

.videolar-card-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-on-dark);
  margin: 0;
  padding: 0.85rem 1rem;
  text-align: center;
}

/* YouTube embed: 16:9 responsive */
.videolar-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #1a1512;
}

.videolar-embed-wrap--large {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.videolar-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.videolar-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* ========== Responsive ========== */

/* Tablet: hamburger menü ile üst üste binmeyi önle */
@media (max-width: 992px) {
  .header {
    min-height: 88px;
    padding: 0.75rem 0;
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  .logo {
    height: 56px;
  }

  .hamburger-btn {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85%;
    height: 100vh;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.25rem 1.25rem 1.5rem;
    background: rgba(16, 16, 16, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-left: 1px solid rgba(186, 151, 81, 0.2);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    overflow-y: auto;
  }

  .nav-wrapper-logo {
    display: block;
    text-align: left;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
  }

  .nav-wrapper-logo-img {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }

  .nav-wrapper-signature {
    display: block;
    text-align: center;
    margin-top: 1.25rem;
    flex-shrink: 0;
  }

  .nav-wrapper-signature-img {
    height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: inline-block;
  }

  body.menu-open .nav-wrapper {
    transform: translateX(0);
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav {
    position: static;
    left: auto;
    transform: none;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 0;
    margin-right: 0;
    padding: 0;
    border: none;
    overflow: visible;
  }

  .nav > a,
  .nav > .nav-dropdown {
    width: 100%;
    border-bottom: 1px solid rgba(186, 151, 81, 0.12);
  }

  .nav > a {
    display: flex;
    padding: 0.85rem 0;
    font-size: 0.9rem;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0;
    font-size: 0.9rem;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    transform: none;
    min-width: 0;
    margin: 0;
    padding: 0 0 0.5rem 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  }

  .nav-dropdown-menu--wide {
    display: block;
    grid-template-columns: none;
    min-width: 0;
    max-width: none;
    max-width: min(100%, calc(100vw - 2rem));
  }

  .nav-dropdown-menu--wide a span {
    min-width: 0;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    padding-left: 1rem;
  }

  .nav-dropdown-group + .nav-dropdown-group {
    margin-top: 0.5rem;
  }

  .nav-dropdown-menu a {
    padding: 0.5rem 0;
    font-size: 0.85rem;
  }

  .nav-wrapper .btn-cta {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .btn-cta {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .top-header-link {
    font-size: 0.75rem;
  }

  .top-social-link svg {
    width: 1rem;
    height: 1rem;
  }

  .cards-section {
    padding: 3rem 0;
  }

  .news-section {
    padding: 3rem 0;
  }

  .news-grid,
  .blog-post-grid,
  .videolar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-more-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-manşet {
    grid-template-columns: 1fr;
  }

  .blog-card-featured {
    grid-row: span 1;
  }

  .blog-section {
    padding: 3rem 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .blog-detail-header,
  .blog-detail-content,
  .blog-detail-tags,
  .blog-detail-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .blog-detail-main {
    padding: 1.5rem 0 3rem;
  }

  .iletisim-main {
    padding: 1.5rem 0 3rem;
  }

  .iletisim-info-box,
  .iletisim-form {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .iletisim-details {
    flex-direction: column;
    gap: 1rem;
  }

  .top-header {
    min-height: 36px;
  }

  .top-header-inner {
    min-height: 36px;
  }

  .top-header-contact {
    gap: 0.85rem;
  }

  .top-header-link {
    font-size: 0.7rem;
  }

  .top-header-link svg {
    width: 1rem;
    height: 1rem;
  }

  .top-social-link svg {
    width: 0.95rem;
    height: 0.95rem;
  }

  .hero {
    padding: 1.5rem 0;
    padding-top: calc(36px + 80px + 1.5rem);
  }

  .hero-card {
    padding: 1.75rem 1.5rem;
    border-radius: 32px;
  }

  .hero-card-title {
    font-size: 1.5rem;
  }

  .hero-card-desc {
    font-size: 0.9rem;
  }

  .header {
    min-height: 80px;
    padding: 0.625rem 0;
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  .logo {
    height: 48px;
  }

  .hamburger-btn {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85%;
    height: 100vh;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.25rem 1.25rem 1.5rem;
    background: rgba(16, 16, 16, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-left: 1px solid rgba(186, 151, 81, 0.2);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    overflow-y: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .nav-wrapper {
    transform: translateX(0);
  }

  .nav {
    position: static;
    transform: none;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 0;
    margin-right: 0;
    padding: 0;
    border: none;
    overflow: visible;
  }

  .nav > a,
  .nav > .nav-dropdown {
    width: 100%;
    border-bottom: 1px solid rgba(186, 151, 81, 0.12);
  }

  .nav > a {
    display: flex;
    padding: 0.85rem 0;
    font-size: 0.9rem;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0;
    font-size: 0.9rem;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    transform: none;
    min-width: 0;
    margin: 0;
    padding: 0 0 0.5rem 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  }

  .nav-dropdown-menu--wide {
    display: block;
    grid-template-columns: none;
    min-width: 0;
    max-width: none;
    max-width: min(100%, calc(100vw - 2rem));
  }

  .nav-dropdown-menu--wide a span {
    min-width: 0;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    padding-left: 1rem;
  }

  .nav-dropdown-group + .nav-dropdown-group {
    margin-top: 0.5rem;
  }

  .nav-dropdown-menu a {
    padding: 0.5rem 0;
    font-size: 0.85rem;
  }

  .nav-wrapper .btn-cta {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .btn-cta {
    padding: 0.45rem 0.85rem;
    font-size: 0.7rem;
  }

  .cards-section {
    padding: 2.5rem 0;
  }

  .news-section {
    padding: 2.5rem 0;
  }

  .news-grid,
  .blog-post-grid,
  .videolar-grid {
    grid-template-columns: 1fr;
  }

  .videolar-channel-header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .videolar-channel-info {
    text-align: center;
  }

  .videolar-channel-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .videolar-channel-header {
    padding: 1.5rem 1rem;
  }

  .videolar-channel-avatar {
    width: 100px;
    height: 100px;
  }

  .blog-more-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.5rem;
  }

  .haberler-grid {
    grid-template-columns: 1fr;
  }

  .hesaplama-kartlari-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .banner-full-content {
    max-width: 75%;
    min-width: 240px;
  }

  .banner-full-title {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  }

  .banner-full-text {
    font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  }

  .cards-carousel .swiper-slide {
    width: 260px;
  }

  .cards-carousel-prev,
  .cards-carousel-next {
    width: 2.25rem;
    height: 2.25rem;
    margin-top: -1.125rem;
  }

  .cards-carousel-prev {
    left: 0.25rem;
  }

  .cards-carousel-next {
    right: 0.25rem;
  }

  .cards-carousel-pagination .swiper-pagination-bullet {
    width: 1.25rem;
    height: 0.2rem;
  }

  .cards-carousel-pagination .swiper-pagination-bullet-active {
    width: 1.5rem;
  }

  .card {
    padding: 1.25rem;
  }

  .card-title {
    font-size: 0.95rem;
  }

  .blog-section {
    padding: 2.5rem 0;
  }

  .blog-section-header {
    margin-bottom: 1.5rem;
  }

  .blog-card-link {
    padding: 1.25rem;
  }

  .blog-card-featured .blog-card-link {
    padding: 1.5rem;
  }

  .blog-card-featured .blog-card-title {
    font-size: 1.05rem;
    -webkit-line-clamp: 3;
  }

  .site-footer {
    margin-top: 0;
    padding-top: 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-links .footer-nav,
  .footer-contact {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-contact-link {
    justify-content: center;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .top-header,
  .top-header-inner {
    min-height: 32px;
  }

  .top-social-link svg {
    width: 0.85rem;
    height: 0.85rem;
  }

  .hero {
    padding: 1rem 0;
    padding-top: calc(32px + 72px + 1rem);
  }

  .hero-card {
    padding: 1.25rem 1.25rem;
    border-radius: 28px;
  }

  .hero-card-slogan {
    font-size: 0.7rem;
  }

  .hero-card-title {
    font-size: 1.35rem;
  }

  .hero-card-desc {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .cards-section {
    padding: 2rem 0;
  }

  .news-section {
    padding: 2rem 0;
  }

  .banner-full-img {
    object-position: left center;
  }

  .banner-full-mask {
    background: linear-gradient(to right, rgba(20, 16, 13, 0.7) 0%, rgba(20, 16, 13, 0.5) 50%, rgba(20, 16, 13, 0.45) 100%);
  }

  .banner-full-content {
    max-width: 100%;
    min-width: 0;
  }

  .banner-full-title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  .banner-full-text {
    font-size: 0.9rem;
  }

  .banner-full-signature {
    height: 36px;
  }

  .blog-more-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.25rem;
    gap: 0.75rem;
  }

  .haberler-grid {
    gap: 0.75rem;
  }

  .hesaplama-kartlari-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .hesaplama-karti {
    padding: 1rem 0.75rem;
  }

  .hesaplama-karti-title {
    font-size: 0.8rem;
  }

  .blog-more-item {
    padding: 0.75rem 0.9rem;
  }

  .news-card {
    padding: 1.25rem;
  }

  .blog-post-card-body {
    padding: 1rem 1.25rem;
  }

  .card {
    padding: 1rem;
  }

  .card-title {
    font-size: 0.9rem;
  }

  .header {
    min-height: 72px;
    padding: 0.5rem 0;
  }

  .logo {
    height: 40px;
  }

  .nav {
    gap: 0.6rem;
    flex-wrap: nowrap;
  }

  .nav a {
    font-size: 0.65rem;
  }

  .nav-dropdown-trigger {
    font-size: 0.65rem;
  }

  .btn-cta {
    padding: 0.4rem 0.7rem;
    font-size: 0.65rem;
  }

}

/* Kitap popup – sadece anasayfada, oval kenar, temaya uyumlu */
.book-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(16, 16, 16, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.book-popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.book-popup-wrap {
  position: relative;
  max-width: min(380px, 90vw);
  border-radius: 1rem;
  padding: 0.5rem;
  background: linear-gradient(145deg, rgba(186, 151, 81, 0.18), rgba(186, 151, 81, 0.06));
  border: 1px solid rgba(186, 151, 81, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(186, 151, 81, 0.1);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.book-popup-overlay.is-visible .book-popup-wrap {
  transform: scale(1);
}

.book-popup-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(16, 16, 16, 0.95);
  color: var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  transition: color 0.2s, background 0.2s, transform 0.2s;
}

.book-popup-close:hover {
  color: var(--gold-light);
  background: rgba(26, 22, 18, 0.98);
  transform: scale(1.05);
}

.book-popup-close svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
}

.book-popup-inner {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #0f0d0a;
}

.book-popup-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
}

@media (max-width: 480px) {
  .book-popup-wrap {
    max-width: 85vw;
    border-radius: 0.875rem;
  }
  .book-popup-inner {
    border-radius: 0.625rem;
  }
}
