/*
Theme Name: Yavuz Selim Kılınç
Theme URI: https://www.yavuzselimkilinc.com
Author: YSK Design
Author URI: https://www.yavuzselimkilinc.com
Description: Premium kurumsal dönüşüm danışmanlığı teması — Strateji, Liderlik, Teknoloji. One-page yapı, editorial tasarım, sakin ve iddialı ton.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yavuzselimkilinc
Tags: one-page, consulting, premium, blog, custom-logo, custom-colors, translation-ready
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display&display=swap');

:root {
  --bg: #FAFAF8;
  --bg-alt: #F4F2EC;
  --bg-card: #FFFFFF;

  --text: #141414;
  --text-secondary: #4A4A4A;
  --text-muted: #7A7A7A;
  --text-faint: #AAA8A2;

  --accent: #0E2A3A;
  --accent-hover: #1B3A4B;
  --accent-light: #2C5F7C;
  --accent-soft: #E8EEF2;

  --gold: #A07C4E;
  --gold-light: #C9A878;

  --border: #E0DDD5;
  --border-light: #EDEAE2;
  --border-soft: #F2F0E9;

  --shadow-xs: 0 1px 2px rgba(14,42,58,0.04);
  --shadow-sm: 0 1px 3px rgba(14,42,58,0.06), 0 1px 2px rgba(14,42,58,0.04);
  --shadow-md: 0 4px 20px rgba(14,42,58,0.08);
  --shadow-lg: 0 12px 40px rgba(14,42,58,0.10);

  --radius: 4px;
  --radius-lg: 8px;

  --max-width: 1160px;
  --content-width: 820px;
  --header-height: 76px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern', 'liga', 'calt';
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ========== HEADER ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color var(--transition), background var(--transition);
}

header.scrolled {
  border-bottom-color: var(--border-light);
  background: rgba(250, 250, 248, 0.95);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.015em;
  transition: color var(--transition);
}

.logo:hover { color: var(--accent-light); }

nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.005em;
  position: relative;
}

nav a:not(.nav-cta):hover { color: var(--accent); }

nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--accent);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 60px) 40px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44,95,124,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 36px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-light);
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 36px;
}

.hero-lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-note {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 700px;
  padding-left: 20px;
  border-left: 2px solid var(--gold-light);
}

.hero-line {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-top: 64px;
}

/* Hero CTA */
.hero-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hero-cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hero-cta-note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ========== DIVIDER ========== */
.divider {
  max-width: var(--max-width);
  margin: 0 auto;
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ========== SECTION ========== */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 40px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 780px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 72px;
  max-width: 680px;
}

/* ========== HAKKIMDA ========== */
.about-content {
  max-width: var(--content-width);
  margin-top: 48px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.about-content p.lead-paragraph {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 36px;
  font-style: italic;
  letter-spacing: -0.01em;
}

.about-content strong {
  color: var(--accent);
  font-weight: 600;
}

.about-more-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.about-more-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ========== HIZMETLER ========== */
.service-group {
  margin-top: 96px;
}

.service-group:first-of-type {
  margin-top: 64px;
}

.service-group-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.service-group-number {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 60px;
}

.service-group-title {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 400;
}

.service-group-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background var(--transition);
  position: relative;
}

.service-card:hover {
  background: var(--bg-alt);
}

.service-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  line-height: 1.35;
}

.service-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ========== YAZILAR ========== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border-light);
}

.blog-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: padding var(--transition);
  position: relative;
}

.blog-item::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-12px);
  font-size: 20px;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.blog-item:hover { padding-left: 8px; }

.blog-item:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.blog-item-content {
  flex: 1;
  max-width: 700px;
}

.blog-item h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 400;
  transition: color var(--transition);
}

.blog-item:hover h3 { color: var(--accent); }

.blog-excerpt {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-date {
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.03em;
  white-space: nowrap;
  margin-top: 8px;
  flex-shrink: 0;
}

.blog-all {
  text-align: center;
  margin-top: 56px;
}

.blog-all a {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-light);
  transition: color var(--transition), border-color var(--transition);
}

.blog-all a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ========== ILETISIM ========== */
.contact-section {
  background: linear-gradient(to bottom, transparent, var(--bg-alt) 40%);
  padding-bottom: 160px;
}

.contact-block {
  max-width: var(--content-width);
  margin: 48px 0 0;
}

.contact-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 680px;
}

.contact-subtext {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-subtext a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 1px;
  transition: color var(--transition);
}

.contact-subtext a:hover { color: var(--gold); }

.contact-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}

.contact-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 12px 10px;
  min-height: 50px;
  background: var(--bg-card);
  text-decoration: none;
  transition: background var(--transition);
  border: 2px solid var(--border-light);
}

.contact-link-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  width: 100%;
  display: block;
}

.contact-link-value {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: auto 0;
  display: block;
}

.contact-link:hover { background: var(--accent-soft); }

.contact-link-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-link-value {
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: -0.005em;
}}

.contact-location {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* Contact link renk varyantları */
.contact-link-1 .contact-link-value,
.contact-link-2 .contact-link-value,
.contact-link-3 .contact-link-value {
    color: #fff !important;
}
.contact-link-cta {
  background: var(--accent) !important;
}

.contact-link-cta .contact-link-label {
  color: rgba(255,255,255,0.7) !important;
}

.contact-link-cta .contact-link-value {
  color: #fff !important;
}

.contact-link-cta:hover {
  background: var(--accent-hover) !important;
}

.contact-link-exeveritas {
    background: var(--accent) !important;
}

.contact-link-exeveritas .contact-link-label {
    color: rgba(255,255,255,0.6) !important;
}

.contact-link-exeveritas:hover {
    background: var(--accent-hover) !important;
}

/* ========== FOOTER ========== */
footer {
  background: var(--accent);
  color: #D5DEE4;
  padding: 64px 40px 32px;
  margin-top: 80px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.footer-tag {
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
}

.footer-right a {
  white-space: nowrap;
}

.footer-right a {
  color: #D5DEE4;
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(213,222,228,0.6);
}

.footer-credit strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ========== HAKKIMDA SAYFASI ========== */
.about-page {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 40px 120px;
}

.about-page-hero {
  padding: calc(var(--header-height) + 80px) 0 64px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 72px;
}

.about-page-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.025em;
  color: var(--text);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-page-sub {
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.about-section p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.about-section p:first-child {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}

.about-divider {
  width: 48px;
  height: 1px;
  background: var(--gold-light);
  margin: 64px 0;
}

.about-focus {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 40px 0;
}

.about-focus-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-focus-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.about-focus-items span {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.01em;
  font-weight: 400;
}

.about-focus-dot {
  color: var(--gold-light) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
}

.about-focus-note {
  font-size: 15px;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0 !important;
}

/* ========== EXEVERITAS YÖNLENDİRME ========== */
.exeveritas-section {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.exeveritas-block {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 32px 40px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  max-width: 680px;
}

.exeveritas-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0;
}

.exeveritas-link {
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.exeveritas-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ========== BLOG POST ========== */
.post-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: calc(var(--header-height) + 60px) 40px 80px;
}

.back-link {
  display: inline-block;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  transition: color var(--transition);
}

.back-link:hover { color: var(--accent); }

.post-meta {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.post-content h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 40px;
}

.post-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.post-body p { margin-bottom: 20px; }

.post-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--text);
  letter-spacing: -0.015em;
  margin: 48px 0 20px;
  font-weight: 400;
  line-height: 1.25;
}

.post-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin: 40px 0 16px;
  letter-spacing: -0.005em;
}

.post-body strong { color: var(--text); font-weight: 600; }
.post-body em { font-style: italic; }

.post-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--gold-light);
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.post-body a:hover { color: var(--gold); }

.post-body ul, .post-body ol {
  margin: 20px 0;
  padding-left: 24px;
}

.post-body li { margin-bottom: 10px; }

.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text);
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ========== METODOLOJI ========== */
.methodology-section {
  background: linear-gradient(180deg, transparent 0%, var(--bg-alt) 20%, var(--bg-alt) 80%, transparent 100%);
}

.methodology-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.method-step {
  background: var(--bg-card);
  padding: 36px 28px 32px;
  position: relative;
  transition: background var(--transition);
}

.method-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-light), var(--gold));
  border-radius: 2px;
}

.method-step:hover { background: var(--bg-alt); }

.method-number {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  opacity: 0.9;
}

.method-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.method-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--accent);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 14px;
  font-weight: 400;
}

.method-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.method-items {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

.method-items li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.method-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 1px;
  background: var(--gold-light);
}

.methodology-note {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}

.methodology-note p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.methodology-note strong { color: var(--accent); font-weight: 600; }

/* ========== WORDPRESS STİLLERİ ========== */
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; margin-bottom: 16px; }

.post-body img, .post-body figure {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
  border-radius: var(--radius);
}

.wp-caption-text, .post-body figcaption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* Contact Form 7 */
.wpcf7-form { max-width: 680px; margin-top: 40px; }
.wpcf7-form p { margin-bottom: 20px; }

.wpcf7-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ysk-form-group { margin-bottom: 24px; }

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,42,58,0.08);
}

.wpcf7-form textarea { min-height: 140px; resize: vertical; }

.wpcf7-form input[type="submit"] {
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.wpcf7-form input[type="submit"]:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.wpcf7-response-output {
  margin-top: 20px !important;
  padding: 16px 20px !important;
  border-radius: var(--radius) !important;
  font-size: 14px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #2E7D32 !important;
  background: #E8F5E9;
  color: #1B5E20;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-color: #C62828 !important;
  background: #FFEBEE;
  color: #B71C1C;
}

.wpcf7-not-valid-tip {
  color: #C62828 !important;
  font-size: 12px !important;
  margin-top: 6px !important;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.pagination a:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.pagination .current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

body.admin-bar header { top: 32px; }

.post-navigation {
  max-width: var(--content-width);
  margin: 64px auto 0;
  padding: 40px 0 0;
  border-top: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.post-navigation a { text-decoration: none; color: inherit; display: block; }
.post-navigation .nav-previous { text-align: left; }
.post-navigation .nav-next { text-align: right; }

.post-navigation .nav-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.post-navigation .nav-title {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--text);
  line-height: 1.3;
  transition: color var(--transition);
}

.post-navigation a:hover .nav-title { color: var(--accent); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .methodology-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .contact-links {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 880px) {
  .header-inner { padding: 0 24px; }
  .hamburger { display: flex; }

  nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-md);
  }

  nav.active { transform: translateY(0); }
  nav a { padding: 14px 24px; width: 100%; }
  nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin: 12px 24px 0; text-align: center; }

  .hero { padding: calc(var(--header-height) + 40px) 24px 80px; }
  .section { padding: 80px 24px; }
  .section-title { font-size: clamp(28px, 7vw, 36px); }
  .about-content p { font-size: 16px; }
  .about-content p.lead-paragraph { font-size: 20px; }
  .service-group { margin-top: 72px; }
  .service-group-header { flex-direction: column; gap: 16px; margin-bottom: 36px; }
  .service-group-number { font-size: 28px; }
  .service-group-title { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }

  .blog-item { flex-direction: column; gap: 12px; }
  .blog-item::after { display: none; }
  .blog-date { margin-top: 0; }

  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .about-page { padding: 0 24px 80px; }
  .about-page-hero { padding: calc(var(--header-height) + 48px) 0 48px; margin-bottom: 48px; }
  .about-section p { font-size: 16px; }
  .about-section p:first-child { font-size: 19px; }
  .about-focus { padding: 24px; }
  .about-focus-items { flex-direction: column; align-items: flex-start; gap: 8px; }
  .about-focus-dot { display: none !important; }

  .methodology-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .method-step { padding: 28px 24px; }
  .method-number { font-size: 36px; }
  .methodology-note { padding: 20px 24px; }

  .post-navigation { grid-template-columns: 1fr; gap: 24px; }
  .post-navigation .nav-next { text-align: left; }
}

@media (max-width: 640px) {
  .methodology-grid { grid-template-columns: 1fr !important; }
  .contact-links { grid-template-columns: 1fr !important; }
}

@media (max-width: 520px) {
  .hero-tag { font-size: 11px; }
  .hero-lead { font-size: 17px; }
  .hero-note { font-size: 14px; }
  .section-subtitle { font-size: 16px; }
}

@media (max-width: 782px) {
  body.admin-bar header { top: 46px; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-inner > * {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-tag { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero-lead { animation-delay: 0.25s; }
.hero-note { animation-delay: 0.35s; }
.hero-line { animation-delay: 0.45s; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}.contact-link[style*="background: #1B3A4B"] .contact-link-label,
.contact-link[style*="background: #3D7A9A"] .contact-link-label {
    color: rgba(255,255,255,0.6) !important;
}

.contact-link[style*="background: #1B3A4B"] .contact-link-value,
.contact-link[style*="background: #3D7A9A"] .contact-link-value {
    color: #fff !important;
}
