/* ==========================================================================
   ÖZEL EDREMİT TIBBİ HİZMETLER - ANA CSS
   Profesyonel Evde Tıbbi Hizmetler Web Sitesi
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS DEĞİŞKENLERİ (Custom Properties)
   -------------------------------------------------------------------------- */
:root {
  /* Ana Renkler */
  --primary: #0891B2;
  --primary-dark: #0E7490;
  --primary-light: #22D3EE;
  --secondary: #22D3EE;
  --accent: #22C55E;
  --accent-dark: #16A34A;

  /* Nötr 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;

  /* Gölgeler */
  --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;

  /* Geçişler */
  --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;
  -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;
}

.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. ÜST BAR (Top Bar)
   -------------------------------------------------------------------------- */
.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;
}

.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 & NAVİGASYON
   -------------------------------------------------------------------------- */
.header {
  background: #FFFFFF;
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  min-height: 80px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 60px;
  width: auto;
}

.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 Sütun) */
.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;
  z-index: 1;
}

.hero-slide {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.95) 0%, rgba(15, 118, 110, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
  padding: 2rem 0;
}

.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. HİZMETLER BÖLÜMÜ
   -------------------------------------------------------------------------- */
.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 BÖLÜMÜ
   -------------------------------------------------------------------------- */
.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;
}

/* Misyon Vizyon Kartları */
.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;
}

/* İstatistikler - 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 BİZ?
   -------------------------------------------------------------------------- */
.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 BÖLÜMÜ
   -------------------------------------------------------------------------- */
.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. GÖRÜŞ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. İLETİŞİM & 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;
  height: 250px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 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. ANİMASYONLAR
   -------------------------------------------------------------------------- */
@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. RESPONSİVE TASARIM - TÜM CİHAZLAR
   ========================================================================== */

/* --------------------------------------------------------------------------
   17.1 BÜYÜK EKRANLAR (1440px ve üzeri - iMac, Geniş Monitör)
   -------------------------------------------------------------------------- */
@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 / MASAÜSTÜ (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 KÜÇÜK (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;
  }

  .dropdown-menu {
    width: 860px;
  }

  .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 satırda kalsın */
  .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 KÜÇÜK (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 - Mobile Layout */
  .top-bar {
    padding: 0.375rem 0;
    font-size: 0.6875rem;
  }

  .top-bar-content {
    justify-content: center;
  }

  .top-bar-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .top-bar-item {
    gap: 0.25rem;
  }

  /* Hide 7/24 text on mobile */
  .top-bar-item:last-child {
    display: none;
  }

  .top-bar-right {
    display: none;
  }

  /* 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: 200px;
  }

  /* Footer */
  .footer {
    padding-top: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a {
    justify-content: center;
  }

  .footer-contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 1rem;
  }

  /* Scroll Top */
  .scroll-top {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
  }
}

/* --------------------------------------------------------------------------
   17.6 MOBİL (575px ve altı)
   -------------------------------------------------------------------------- */
@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 ÇOK KÜÇÜK MOBİL (375px ve altı)
   -------------------------------------------------------------------------- */
@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. HİZMET 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 li {
  margin-bottom: 0.5rem;
}

.hizmet-detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
}

/* CTA Box */
.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);
}

.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);
}

.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 STİL 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;
  }
}