/* ==========================================================================
   OZEL EDREMIT TIBBI HIZMETLER - ANA CSS
   Profesyonel Evde Tibbi Hizmetler Web Sitesi
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS DEGISKENLERI (Custom Properties)
   -------------------------------------------------------------------------- */
:root {
  /* Ana Renkler */
  --primary: #0891B2;
  --primary-dark: #0E7490;
  --primary-light: #22D3EE;
  --secondary: #22D3EE;
  --accent: #22C55E;
  --accent-dark: #16A34A;

  /* Notr Renkler */
  --white: #FFFFFF;
  --bg-light: #F0FDFA;
  --bg-section: #F8FAFC;
  --text-dark: #134E4A;
  --text-muted: #475569;
  --text-light: #64748B;
  --border: #E2E8F0;

  /* Koyu Tema */
  --dark: #0F766E;
  --dark-bg: #042F2E;
  --footer-bg: #0D3D56;

  /* Golgeler */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Tipografi */
  --font-heading: 'Figtree', sans-serif;
  --font-body: 'Noto Sans', sans-serif;

  /* Gecisler */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  /* overflow-x: hidden ust elemanda sticky'yi kirar - section seviyesinde kullaniliyor */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. YARDIMCI SINIFLAR (Utilities)
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
  overflow-x: hidden;
  /* AOS/carousel tasmasini onle; header kardes eleman, sticky bozulmaz */
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
}

.section-title p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}

.text-primary {
  color: var(--primary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   4. BUTONLAR
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(8, 145, 178, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.5);
  color: var(--white);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  min-height: 40px;
}

/* --------------------------------------------------------------------------
   5. UST BAR (Top Bar) - header fixed oldugu icin flow'dan cikariliyor
   -------------------------------------------------------------------------- */
.top-bar {
  background: linear-gradient(90deg, var(--dark-bg), var(--footer-bg));
  padding: 0.625rem 0;
  font-size: 0.875rem;
  position: relative;
  z-index: 9998;
  display: none !important;
  /* Fixed header ile cakismamasi icin gizlendi */
}


.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.top-bar-item i {
  color: var(--secondary);
}

.top-bar-item a {
  color: rgba(255, 255, 255, 0.9);
}

.top-bar-item a:hover {
  color: var(--secondary);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.875rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   6. HEADER & NAVIGASYON
   -------------------------------------------------------------------------- */

/* WP admin bar inline !important override (bizim CSS daha sonra yukleniyor) */
@media screen and (max-width: 600px) {
  html {
    margin-top: 0 !important;
  }
}

.header {
  background: #FFFFFF;
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: var(--transition);
}

/* Admin bar varsa sticky baslangic noktasini asagi al */
.admin-bar .header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  .admin-bar .header {
    top: 0;
  }
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  min-height: 120px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 115px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  white-space: nowrap;
}

.logo-subtitle {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.2;
  white-space: nowrap;
}

.logo-motto {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.3;
  white-space: nowrap;
  margin-top: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  list-style: none;
}

.dropdown-menu {
  list-style: none;
  padding-left: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--bg-light);
}

.nav-link i {
  font-size: 0.75rem;
  transition: var(--transition);
}

/* Mega Menu (3 Sutun) */
.menu-item-has-children {
  position: static;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 1000px;
  max-width: calc(100vw - 2rem);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px var(--border);
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  column-count: 3;
  column-gap: 0.5rem;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full) var(--radius-full) 0 0;
}

.navbar {
  position: relative;
}

.nav-item:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu>li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 0.9rem;
  line-height: 1.3;
  white-space: normal;
}

.dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary);
  transform: translateX(3px);
}

.dropdown-item i {
  width: 20px;
  min-width: 20px;
  color: var(--primary);
  font-size: 0.85rem;
  text-align: center;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.header-phone i {
  font-size: 1.5rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  z-index: 10002;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* --------------------------------------------------------------------------
   7. HERO SLIDER
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  /* Owl Carousel stage ve AOS tasmasini engelle */
  isolation: isolate;
  /* Owl Carousel transform stacking context'i izole et */
}

.hero-slide {
  position: relative;
  height: 600px;
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #0891B2 0%, #0F766E 100%);
  overflow: hidden;
}

.hero-slide::before {
  display: none;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 0 0 55%;
  max-width: 650px;
  color: var(--white);
  padding: 4rem 0;
  z-index: 3;
  position: relative;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 10%, rgba(0, 0, 0, 0.8) 25%, rgba(0, 0, 0, 1) 40%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 10%, rgba(0, 0, 0, 0.8) 25%, rgba(0, 0, 0, 1) 40%);
}

@media (max-width: 991px) {
  .hero-container {
    justify-content: center;
    text-align: center;
    padding-top: 3rem;
    min-height: 500px;
  }

  .hero-content {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 2rem 0;
    z-index: 4;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-wrapper {
    width: 100%;
    opacity: 0.25;
    top: 0;
    left: 0;
  }

  .hero-image-wrapper img {
    object-position: center center;
    filter: blur(1px);
    opacity: 0.7;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-text {
  font-size: 1.25rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 2rem;
  color: var(--white);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Owl Carousel Hero */
.hero-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
}

.hero-carousel .owl-nav button {
  pointer-events: auto;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full) !important;
  color: var(--white) !important;
  font-size: 1.5rem !important;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel .owl-nav button:hover {
  background: var(--white) !important;
  color: var(--primary) !important;
}

.hero-carousel .owl-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}

.hero-carousel .owl-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4) !important;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.hero-carousel .owl-dot.active {
  background: var(--white) !important;
  width: 36px;
}

/* --------------------------------------------------------------------------
   8. HIZMETLER BOLUMU
   -------------------------------------------------------------------------- */
.services-section {
  background: var(--bg-light);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  min-height: 320px;
  border: 1px solid transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-carousel .owl-item {
  display: flex;
}

.services-carousel .owl-stage {
  display: flex;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--primary-dark);
}

/* Hizmetler Carousel */
.services-carousel .owl-stage-outer {
  padding: 1rem 0 2rem;
}

.services-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.services-carousel .owl-nav button {
  width: 48px;
  height: 48px;
  background: var(--primary) !important;
  border-radius: var(--radius-full) !important;
  color: var(--white) !important;
  font-size: 1.25rem !important;
  transition: var(--transition);
}

.services-carousel .owl-nav button:hover {
  background: var(--primary-dark) !important;
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   9. HAKKIMIZDA BOLUMU
   -------------------------------------------------------------------------- */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-badge span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.about-badge p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin: 0;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text .lead {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-list {
  margin: 1.5rem 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.about-list li i {
  color: var(--accent);
  margin-top: 0.25rem;
}

/* Hakkimizda Galeri */
.about-gallery-section {
  margin-top: 4rem;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.about-gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 145, 178, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 1.75rem;
}

.about-gallery-item:hover .gallery-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Misyon Vizyon Kartlari */
.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mission-card h5 {
  color: var(--primary);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.mission-card p {
  font-size: 0.9375rem;
  margin: 0;
}

/* Istatistikler - Professional Style */
.stats-section {
  background: linear-gradient(135deg, #1a3a4a 0%, #0d1f29 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2308b4cb' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(8, 145, 178, 0.3);
}

.stat-content {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.025em;
  margin: 0;
}

/* --------------------------------------------------------------------------
   10. NEDEN BIZ?
   -------------------------------------------------------------------------- */
.why-us-section {
  background: var(--bg-section);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-us-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.why-us-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.why-us-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--bg-light), var(--white));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  border: 3px solid var(--primary);
  transition: var(--transition);
}

.why-us-card:hover .why-us-icon {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: var(--white);
  border-color: var(--primary);
}

.why-us-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.why-us-card p {
  font-size: 0.9375rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. BLOG BOLUMU
   -------------------------------------------------------------------------- */
.blog-section {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.blog-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: var(--transition);
}

.blog-card:hover .blog-content h4 {
  color: var(--primary);
}

.blog-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.blog-link:hover {
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   12. GORU-LER (Testimonials)
   -------------------------------------------------------------------------- */
.testimonials-section {
  background: linear-gradient(135deg, var(--bg-light), var(--white));
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  margin: 1rem;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 3px solid var(--primary);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h5 {
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

.testimonial-rating {
  margin-left: auto;
  display: flex;
  gap: 0.25rem;
  color: #FBBF24;
}

.testimonials-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonials-carousel .owl-dot {
  width: 12px;
  height: 12px;
  background: var(--border) !important;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.testimonials-carousel .owl-dot.active {
  background: var(--primary) !important;
  width: 36px;
}

/* --------------------------------------------------------------------------
   13. ILETI-IM & RANDEVU FORMU
   -------------------------------------------------------------------------- */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-details h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-details p,
.contact-details a {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9375rem;
}

.contact-details a:hover {
  color: var(--primary);
}

.contact-map {
  margin-top: 2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 250px;
}

.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  max-width: 100%;
}

/* Form Styles */
.contact-form-wrapper {
  background: var(--bg-light);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
}

.contact-form-wrapper h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper>p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.9375rem;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  min-height: 48px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.15);
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 3rem;
}

/* KVKK Checkbox Styles */
.kvkk-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.kvkk-check .form-check-input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 0;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
  position: relative;
  float: none;
}

.kvkk-check .form-check-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.kvkk-check .form-check-label a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.kvkk-check .form-check-label a:hover {
  color: var(--primary-dark);
}

/* Modal Base Styles (for Bootstrap JS compatibility) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
  display: block;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem auto;
  max-width: 800px;
  pointer-events: none;
}

.modal-dialog-scrollable {
  max-height: calc(100% - 3.5rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 3.5rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1.5rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}

.btn-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.5;
  padding: 0;
  line-height: 1;
}

.btn-close:hover {
  opacity: 1;
}

.btn-close::before {
  content: '-';
}

.modal-backdrop {
  display: none;
}

/* KVKK Modal Styles */
#kvkkModal .modal-header {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

#kvkkModal .modal-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

#kvkkModal .btn-close {
  filter: invert(1);
}

#kvkkModal .modal-body h6 {
  color: var(--primary);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

#kvkkModal .modal-body h6:first-child {
  margin-top: 0;
}

#kvkkModal .modal-body ul {
  padding-left: 1.5rem;
  list-style: disc;
}

#kvkkModal .modal-body li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: linear-gradient(135deg, var(--dark-bg), var(--footer-bg));
  color: var(--white);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 60px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 0.5rem;
}

.footer-links a i {
  font-size: 0.75rem;
  color: var(--secondary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-contact-item i {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-top: 0.25rem;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item a:hover {
  color: var(--secondary);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   15. SCROLL TO TOP
   -------------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* --------------------------------------------------------------------------
   16. ANIMASYONLAR
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   17. RESPONSIVE TASARIM - TUM CIHAZLAR
   ========================================================================== */

/* --------------------------------------------------------------------------
   17.1 BUYUK EKRANLAR (1440px ve uzeri - iMac, Genis Monitor)
   -------------------------------------------------------------------------- */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-slide {
    min-height: 700px;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 3rem;
  }
}

/* --------------------------------------------------------------------------
   17.2 LAPTOP / MASAUSTU (1200px - 1439px)
   -------------------------------------------------------------------------- */
@media (max-width: 1439px) {
  .container {
    max-width: 1200px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

/* --------------------------------------------------------------------------
   17.3 LAPTOP KUCUK (992px - 1199px)
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }

  .nav-link {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }

  .logo-title {
    font-size: 1rem;
  }

  .logo-subtitle {
    font-size: 0.75rem;
  }

  .logo-motto {
    font-size: 0.625rem;
  }

  /* Mobilde dropdown: position absolute yerine static, overflow yok */
  .dropdown-menu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: #f8f9fa !important;
    padding: 0.25rem 0 0.5rem 0.75rem !important;
    column-count: 1 !important;
    display: none;
    margin-top: 0;
    border-top: 1px solid #eee;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-item.open>.dropdown-menu {
    display: block;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-text {
    font-size: 1.125rem;
  }

  .about-content {
    gap: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   17.4 TABLET (768px - 1079px) - iPad Pro, iPad Air dahil
   -------------------------------------------------------------------------- */
@media (max-width: 1079px) {
  .container {
    max-width: 900px;
  }

  .section {
    padding: 4rem 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  /* Top Bar - tek satirda kalsin */
  .top-bar {
    font-size: 0.75rem;
  }

  .top-bar-content {
    justify-content: center;
    text-align: center;
  }

  .top-bar-left {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .top-bar-right {
    display: none;
  }

  /* Navigation - Mobile Accordion Menu */
  .mobile-toggle {
    display: flex;
    z-index: 10002;
  }

  .nav-menu,
  .header-cta {
    display: none !important;
  }

  /* - Mobile Menu: Full-Screen Slide Panel - */
  .nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 10001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 90px 1.5rem 2rem 1.5rem;
    margin: 0;
    gap: 0;
    list-style: none;
    animation: menuSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes menuSlideIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  body.menu-open {
    overflow: hidden;
  }

  /* - Menu Items: Left-aligned, clean rows - */
  .nav-menu.active>.nav-item {
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
    padding: 0;
    position: static;
  }

  .nav-menu.active>.nav-item:first-child {
    border-top: none;
  }

  /* - Nav Links: Left-aligned, dark text, minimal - */
  .nav-menu.active .nav-link {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.125rem 0.25rem !important;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.0625rem !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    text-decoration: none;
    line-height: 1.4;
    box-shadow: none !important;
    outline: none;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
  }

  .nav-menu.active .nav-link:hover,
  .nav-menu.active .nav-link:focus {
    color: var(--primary) !important;
    background: transparent !important;
  }

  .nav-menu.active .nav-link.active {
    color: var(--primary) !important;
    background: transparent !important;
  }

  /* - Chevron: right-aligned, elegant rotation - */
  .nav-menu.active .nav-link>i,
  .nav-menu.active .nav-link>.fa-chevron-down {
    font-size: 0.8125rem;
    color: #bbb;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
    margin-left: auto;
    flex-shrink: 0;
  }

  /* - Open state: parent link - */
  .nav-menu.active .nav-item.open>.nav-link {
    color: var(--primary) !important;
    font-weight: 600 !important;
  }

  .nav-menu.active .nav-item.open>.nav-link>i {
    transform: rotate(180deg);
    color: var(--primary);
  }

  /* - Accordion Dropdown: slide-down - */
  .nav-menu.active .dropdown-menu {
    position: static !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 0 0.5rem 0 !important;
    margin: 0 !important;
    background: transparent;
    list-style: none;
    min-width: 0 !important;
    width: 100% !important;
    z-index: auto;
    overflow: hidden;
    column-count: 1 !important;
  }

  .nav-menu.active .dropdown-menu::before {
    display: none;
  }

  .nav-menu.active .nav-item.open>.dropdown-menu {
    display: block;
    animation: accordionSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes accordionSlide {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* - Dropdown Service Items - */
  .nav-menu.active .dropdown-menu>li {
    list-style: none;
    border-bottom: none;
  }

  .nav-menu.active .dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.5rem 0.75rem 1rem !important;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 0.9375rem !important;
    font-weight: 400;
    color: #555 !important;
    background: transparent !important;
    border-radius: 0.5rem !important;
    border-left: 2px solid transparent;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1.45;
  }

  .nav-menu.active .dropdown-item:hover,
  .nav-menu.active .dropdown-item:active {
    color: var(--primary) !important;
    background: rgba(8, 145, 178, 0.04) !important;
    border-left-color: var(--primary);
  }

  .nav-menu.active .dropdown-item i {
    color: var(--primary);
    opacity: 0.7;
    width: 22px;
    font-size: 0.875rem;
    text-align: center;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
  }

  .nav-menu.active .dropdown-item:hover i {
    opacity: 1;
  }

  /* Hero */
  .hero-slide {
    min-height: 550px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-carousel .owl-nav {
    display: none;
  }

  /* About */
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    order: -1;
  }

  .about-badge {
    position: relative;
    bottom: 0;
    right: 0;
    display: inline-flex;
    flex-direction: column;
    margin-top: 1rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2.25rem;
  }

  /* Mission Cards */
  .mission-cards {
    grid-template-columns: 1fr;
  }

  /* Why Us */
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   17.5 TABLET KUCUK (576px - 767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .container {
    max-width: 540px;
    padding: 0 1.25rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }

  .section-title p {
    font-size: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.375rem;
  }

  h4 {
    font-size: 1.125rem;
  }

  /* Top Bar - mobilde tamamen gizle, header uste yapissin */
  .top-bar {
    display: none !important;
  }

  /* Header */
  .navbar {
    min-height: 60px;
  }

  .logo {
    gap: 0.5rem;
  }

  .logo img {
    height: 66px;
  }

  /* Compact logo text on mobile */
  .logo-text {
    display: flex;
  }

  .logo-title {
    font-size: 0.875rem;
    font-weight: 600;
  }

  .logo-subtitle {
    font-size: 0.6875rem;
    font-weight: 500;
  }

  /* Hero */
  .hero-slide {
    min-height: 500px;
  }

  .hero-content {
    text-align: center;
    padding: 1.5rem 0;
  }

  .hero-badge {
    font-size: 0.8125rem;
    padding: 0.375rem 0.875rem;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .hero-text {
    font-size: 0.9375rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  /* Hide secondary button (Hizmetlerimiz) on mobile */
  .hero-buttons .btn-outline {
    display: none;
  }

  .hero-carousel .owl-nav {
    display: none;
  }

  /* Services */
  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  /* Stats - Enhanced Mobile */
  .stats-section {
    padding: 3rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-item {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .stat-content {
    margin-bottom: 0.25rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-plus {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
  }

  /* Why Us */
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-image {
    height: 200px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1.5rem;
    margin: 0.5rem;
  }

  .testimonial-author {
    flex-wrap: wrap;
  }

  .testimonial-rating {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
  }

  /* Contact Form */
  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Contact Info - 2 columns on mobile */
  .contact-info {
    text-align: center;
  }

  .contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .contact-info>p {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .contact-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--radius-lg);
    margin-bottom: 0;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .contact-details h5 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }

  .contact-details p,
  .contact-details a {
    font-size: 0.8125rem;
  }

  .contact-map {
    margin-top: 1.5rem;
    height: 220px;
    max-width: 100%;
    overflow: hidden;
  }

  /* Footer */
  .footer {
    padding-top: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 1rem;
    display: block;
  }

  .footer-social {
    justify-content: center;
  }

  /* Hizli Baglantilar - 2 sutun, sol hizali */
  .footer-links-wrapper {
    text-align: left;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 1rem;
  }

  .footer-links a {
    justify-content: flex-start;
  }

  .footer-title {
    text-align: left;
  }

  .footer-title::after {
    left: 0;
    transform: none;
  }

  .footer-contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-bottom .footer-social {
    justify-content: center;
  }

  /* Iletisim Bilgileri - mobil kart tasarim */
  .footer-contact {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
  }

  .footer-contact-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 0.875rem;
    padding: 0.625rem 0.75rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 0.625rem;
    transition: background 0.2s ease;
  }

  .footer-contact-item:last-child {
    margin-bottom: 0;
  }

  .footer-contact-item i {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    background: rgba(var(--primary-rgb, 0, 150, 150), 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-top: 0;
  }

  .footer-contact-item span,
  .footer-contact-item a {
    font-size: 0.85rem;
    line-height: 1.45;
  }

  /* Scroll Top */
  .scroll-top {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
  }

}

/* --------------------------------------------------------------------------
   17.6 MOBIL (575px ve alti)
   -------------------------------------------------------------------------- */
@media (max-width: 575px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.0625rem;
  }

  /* Buttons */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    width: 100%;
    justify-content: center;
  }

  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }

  /* Hero */
  .hero-slide {
    min-height: 450px;
  }

  .hero-title {
    font-size: 1.625rem;
  }

  .hero-text {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  /* Services */
  .service-card {
    padding: 1.25rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .service-card h4 {
    font-size: 1.0625rem;
  }

  .service-card p {
    font-size: 0.875rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  /* About */
  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-badge span {
    font-size: 2rem;
  }

  /* Why Us */
  .why-us-card {
    padding: 1.5rem;
  }

  .why-us-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  /* Blog */
  .blog-content {
    padding: 1.25rem;
  }

  .blog-content h4 {
    font-size: 1.0625rem;
  }

  /* Contact */
  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .contact-form-wrapper {
    padding: 1.25rem;
    border-radius: var(--radius-xl);
  }

  .form-control {
    padding: 0.75rem;
    font-size: 0.9375rem;
  }

  textarea.form-control {
    min-height: 120px;
  }

  /* Footer */
  .footer-brand p {
    font-size: 0.875rem;
  }

  .footer-title {
    font-size: 1.125rem;
  }

  .footer-links a {
    font-size: 0.875rem;
  }
}

/* --------------------------------------------------------------------------
   17.7 COK KUCUK MOBIL (375px ve alti)
   -------------------------------------------------------------------------- */
@media (max-width: 375px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.875rem;
  }

  .hero-slide {
    min-height: 400px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .stats-grid {
    gap: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   18. BREADCRUMB
   ========================================================================== */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 2rem 0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.breadcrumb-nav a:hover {
  color: var(--white);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.breadcrumb-current {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ==========================================================================
   19. HIZMET DETAY SAYFASI
   ========================================================================== */
.hizmet-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.hizmet-detail-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hizmet-detail-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-xl);
  font-size: 2rem;
  color: var(--white);
  flex-shrink: 0;
}

.hizmet-detail-header h1 {
  font-size: 2rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.hizmet-detail-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2rem;
}

.hizmet-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hizmet-detail-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.hizmet-detail-body h2,
.hizmet-detail-body h3,
.hizmet-detail-body h4 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.hizmet-detail-body p {
  margin-bottom: 1.25rem;
}

.hizmet-detail-body ul,
.hizmet-detail-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.hizmet-detail-body ul {
  list-style: disc;
}

.hizmet-detail-body ol {
  list-style: decimal;
}

.hizmet-detail-body li {
  margin-bottom: 0.5rem;
  list-style: inherit;
  display: list-item;
}

.hizmet-detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
}

/* CTA Box */
/* ==========================================================================
   HIZMETLER LISTELEME SAYFASI
   ========================================================================== */
.hizmetler-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.hizmet-page-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hizmet-page-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.hizmet-page-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--primary);
  color: var(--text-dark);
}

.hizmet-page-card:hover::before {
  transform: scaleY(1);
}

.hizmet-page-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.hizmet-page-card:hover .hizmet-page-icon {
  transform: scale(1.1) rotate(-5deg);
}

.hizmet-page-body {
  flex: 1;
  min-width: 0;
}

.hizmet-page-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.hizmet-page-card:hover .hizmet-page-body h4 {
  color: var(--primary);
}

.hizmet-page-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.hizmet-page-arrow {
  flex: 0 0 auto;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-6px);
  align-self: center;
}

.hizmet-page-card:hover .hizmet-page-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991px) {
  .hizmetler-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hizmetler-page-grid {
    grid-template-columns: 1fr;
  }
}

.hizmet-cta-box,

.blog-cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-top: 3rem;
  color: var(--white);
  text-align: center;
}

.hizmet-cta-box h3,
.blog-cta-box h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hizmet-cta-box p,
.blog-cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.hizmet-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: #1da44e;
  transform: translateY(-2px);
  color: var(--white);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Sidebar */
.hizmet-detail-sidebar,
.blog-detail-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.sidebar-widget h4 {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-widget h4 i {
  color: var(--primary);
}

/* Sidebar Search */
.search-form {
  display: flex;
  align-items: center;
  position: relative;
}

.search-form .search-field {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.search-form .search-field:focus {
  border-color: var(--primary);
}

.search-form .search-submit {
  position: absolute;
  right: 0.5rem;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.search-form .search-submit:hover {
  color: var(--accent);
}

/* Sidebar Categories */
.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 0.75rem;
}

.categories-widget ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.categories-widget ul li a {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.categories-widget ul li a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary);
  opacity: 0.5;
  transition: opacity 0.3s ease, margin 0.3s ease;
}

.categories-widget ul li a:hover {
  color: var(--primary);
}

.categories-widget ul li a:hover::before {
  opacity: 1;
  margin-right: 0.25rem;
}

.categories-widget ul li span {
  /* count */
  font-size: 0.85rem;
  background: var(--bg-light);
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  color: var(--text-muted);
}

/* Recent Posts */
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}

.recent-posts-list li:last-child {
  margin-bottom: 0;
}

.recent-post-thumb {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-post-thumb:hover img {
  transform: scale(1.1);
}

.recent-post-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.recent-post-info a {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post-info a:hover {
  color: var(--primary);
}

.recent-post-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.recent-post-info span::before {
  content: '\f017';
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
}

.hizmet-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hizmet-sidebar-list li {
  margin-bottom: 0;
}

.hizmet-sidebar-list li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
}

.hizmet-sidebar-list li:last-child a {
  border-bottom: none;
}

.hizmet-sidebar-list li a:hover,
.hizmet-sidebar-list li.active a {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 1.25rem;
}

.hizmet-sidebar-list li a i {
  color: var(--primary);
  width: 20px;
  flex-shrink: 0;
}

.contact-widget {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.contact-widget h4 {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.contact-widget h4 i {
  color: var(--white);
}

.contact-widget p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sidebar-phone i {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.contact-widget .btn {
  margin-top: 0.5rem;
}

/* ==========================================================================
   20. BLOG DETAY SAYFASI
   ========================================================================== */
.blog-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.blog-detail-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.blog-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-detail-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 0.9375rem;
  flex-wrap: wrap;
}

.blog-detail-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-detail-meta i {
  color: var(--primary);
}

.blog-detail-article h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.blog-detail-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.blog-detail-body p {
  margin-bottom: 1.25rem;
}

.blog-detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
}

.blog-detail-tags {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog-detail-tags i {
  color: var(--primary);
}

.blog-detail-tags a {
  background: var(--bg-light);
  color: var(--text-muted);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  transition: var(--transition);
}

.blog-detail-tags a:hover {
  background: var(--primary);
  color: var(--white);
}

/* Medical Disclaimer */
.blog-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 2rem;
}

.blog-disclaimer i {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.blog-disclaimer p {
  margin: 0;
  font-size: 0.9rem;
  color: #92400e;
  line-height: 1.6;
}

.related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.related-posts h3 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

/* ==========================================================================
   21. 404 SAYFASI
   ========================================================================== */
.error-404-content {
  text-align: center;
  padding: 4rem 0;
}

.error-404-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.error-404-content h1 {
  font-size: 6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.error-404-content h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.error-404-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.error-404-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   22. PAGINATION
   ========================================================================== */
.pagination-wrapper {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.pagination-wrapper .nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pagination-wrapper .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-dark);
  font-weight: 500;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ==========================================================================
   23. PAGE TEMPLATE
   ========================================================================== */
.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.page-featured-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2rem;
}

.page-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.page-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.page-body p {
  margin-bottom: 1.25rem;
}

.page-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   24. NO RESULTS
   ========================================================================== */
.no-results {
  text-align: center;
  padding: 4rem 0;
}

.no-results i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.no-results h3 {
  margin-bottom: 0.75rem;
}

.no-results p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ==========================================================================
   25. CONTACT FORM 7 STIL UYUMU
   ========================================================================== */
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  margin-bottom: 0.5rem;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
  outline: none;
}

.wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
}

.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(8, 145, 178, 0.4);
  width: 100%;
  min-height: 48px;
}

.wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.5);
}

.wpcf7 .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.wpcf7 .wpcf7-response-output {
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin: 1rem 0 0;
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}

.wpcf7 p {
  margin-bottom: 1rem;
}

.wpcf7 label {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

/* CF7 Form Row Layout */
.cf7-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ==========================================================================
   26. WORDPRESS SPECIFIC OVERRIDES
   ========================================================================== */
/* WordPress admin bar */
body.admin-bar .header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}

/* WordPress alignment */
.alignleft {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1.5rem 1.5rem;
}

.aligncenter {
  display: block;
  margin: 1.5rem auto;
}

/* WordPress captions */
.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
}

/* WordPress gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.gallery img {
  border-radius: var(--radius);
}

/* WordPress widgets */
.widget {
  margin-bottom: 1.5rem;
}

.widget-title {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
}

/* ==========================================================================
   27. RESPONSIVE - New Templates
   ========================================================================== */
@media (max-width: 1079px) {

  .hizmet-detail-grid,
  .blog-detail-grid {
    grid-template-columns: 1fr;
  }

  .hizmet-detail-sidebar,
  .blog-detail-sidebar {
    position: static;
  }

  .hizmet-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cf7-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hizmet-detail-header {
    flex-direction: column;
    text-align: center;
  }

  .hizmet-detail-header h1 {
    font-size: 1.5rem;
  }

  .hizmet-cta-box,
  .blog-cta-box {
    padding: 1.5rem;
  }

  .error-404-content h1 {
    font-size: 4rem;
  }

  .blog-detail-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 575px) {
  .breadcrumb-nav {
    font-size: 0.8125rem;
  }

  .error-404-buttons {
    flex-direction: column;
  }
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (Scroll Top + WhatsApp)
   ========================================================================== */
.scroll-top,
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: none;
  text-decoration: none;
}

/* Scroll to Top - en altta */
.scroll-top {
  bottom: 1.5rem;
  background: var(--primary);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* WhatsApp Float - scroll-top'un hemen ustunde */
.whatsapp-float {
  bottom: 5.5rem;
  background: #25d366;
  color: #fff;
}

.whatsapp-float:hover {
  background: #1da851;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.whatsapp-float i {
  font-size: 1.4rem;
}

/* Ara (Call) Float - WhatsApp'in ustunde */
.call-float {
  bottom: 9.5rem;
  background: var(--primary);
  color: #fff;
  position: fixed;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  animation: callPulse 2s infinite;
}

.call-float:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 150, 150, 0.35);
  color: #fff;
  animation: none;
}

@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 150, 150, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 150, 150, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 150, 150, 0);
  }
}

/* ==========================================================================
   MOBIL ALT AKSIYON BARI
   ========================================================================== */
.mobile-action-bar {
  display: none;
}

@media (max-width: 768px) {

  /* Logo mobilde biraz buyut */
  .logo img {
    height: 80px;
    max-width: 220px;
  }

  .navbar {
    min-height: 95px;
  }

  /* Yuvarlak float butonlari mobilde gizle */
  .call-float,
  .whatsapp-float,
  .scroll-top {
    display: none !important;
  }

  /* Icerigin bar arkasina gitmemesi icin */
  body {
    padding-bottom: 70px;
  }

  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
  }

  .mob-action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: filter 0.2s ease;
  }

  .mob-action-btn:active {
    filter: brightness(0.85);
    color: #fff;
  }

  .mob-action-btn i {
    font-size: 1.2rem;
  }

  .mob-action-btn span {
    line-height: 1;
  }

  .mob-call {
    background: var(--primary);
  }

  .mob-whatsapp {
    background: #25d366;
  }

  .mob-randevu {
    background: #e53e3e;
    color: #fff;
  }

  .mob-randevu:active {
    color: #fff;
  }
}

/* ==========================================================================
   HEKIMLERIMIZ - ARCHIVE & SINGLE  |  ui-ux-pro-max v2
   Palette: --primary #0891B2 | --accent #22C55E | --bg-light #F0FDFA
   ========================================================================== */

/* ---- ARCHIVE - HERO ---- */
.dr-hero {
  position: relative;
  background: linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 55%, #0CB8DB 100%);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.dr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.dr-hero-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.dr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.dr-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.dr-hero-desc {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}
.dr-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
}
.dr-hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ---- ARCHIVE - GRID SECTION ---- */
.dr-grid-section {
  padding: 4rem 0 5rem;
  background: var(--bg-light);
}

/* CSS Grid - 3 sutun, 4. kart alt satira iner */
.dr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 991px) {
  .dr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .dr-grid { grid-template-columns: 1fr; }
}

/* ---- ARCHIVE - KART ---- */
.dr-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(8,145,178,.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
}
.dr-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 30px rgba(8,145,178,.18);
}

/* Link wrapper */
.dr-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  outline-offset: 2px;
}
.dr-card-link:focus-visible {
  outline: 3px solid var(--primary);
  border-radius: var(--radius-xl);
}

/* Fotograf alani - 4:3 sabit oran */
.dr-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e4f4f8;
  flex-shrink: 0;
}
.dr-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
}
.dr-card:hover .dr-card-img img {
  transform: scale(1.06);
}
.dr-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ecfdb;
}

/* Overlay - hover'da gorunen CTA */
.dr-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,145,178,.88) 0%, rgba(8,145,178,.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dr-card:hover .dr-card-overlay { opacity: 1; }
.dr-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: 99px;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* Kart alt bilgi */
.dr-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.dr-card-unvan {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(8,145,178,.1);
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
  width: fit-content;
}
.dr-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0.15rem 0 0;
  line-height: 1.3;
}
.dr-card-uzmanlik {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 0;
}

/* Bos durum */
.dr-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 0;
  color: #a0c4cc;
}
.dr-empty svg { display: block; margin: 0 auto 1rem; }
.dr-empty p { font-size: 1rem; color: var(--text-muted); }

/* ---- ARCHIVE - CTA BANT ---- */
.dr-cta-band {
  background: linear-gradient(135deg, var(--text-dark) 0%, #0c5e59 100%);
  padding: 3.5rem 0;
}
.dr-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.dr-cta-text h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.4rem;
}
.dr-cta-text p {
  color: rgba(255,255,255,.78);
  margin: 0;
  font-size: 0.97rem;
  max-width: 480px;
}
.dr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.dr-cta-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  color: #fff;
}
.dr-cta-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
@media (max-width: 640px) {
  .dr-cta-inner { flex-direction: column; text-align: center; }
  .dr-cta-text p { max-width: 100%; }
}

/* ---- SINGLE - BREADCRUMB ---- */
.dr-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}
.dr-breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.dr-breadcrumb-list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.dr-breadcrumb-list a:hover { color: var(--primary-dark); }
.dr-breadcrumb-list svg { color: var(--border); flex-shrink: 0; }
.dr-breadcrumb-list [aria-current="page"] { color: var(--text-muted); }

/* ---- SINGLE - LAYOUT ---- */
.dr-single-section {
  padding: 3rem 0 5rem;
  background: var(--bg-light);
  min-height: 60vh;
}
.dr-single-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .dr-single-wrap { grid-template-columns: 1fr; }
}

/* ---- SINGLE - SOL KOLON (Fotograf) ---- */
.dr-single-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 100px;
}
@media (max-width: 768px) {
  .dr-single-left { position: static; }
}

.dr-single-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #d4eef5;
  aspect-ratio: 3 / 4;
  max-height: 380px;
  box-shadow: 0 4px 20px rgba(8,145,178,.15);
}
.dr-single-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.dr-single-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8ec8d8;
}
.dr-single-photo-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(9,23,35,.75);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.15);
}

/* Stat cipleri */
.dr-stat-chips {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dr-stat-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
}
.dr-stat-chip svg { color: var(--primary); flex-shrink: 0; }

/* Aksiyon butonlar */
.dr-single-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.dr-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.4rem;
  border-radius: 99px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  min-height: 44px;
}
.dr-btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}
.dr-btn-primary:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}
.dr-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 0.82rem 1.4rem;
  border-radius: 99px;
  border: 1.5px solid var(--primary);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  min-height: 44px;
}
.dr-btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.dr-btn-outline:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* ---- SINGLE - SAG KOLON (Bilgi) ---- */
.dr-single-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dr-single-header {
  margin-bottom: 1.5rem;
}
.dr-single-name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 0.45rem;
  line-height: 1.2;
}
.dr-single-uzmanlik {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 1.2rem;
}
.dr-single-uzmanlik svg { flex-shrink: 0; }
.dr-single-divider {
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 99px;
}

/* Icerik */
.dr-single-content {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.85;
}
.dr-single-content h2,
.dr-single-content h3,
.dr-single-content h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.5rem 0 0.5rem;
}
.dr-single-content h2:first-child,
.dr-single-content h3:first-child {
  margin-top: 0;
}
.dr-single-content ul,
.dr-single-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.dr-single-content li { margin-bottom: 0.45rem; }
.dr-single-content p { margin-bottom: 1rem; }
.dr-single-content p:last-child { margin-bottom: 0; }

.dr-single-empty-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}

/* Bilgi karti */
.dr-info-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}
.dr-info-card-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
.dr-info-card-row:last-child { border-bottom: none; }
.dr-info-card-row svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.dr-info-card-row div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.dr-info-card-row strong {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-dark);
}
.dr-info-card-row span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- @media - Mobil ince ayar ---- */
@media (max-width: 768px) {
  .dr-single-section { padding: 2rem 0 3rem; }
  .dr-single-photo-wrap { max-height: 300px; aspect-ratio: 4 / 3; }
  .dr-single-name { font-size: 1.6rem; }
  .dr-hero { padding: 3.5rem 0 3rem; }
}

/* prefers-reduced-motion: animasyonlari kapat */
@media (prefers-reduced-motion: reduce) {
  .dr-card,
  .dr-card-img img,
  .dr-card-overlay,
  .dr-btn-primary,
  .dr-btn-outline,
  .dr-cta-btn {
    transition: none !important;
    transform: none !important;
  }
}

/* Telefon linki - bilgi karti */
.dr-info-phone-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: color 0.15s ease;
}
.dr-info-phone-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ==========================================================================
   CONTACT FORM 7 - TEMA UYUMLULUGU
   ========================================================================== */

/* CF7 span sarmalayicilarini flex layout icin duzelt */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* CF7 form-row icindeki span'lar */
.form-group .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* CF7 p etiketlerindeki ekstra bosluklar - sadece margin sifirla */
.wpcf7 form p {
  margin: 0 !important;
  padding: 0 !important;
}
.wpcf7 form br {
  display: none;
}

/* form-row 2 kolonlu grid */
.wpcf7 .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* form-group bosluk */
.wpcf7 .form-group {
  margin-bottom: 1rem;
}

.wpcf7 .form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

/* Responsive */
@media (max-width: 576px) {
  .wpcf7 .form-row {
    grid-template-columns: 1fr;
  }
}

/* CF7 input/select/textarea - form-control stilini garanti et */
.wpcf7 .form-control,
.wpcf7 input.form-control,
.wpcf7 select.form-control,
.wpcf7 textarea.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition-fast);
  outline: none;
  appearance: auto;
}

.wpcf7 .form-control:focus,
.wpcf7 input.form-control:focus,
.wpcf7 select.form-control:focus,
.wpcf7 textarea.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15);
}

/* CF7 submit butonu */
.wpcf7 input[type="submit"].btn,
.wpcf7 .btn.btn-primary.btn-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.wpcf7 input[type="submit"].btn:hover,
.wpcf7 .btn.btn-primary.btn-lg:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* CF7 hata mesajlari */
.wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: block;
}

.wpcf7-not-valid.form-control {
  border-color: #ef4444 !important;
}

/* CF7 basari/hata bildirimleri */
.wpcf7-response-output {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.wpcf7-mail-sent-ok {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* CF7 acceptance checkbox duzeni */
.wpcf7 .kvkk-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.wpcf7 .kvkk-check .wpcf7-form-control-wrap {
  display: inline;
  width: auto;
}

.wpcf7 .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

/* CF7 yukleniyor spinner */
.wpcf7 .ajax-loader {
  display: inline-block;
  margin-left: 0.5rem;
}

