/*
Theme Name: KVKK Danışmanlık Pro
Theme URI: https://example.com/kvkk-tema
Author: Soft Marketing
Author URI: https://example.com
Description: KVKK ve Kişisel Veri Danışmanlığı için profesyonel, SEO odaklı WordPress teması. Mobil uyumlu, hızlı ve erişilebilir.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kvkk-pro
Tags: business, professional, law, compliance, seo-ready, responsive, accessibility-ready
*/

/* =============================================
   KVKK PRO TEMA — ANA STİL DOSYASI
   Tasarım: Güven + Otorite + Netlik
   Renk Paleti: Lacivert + Altın + Beyaz
============================================= */

/* ============ CSS VARIABLES ============ */
:root {
  /* Ana Renkler */
  --color-navy:        #0D1B3E;
  --color-navy-dark:   #071228;
  --color-navy-mid:    #1A2F5E;
  --color-navy-light:  #2A4580;
  --color-gold:        #C9A84C;
  --color-gold-light:  #E4C96A;
  --color-gold-pale:   #F7EDD0;

  /* Nötr Renkler */
  --color-white:       #FFFFFF;
  --color-offwhite:    #F8F9FC;
  --color-gray-50:     #F3F4F8;
  --color-gray-100:    #E8EAF2;
  --color-gray-200:    #D0D4E8;
  --color-gray-400:    #8891B4;
  --color-gray-600:    #4A5278;
  --color-gray-800:    #1E2440;
  --color-text:        #1A1F3A;
  --color-text-muted:  #5A6080;

  /* Semantik */
  --color-success:     #1A6B47;
  --color-danger:      #C0392B;
  --color-warning:     #D4820A;
  --color-info:        #1565C0;

  /* Tipografi */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Boyutlar */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 3px rgba(13,27,62,0.08);
  --shadow-md:   0 4px 16px rgba(13,27,62,0.12);
  --shadow-lg:   0 12px 40px rgba(13,27,62,0.16);
  --shadow-xl:   0 24px 64px rgba(13,27,62,0.20);

  /* Layout */
  --container-max:  1200px;
  --container-wide: 1400px;
  --header-h:       72px;

  /* Geçiş */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: #071228;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* İlk section (hero) için body arka planını lacivert yap,
   diğer her şey kendi background'unu tanımlar */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: #071228;
  z-index: -1;
  pointer-events: none;
}

img, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ======== WORDPRESS ADMİN BAR UYUMU ======== */
/* WordPress admin bar'ı fixed yap ve body margin'ini sıfırla */
#wpadminbar { position: fixed !important; }

/* Admin bar body margin'ini hero padding'e aktar — body'yi kaydırma */
body.admin-bar {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.admin-bar .site-header { top: 32px; }
.admin-bar .hero        { padding-top: calc(var(--header-h) + 32px + 3rem); }
.admin-bar .mobile-menu { top: calc(var(--header-h) + 32px); }

@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .hero        { padding-top: calc(var(--header-h) + 46px + 2.5rem); }
  .admin-bar .mobile-menu { top: calc(var(--header-h) + 46px); }
}

/* main wrapper sıfırla */
#main-content {
  display: block;
  margin: 0;
  padding: 0;
}

html { scroll-padding-top: calc(var(--header-h) + 1rem); }

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}

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

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ============ SKIP LINK (Erişilebilirlik) ============ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }


/* ============ CONTAINER ============ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--wide {
  max-width: var(--container-wide);
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.875rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--color-text-muted); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  color: var(--color-gray-600);
  line-height: 1.8;
}

strong, b { font-weight: 600; color: var(--color-text); }

.text-gold   { color: var(--color-gold); }
.text-navy   { color: var(--color-navy); }
.text-muted  { color: var(--color-text-muted); }
.text-center { text-align: center; }
.text-white  { color: var(--color-white); }

/* Section başlık sistemi */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}
.btn--primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn--outline-dark:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition);
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(7,18,40,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* border-bottom yerine box-shadow — altındaki içerikle boşluk oluşmaz */
  box-shadow: 0 1px 0 rgba(201,168,76,0.2), 0 2px 20px rgba(0,0,0,0.3);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(7,18,40,1);
  box-shadow: 0 1px 0 rgba(201,168,76,0.25), 0 4px 32px rgba(0,0,0,0.4);
}

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

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.08);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-item .dropdown-icon {
  font-size: 0.65rem;
  transition: transform var(--transition);
}

.nav-item:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gray-100);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  color: var(--color-text);
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.dropdown-link:hover {
  background: var(--color-gray-50);
  color: var(--color-navy);
  transform: translateX(4px);
}

.dropdown-link-icon {
  width: 28px;
  height: 28px;
  background: var(--color-gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.header-phone:hover { color: var(--color-gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s;
}

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

/* ============ HERO SECTION ============ */
.hero {
  min-height: 100vh;
  background: var(--color-navy-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible; /* Buton gölgeleri kırpılmasın */
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 5rem;
  box-sizing: border-box;
}

/* Arka plan desen ve gradyan overflow'u kısıtlamak için pseudo-element kullan */
.hero > .hero-grid-pattern,
.hero::before {
  overflow: hidden;
}

/* Admin bar açıkken hero padding ve header top telafisi */
.admin-bar .site-header { top: 32px; }
.admin-bar .hero { padding-top: calc(var(--header-h) + 32px + 3rem); }

@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .hero { padding-top: calc(var(--header-h) + 46px + 2.5rem); }
}

/* Arka plan deseni */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(42,69,128,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,168,76,0.12) 0%, transparent 60%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--color-gold-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--color-gold);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  padding-bottom: 4px;
}

/* Hero istatistik bar */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero sağ taraf dekorasyon */
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 540px;
  z-index: 1;
  opacity: 0.15;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--color-offwhite);
  border-top: 1px solid var(--color-gray-100);
  border-bottom: 1px solid var(--color-gray-100);
  padding: 1.5rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy-mid);
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: var(--color-gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============ SECTION SPACING ============ */
.section {
  padding: 5rem 0;
}

.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }

.section--dark {
  background: var(--color-navy-dark);
  color: var(--color-white);
}

.section--dark .section-title { color: var(--color-white); }
.section--dark p { color: rgba(255,255,255,0.65); }

.section--gray { background: var(--color-offwhite); }
.section--navy { background: var(--color-navy); }

/* ============ HİZMET KARTLARI ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--color-gold-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--color-gold);
}

.service-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--color-navy);
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition);
}

.service-card-link:hover {
  color: var(--color-gold);
  gap: 0.65rem;
}

/* ============ WHY US / ÖZELLIKLER ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-mid));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-md);
}

.feature-title {
  font-size: 1.05rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============ PROCESS STEPS ============ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}

.step-title {
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ============ BLOG KARTLARI ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-mid));
  position: relative;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: 1.1rem;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color var(--transition);
}

.blog-card:hover .blog-card-title { color: var(--color-gold); }

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.blog-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition);
}

.blog-card-link:hover {
  color: var(--color-gold);
  gap: 0.65rem;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--color-gold);
  font-family: var(--font-heading);
  line-height: 0.8;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy);
}

.author-company {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.star-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--color-gold);
  font-size: 0.9rem;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy-mid) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.active {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--color-navy);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--color-gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--color-gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.faq-item.active .faq-answer { display: block; }

/* ============ CONTACT FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(13,27,62,0.08);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-brand {
  max-width: 280px;
}

.footer-brand .site-logo {
  margin-bottom: 1.25rem;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy-dark);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-link:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

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

/* ============ BREADCRUMB ============ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--color-navy);
  font-weight: 500;
}

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

.breadcrumb-sep {
  color: var(--color-gray-400);
  font-size: 0.7rem;
}

/* ============ PAGE HEADER ============ */
.page-header {
  background: linear-gradient(135deg, var(--color-navy-dark), var(--color-navy));
  padding: calc(var(--header-h) + 3rem) 0 3.5rem;
  text-align: center;
}

.page-header-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.page-header-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
}

/* ============ SIDEBAR ============ */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.sidebar-widget {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget-title {
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-gold-pale);
}

/* ============ BADGES & LABELS ============ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.badge--gold {
  background: var(--color-gold-pale);
  color: var(--color-gold);
  border: 1px solid rgba(201,168,76,0.3);
}

.badge--navy {
  background: rgba(13,27,62,0.1);
  color: var(--color-navy);
}

.badge--success {
  background: rgba(26,107,71,0.1);
  color: var(--color-success);
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-navy-dark);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-xl);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.cookie-text a { color: var(--color-gold); }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 500;
  box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  transform: translateY(-3px);
}

/* ============ UTILITY ============ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.d-flex     { display: flex; }
.d-grid     { display: grid; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.pt-0 { padding-top: 0; }

/* ============ RESPONSIVE ============ */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .content-with-sidebar {
    grid-template-columns: 1fr;
  }

  .hero-visual { display: none; }
}

/* Tablet küçük: 768px */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .main-nav,
  .header-phone { display: none; }

  .hamburger { display: flex; }

  /* Mobil menü */
  .mobile-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7,18,40,0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    padding: 1.5rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
  }

  .mobile-nav-link:hover { color: var(--color-gold); }

  

  /* Hero */
  .hero-stats { gap: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Trust bar */
  .trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Grid'ler */
  .services-grid,
  .features-grid,
  .blog-grid,
  .testimonials-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Cookie */
  .cookie-banner {
    flex-direction: column;
    left: 1rem;
    right: 1rem;
  }

  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }

  /* Back to top */
  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* Mobil küçük: 480px */
@media (max-width: 480px) {
  body { font-size: 15px; }

  .section { padding: 3.5rem 0; }

  .hero {
    padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
  }

  .hero-stat-num { font-size: 1.6rem; }

  .service-card { padding: 1.5rem; }

  .btn--lg {
    padding: 0.9rem 1.75rem;
    font-size: 0.975rem;
  }

  .container { padding: 0 1rem; }

  .logo-tagline { display: none; }
}

/* Print */
@media print {
  .site-header,
  .site-footer,
  .cookie-banner,
  .back-to-top,
  .btn { display: none !important; }

  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  .hero { min-height: auto; background: none; }
}
