/* =========================
   GENEL AYARLAR
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --etp-yellow: #d4af37;
  --etp-yellow-light: #f3df95;
  --etp-yellow-soft: #fff6da;
  --etp-black: #111111;
  --etp-dark: #1d1d1d;
  --etp-text: #333333;
  --etp-white: #ffffff;
  --etp-border: #e7d9a3;
  --etp-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--etp-white);
  color: var(--etp-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-heading {
  margin-bottom: 45px;
}

.section-heading.center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--etp-yellow);
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: var(--etp-black);
  margin-bottom: 15px;
}

.section-heading p {
  max-width: 760px;
  font-size: 16px;
  color: #5d5d5d;
}

.section-heading.center p {
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   TOPBAR
========================= */
.topbar {
  background: var(--etp-yellow);
  color: var(--etp-white);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.topbar-track {
  display: inline-flex;
  gap: 60px;
  min-width: max-content;
  padding-left: 100%;
  animation: marquee 24s linear infinite;
}

.topbar-track span {
  position: relative;
}

.topbar-track span::after {
  content: "•";
  margin-left: 60px;
  opacity: 0.8;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.navbar {
  min-height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.nav-left {
  justify-content: flex-end;
  padding-right: 95px;
}

.nav-right {
  justify-content: flex-start;
  padding-left: 95px;
}

.nav-list a {
  font-size: 15px;
  font-weight: 700;
  color: var(--etp-black);
  transition: var(--transition);
  position: relative;
}

.nav-list a:hover {
  color: var(--etp-yellow);
}

.nav-list a:not(.btn-nav)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--etp-yellow);
  transition: var(--transition);
}

.nav-list a:not(.btn-nav):hover::after {
  width: 100%;
}

.nav-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.btn-nav {
  background: var(--etp-yellow);
  color: var(--etp-white) !important;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: var(--etp-shadow);
}

.btn-nav:hover {
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.mobile-menu-btn span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 0 auto;
  background: var(--etp-black);
  border-radius: 10px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 0 20px;
}

.mobile-menu a {
  padding: 12px 14px;
  border: 1px solid #ececec;
  border-radius: 14px;
  font-weight: 600;
}

.mobile-menu .btn-mobile {
  background: var(--etp-yellow);
  color: var(--etp-white);
  border-color: var(--etp-yellow);
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-primary {
  background: var(--etp-yellow);
  color: var(--etp-white);
  box-shadow: var(--etp-shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid var(--etp-yellow);
  color: var(--etp-yellow);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--etp-yellow);
  color: var(--etp-white);
}

.full {
  width: 100%;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  padding: 110px 0 85px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 30%),
    linear-gradient(135deg, #fffdf6 0%, #fff7dd 100%);
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: #8b6b07;
  border: 1px solid rgba(212, 175, 55, 0.22);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-content h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.1;
  color: var(--etp-black);
  margin-bottom: 22px;
  font-weight: 800;
}

.hero-content p {
  font-size: 17px;
  color: #505050;
  max-width: 680px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.hero-card-inner {
  width: 100%;
  max-width: 390px;
  background: var(--etp-white);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--etp-shadow);
  position: relative;
  overflow: hidden;
}

.hero-card-inner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--etp-yellow-light), var(--etp-yellow));
}

.hero-card-top {
  font-size: 13px;
  font-weight: 800;
  color: var(--etp-yellow);
  margin-bottom: 12px;
}

.hero-card-inner h3 {
  font-size: 26px;
  line-height: 1.3;
  color: var(--etp-black);
  margin-bottom: 18px;
}

.hero-card-inner ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card-inner li {
  padding-left: 22px;
  position: relative;
  color: #4d4d4d;
}

.hero-card-inner li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--etp-yellow);
  position: absolute;
  left: 0;
  top: 9px;
}

/* =========================
   ABOUT
========================= */
.about-section {
  background: var(--etp-white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: #fffdfa;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--etp-shadow);
}

.info-card h3 {
  font-size: 22px;
  color: var(--etp-black);
  margin-bottom: 14px;
}

.info-card p {
  color: #5a5a5a;
  font-size: 15px;
}

/* =========================
   PRINCIPLES
========================= */
.principles-section {
  background: linear-gradient(180deg, #fffdf7 0%, #fff9eb 100%);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.principle-box {
  background: var(--etp-white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.principle-box:hover {
  transform: translateY(-5px);
}

.principle-box .number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--etp-yellow-soft);
  color: var(--etp-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.principle-box h3 {
  font-size: 22px;
  color: var(--etp-black);
  margin-bottom: 12px;
}

.principle-box p {
  color: #5d5d5d;
}

/* =========================
   ARTICLES
========================= */
.articles-section {
  background: var(--etp-white);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--etp-shadow);
}

.article-category {
  display: inline-block;
  margin-bottom: 14px;
  background: var(--etp-yellow-soft);
  color: #896800;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.article-card h3 {
  font-size: 21px;
  line-height: 1.35;
  color: var(--etp-black);
  margin-bottom: 14px;
}

.article-card p {
  color: #5e5e5e;
  margin-bottom: 18px;
  font-size: 15px;
}

.article-card a {
  font-weight: 700;
  color: var(--etp-yellow);
}

/* =========================
   TEAM
========================= */
.team-section {
  background: linear-gradient(180deg, #fff9ec 0%, #ffffff 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--etp-white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.18);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--etp-shadow);
}

.team-image {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
}

.placeholder-circle {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--etp-yellow-light), var(--etp-yellow));
  color: var(--etp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.team-card h3 {
  font-size: 21px;
  color: var(--etp-black);
  margin-bottom: 12px;
}

.team-card p {
  color: #5a5a5a;
  font-size: 15px;
}

/* =========================
   CONTACT
========================= */
.contact-section {
  background: var(--etp-black);
  color: var(--etp-white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.contact-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-content p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 690px;
}

.contact-info {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.contact-item strong {
  display: block;
  color: var(--etp-yellow-light);
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.9);
}

.membership-box {
  background: var(--etp-white);
  color: var(--etp-text);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--etp-shadow);
}

.membership-mini-title {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--etp-yellow);
  margin-bottom: 12px;
}

.membership-box h3 {
  font-size: 28px;
  color: var(--etp-black);
  margin-bottom: 14px;
  line-height: 1.25;
}

.membership-box p {
  color: #5a5a5a;
  margin-bottom: 24px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #0d0d0d;
  color: var(--etp-white);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-brand h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--etp-yellow-light);
}

.footer-bottom {
  text-align: center;
  padding: 18px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .nav-left,
  .nav-right {
    padding: 0;
  }

  .nav-list {
    gap: 18px;
  }

  .nav-logo {
    width: 92px;
    height: 92px;
  }

  .hero-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-content: flex-start;
  }

  .about-grid,
  .articles-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .section {
    padding: 75px 0;
  }

  .navbar {
    min-height: 84px;
  }

  .nav-list {
    display: none;
  }

  .nav-logo {
    position: static;
    transform: none;
    width: 78px;
    height: 78px;
  }

  .navbar {
    justify-content: space-between;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }

  .about-grid,
  .principles-grid,
  .articles-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 85px 0 65px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .topbar {
    font-size: 13px;
  }

  .section-heading h2,
  .contact-content h2 {
    font-size: 28px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-card-inner,
  .membership-box,
  .info-card,
  .article-card,
  .principle-box,
  .team-card {
    padding: 24px 18px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 56px;
    height: 56px;
  }
}
/* =========================
   BLOG HERO
========================= */
.blog-hero {
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.95)),
    radial-gradient(circle at top left, rgba(212,175,55,0.15), transparent 40%);
}

/* =========================
   FEATURED POST
========================= */
.featured-post {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--etp-shadow);
  border: 1px solid rgba(212,175,55,0.2);
}

.featured-post-content {
  padding: 40px;
  background: #fffdf8;
}

.featured-post-content h2 {
  font-size: 34px;
  margin: 15px 0;
  color: var(--etp-black);
}

.featured-post-content p {
  color: #555;
  margin-bottom: 20px;
}

.featured-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.featured-meta span {
  background: var(--etp-yellow-soft);
  padding: 6px 12px;
  border-radius: 999px;
}

.featured-post-side {
  background: linear-gradient(135deg, var(--etp-yellow), #b8962f);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.featured-post-side span {
  font-size: 14px;
  letter-spacing: 2px;
}

.featured-post-side h3 {
  font-size: 32px;
  line-height: 1.2;
}

/* =========================
   CATEGORY FILTER
========================= */
.blog-categories-section {
  padding: 30px 0 10px;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-filter {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.3);
  background: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.category-filter:hover {
  background: var(--etp-yellow-soft);
}

.category-filter.active {
  background: var(--etp-yellow);
  color: white;
  border-color: var(--etp-yellow);
}

/* =========================
   BLOG CARD (UPGRADE)
========================= */
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.blog-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card-top small {
  font-size: 13px;
  color: #777;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-weight: 600;
  color: var(--etp-yellow);
}

/* hover efekti */
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(212,175,55,0.08));
  opacity: 0;
  transition: 0.3s;
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card:hover {
  transform: translateY(-6px);
}

/* =========================
   EMPTY MESSAGE
========================= */
.empty-post-message {
  display: none;
  margin-top: 30px;
  padding: 20px;
  border: 1px dashed #ddd;
  text-align: center;
  border-radius: 12px;
}

.empty-post-message.active {
  display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-post-side {
    padding: 30px;
  }

  .featured-post-content {
    padding: 30px;
  }
}
/* =========================
   POST HERO
========================= */
.post-detail-hero {
  padding: 90px 0 50px;
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.96)),
    radial-gradient(circle at top right, rgba(212,175,55,0.12), transparent 40%);
}

.back-link {
  display: inline-block;
  margin-bottom: 25px;
  font-weight: 600;
  color: var(--etp-yellow);
}

.post-detail-heading {
  max-width: 850px;
}

.post-detail-heading h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  margin: 15px 0;
  color: var(--etp-black);
}

.post-detail-meta {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.post-detail-heading p {
  font-size: 17px;
  color: #555;
}

/* =========================
   LAYOUT
========================= */
.post-detail-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 40px;
  align-items: start;
}

/* =========================
   CONTENT
========================= */
.post-detail-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--etp-shadow);
}

.post-detail-content h2 {
  margin-top: 30px;
  font-size: 26px;
  color: var(--etp-black);
}

.post-detail-content h3 {
  margin-top: 25px;
  font-size: 22px;
}

.post-detail-content p {
  margin-bottom: 18px;
  color: #444;
  line-height: 1.8;
  font-size: 16px;
}

.post-detail-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.post-detail-content li {
  margin-bottom: 10px;
}

/* =========================
   SIDEBAR
========================= */
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-box {
  background: #fffdf8;
  border: 1px solid rgba(212,175,55,0.2);
  padding: 25px;
  border-radius: 18px;
}

.sidebar-box h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.sidebar-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.sidebar-info strong {
  color: #555;
}

.sidebar-info span {
  color: #777;
}

/* sarı kutu */
.yellow-box {
  background: linear-gradient(135deg, var(--etp-yellow), #b8962f);
  color: white;
}

.yellow-box p {
  color: rgba(255,255,255,0.9);
}

.yellow-box h3 {
  color: white;
}

/* =========================
   RELATED POSTS
========================= */
.related-posts-section {
  background: linear-gradient(180deg, #fffdf7, #ffffff);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .post-detail-layout {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-box {
    flex: 1;
  }
}

@media (max-width: 600px) {
  .post-detail-content {
    padding: 25px;
  }

  .post-detail-heading h1 {
    font-size: 28px;
  }

  .post-sidebar {
    flex-direction: column;
  }
}
/* =========================
   KADROMUZ SAYFASI
========================= */

.kadro-hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 38%),
    linear-gradient(135deg, #fffdf6 0%, #fff7dd 100%);
}

/* Lider Alanı */
.leader-section {
  background: #ffffff;
}

.leader-box {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 44px;
  align-items: center;
  background:
    linear-gradient(135deg, #fffdf8 0%, #ffffff 100%);
  padding: 42px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: var(--etp-shadow);
  position: relative;
  overflow: hidden;
}

.leader-box::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -90px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 50%;
}

.leader-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  border: 4px solid var(--etp-yellow);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  background: var(--etp-yellow-soft);
  position: relative;
  z-index: 1;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-content {
  position: relative;
  z-index: 1;
}

.leader-content h2 {
  font-size: clamp(32px, 4vw, 46px);
  color: var(--etp-black);
  margin-bottom: 6px;
}

.leader-content h4 {
  font-size: 18px;
  color: var(--etp-yellow);
  margin-bottom: 18px;
}

.leader-content p {
  color: #555555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Kadro Grid */
.kadro-section {
  background: #ffffff;
}

.kadro-light-section {
  background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
}

.kadro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.kadro-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
  transition: var(--transition);
}

.kadro-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--etp-shadow);
}

.kadro-photo {
  width: 100%;
  aspect-ratio: 4 / 4.3;
  background: var(--etp-yellow-soft);
  overflow: hidden;
  position: relative;
}

.kadro-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.28));
  opacity: 0;
  transition: var(--transition);
}

.kadro-card:hover .kadro-photo::after {
  opacity: 1;
}

.kadro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.kadro-card:hover .kadro-photo img {
  transform: scale(1.06);
}

.kadro-info {
  padding: 24px 22px 26px;
  text-align: center;
}

.kadro-info span {
  display: inline-block;
  color: var(--etp-yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

.kadro-info h3 {
  color: var(--etp-black);
  font-size: 22px;
  margin-bottom: 8px;
}

.kadro-info p {
  color: #666666;
  font-size: 15px;
}

/* Eski team image yapısı bozulmasın diye */
.team-image {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--etp-yellow);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.team-card:hover .team-image img {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 1100px) {
  .leader-box {
    grid-template-columns: 300px 1fr;
  }

  .kadro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .leader-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .leader-photo {
    max-width: 340px;
    margin: 0 auto;
  }

  .leader-content {
    text-align: center;
  }

  .kadro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .leader-box {
    padding: 22px;
    border-radius: 22px;
  }

  .kadro-info {
    padding: 22px 18px;
  }

  .kadro-info h3 {
    font-size: 20px;
  }
}
/* =========================
   İL BLOK YAPISI
========================= */
.il-group {
  margin-bottom: 60px;
}

.il-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--etp-black);
  margin-bottom: 20px;
  position: relative;
  padding-left: 18px;
}

.il-title::before {
  content: "";
  width: 6px;
  height: 100%;
  background: var(--etp-yellow);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
}

/* grid */
.il-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* responsive */
@media (max-width: 900px) {
  .il-grid {
    grid-template-columns: 1fr;
  }
}
.kadro-section .section-heading {
  margin-bottom: 40px;
}
.hidden-botcheck {
  display: none !important;
}

.kvkk-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
}

.kvkk-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--etp-yellow);
  flex-shrink: 0;
}

.kvkk-checkbox span {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.kvkk-checkbox a {
  color: var(--etp-yellow);
  font-weight: 800;
}

.h-captcha {
  overflow-x: auto;
}
/* =========================
   İLETİŞİM SAYFASI - PREMIUM
========================= */

.contact-hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 38%),
    linear-gradient(135deg, #fffdf6 0%, #fff7dd 100%);
}

.contact-page-section {
  background: #ffffff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contact-info-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 24px;
  padding: 28px 24px;
  min-height: 185px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
  transition: var(--transition);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
}

.contact-info-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--etp-shadow);
}

.contact-info-card span {
  display: inline-block;
  color: var(--etp-yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.contact-info-card h3 {
  color: var(--etp-black);
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 10px;
  word-break: break-word;
}

.contact-info-card p {
  color: #666666;
  font-size: 14px;
}

/* Genel Başkanlık */
.president-contact-section {
  background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
}

.president-contact-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  background:
    linear-gradient(135deg, #fffdf8 0%, #ffffff 100%);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 30px;
  padding: 38px;
  box-shadow: var(--etp-shadow);
  position: relative;
  overflow: hidden;
}

.president-contact-box::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -80px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
}

.president-contact-content,
.president-contact-card {
  position: relative;
  z-index: 1;
}

.president-contact-content h2 {
  color: var(--etp-black);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.president-contact-content p {
  color: #5a5a5a;
  line-height: 1.8;
}

.president-contact-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
}

.president-contact-card span,
.province-contact-card span {
  display: inline-block;
  color: var(--etp-yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.president-contact-card h3 {
  font-size: 26px;
  color: var(--etp-black);
  margin-bottom: 20px;
}

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.contact-line strong {
  color: #555555;
  font-size: 14px;
}

.contact-line a {
  color: var(--etp-black);
  font-weight: 800;
  transition: var(--transition);
  word-break: break-word;
}

.contact-line a:hover {
  color: var(--etp-yellow);
}

/* İl iletişim */
.province-contact-section {
  background: #ffffff;
}

.province-contact-group {
  margin-bottom: 54px;
}

.province-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--etp-black);
  margin-bottom: 22px;
  padding-left: 18px;
  position: relative;
}

.province-title::before {
  content: "";
  width: 6px;
  height: 100%;
  background: var(--etp-yellow);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 999px;
}

.province-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.province-contact-card {
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
  transition: var(--transition);
}

.province-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--etp-shadow);
}

.province-contact-card h3 {
  color: var(--etp-black);
  font-size: 22px;
  margin-bottom: 14px;
}

.province-contact-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--etp-yellow-soft);
  color: #7a5c00;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  transition: var(--transition);
}

.province-contact-card a:hover {
  background: var(--etp-yellow);
  color: #ffffff;
}

/* Form Alanı */
.contact-form-section {
  background:
    linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.contact-form-text,
.contact-form {
  background: #fffdf8;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--etp-shadow);
}

.contact-form-text h2 {
  color: var(--etp-black);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-form-text p {
  color: #5a5a5a;
  line-height: 1.8;
}

.contact-note {
  margin-top: 24px;
  background: #ffffff;
  border-left: 5px solid var(--etp-yellow);
  border-radius: 16px;
  padding: 18px;
  color: #555555;
  line-height: 1.7;
}

.contact-note strong {
  color: var(--etp-black);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-field {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 800;
  color: var(--etp-black);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  padding: 15px 16px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  background: #ffffff;
  color: var(--etp-text);
  transition: var(--transition);
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--etp-yellow);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.13);
}

.contact-form .btn {
  grid-column: 1 / -1;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* KVKK + captcha */
.hidden-botcheck {
  display: none !important;
}

.kvkk-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 18px;
  padding: 16px;
  cursor: pointer;
}

.kvkk-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--etp-yellow);
  flex-shrink: 0;
}

.kvkk-checkbox span {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

.kvkk-checkbox a {
  color: var(--etp-yellow);
  font-weight: 800;
}

.h-captcha {
  overflow-x: auto;
}

/* Harita */
.contact-map-section {
  background: #ffffff;
}

.map-placeholder {
  min-height: 360px;
  border-radius: 28px;
  border: 1px dashed rgba(212, 175, 55, 0.55);
  background:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.88)),
    repeating-linear-gradient(
      45deg,
      #fff7dd,
      #fff7dd 12px,
      #fffdf8 12px,
      #fffdf8 24px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #6b6b6b;
  box-shadow: var(--etp-shadow);
}

.map-placeholder strong {
  display: block;
  font-size: 26px;
  color: var(--etp-black);
  margin-bottom: 8px;
}

.map-placeholder span {
  display: block;
  color: #666666;
}

/* Responsive */
@media (max-width: 1100px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .president-contact-box,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .province-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .contact-info-grid,
  .province-contact-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form-text,
  .contact-form,
  .president-contact-box,
  .president-contact-card,
  .contact-info-card,
  .province-contact-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .map-placeholder {
    min-height: 260px;
  }
}
/* =========================
   THANKS PAGE
========================= */

.thanks-section {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  padding: 90px 0;
  background:
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.95)),
    radial-gradient(circle at top right, rgba(212,175,55,0.15), transparent 40%);
}

.thanks-box {
  width: min(600px, 100%);
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 28px;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--etp-shadow);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--etp-yellow);
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-box h1 {
  font-size: 34px;
  margin: 15px 0;
  color: var(--etp-black);
}

.thanks-box p {
  color: #555;
  margin: 0 auto 30px;
  max-width: 480px;
}

.thanks-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
/* =========================
   KVKK SAYFASI
========================= */

.kvkk-section {
  background: #ffffff;
}

.kvkk-box {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--etp-shadow);
}

.kvkk-box h1 {
  font-size: 34px;
  margin-bottom: 20px;
  color: var(--etp-black);
}

.kvkk-box h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--etp-black);
}

.kvkk-box p {
  color: #555;
  line-height: 1.8;
}

.kvkk-box ul {
  padding-left: 18px;
  margin-top: 10px;
}

.kvkk-box li {
  margin-bottom: 6px;
  color: #555;
}
/* =========================
   ÜYE OL SAYFASI
========================= */

.member-hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 38%),
    linear-gradient(135deg, #fffdf6 0%, #fff7dd 100%);
}

.member-info-section {
  background: #ffffff;
}

.member-form-section {
  background:
    linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
}

.member-form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.member-form-text,
.member-form {
  background: #fffdf8;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--etp-shadow);
}

.member-form-text h2 {
  color: var(--etp-black);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.member-form-text p {
  color: #5a5a5a;
  line-height: 1.8;
}

.member-mini-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.member-mini-list div {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 16px;
  padding: 16px;
}

.member-mini-list strong {
  display: block;
  color: var(--etp-yellow);
  font-size: 14px;
  margin-bottom: 4px;
}

.member-mini-list span {
  color: #555555;
  font-size: 14px;
}

.member-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.member-form .btn {
  grid-column: 1 / -1;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

@media (max-width: 1100px) {
  .member-form-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .member-form {
    grid-template-columns: 1fr;
  }

  .member-form-text,
  .member-form {
    padding: 24px 18px;
    border-radius: 22px;
  }
}