/* Kaizen Analiz OSGB - Tasarım Sistemi ve Ana Stil Dosyası */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Renk Paleti (Kaizen Analiz OSGB Kurumsal Logosu Renkleri) */
  --navy-dark: #0F3329;       /* Koyu Kalkan Yeşili (Logo) */
  --navy-main: #18473B;       /* Orman Yeşili */
  --navy-light: #245E4E;
  
  --kaizen-blue: #C5A059;     /* Şampanya Gold / Kurumsal Altın */
  --kaizen-blue-hover: #B38F48;
  --kaizen-cyan: #DFC07F;     /* Açık Gold */
  
  --kaizen-gold: #C5A059;
  --kaizen-gold-hover: #B38F48;
  
  --emerald-green: #10B981;
  --emerald-hover: #059669;
  --whatsapp-green: #25D366;
  --whatsapp-hover: #128C7E;
  --amber-gold: #C5A059;
  
  --bg-slate: #0A241D;
  --bg-light: #F8F9F8;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.85);

  --text-main: #1A2E28;
  --text-muted: #576863;
  --text-light: #8B9995;
  --text-white: #FFFFFF;

  --border-light: #E4E8E6;
  --border-accent: rgba(197, 160, 89, 0.3);

  --shadow-sm: 0 2px 8px rgba(15, 51, 41, 0.04);
  --shadow-md: 0 10px 30px -5px rgba(15, 51, 41, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(15, 51, 41, 0.14);
  --shadow-glow: 0 0 25px rgba(197, 160, 89, 0.35);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 25px rgba(2, 132, 199, 0.3);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

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

/* Temel Temizlik ve Sıfırlama */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

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

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: var(--kaizen-blue);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  max-width: 100%;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #E0F2FE;
}

.text-gradient {
  background: linear-gradient(135deg, var(--kaizen-blue) 0%, var(--kaizen-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Düzen Konteynerları */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 96px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Üst Bilgilendirme Çubuğu (Top Bar) */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info-item svg {
  width: 16px;
  height: 16px;
  color: var(--kaizen-cyan);
}

.top-badge {
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-green);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--emerald-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald-green);
}

/* Ana Navigasyon (Header) */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--kaizen-gold);
  box-shadow: 0 3px 10px rgba(197, 160, 89, 0.3);
  background: #FFFFFF;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-title span {
  color: var(--kaizen-blue);
}

.logo-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-dark);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--kaizen-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--kaizen-blue);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy-dark);
}

/* Buton Tasarımları */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--kaizen-blue), var(--kaizen-blue-hover));
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.45);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-green), #16a34a);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #22c55e, #15803d);
}

.btn-outline {
  background: transparent;
  color: var(--navy-dark);
  border: 2px solid var(--navy-dark);
}

.btn-outline:hover {
  background: var(--navy-dark);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

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

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* HERO BÖLÜMÜ (Anasayfa) */
.hero {
  position: relative;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-main) 60%, var(--bg-slate) 100%);
  color: var(--text-white);
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  color: var(--text-white);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 620px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(2, 132, 199, 0.2);
  color: var(--kaizen-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-feat-text h5 {
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.hero-feat-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

/* Hero Kartı / Widget Kurgusu */
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.hero-card-header {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.hero-card-header h3 {
  color: var(--text-white);
  font-size: 1.3rem;
}

.hero-card-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* KURUMSAL ÖZET / KARTLAR */
.about-summary {
  background: var(--bg-card);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(11, 25, 44, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.experience-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--kaizen-cyan);
  line-height: 1;
}

.experience-text {
  font-size: 0.85rem;
  line-height: 1.3;
}

.management-pills {
  display: flex;
  gap: 16px;
  margin: 28px 0;
}

.mgmt-pill {
  flex: 1;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 16px;
  border-radius: var(--radius-md);
}

.mgmt-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--kaizen-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mgmt-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
}

/* HİZMET KARTLARI (GRID) */
.services-section {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--kaizen-blue), var(--kaizen-cyan));
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(2, 132, 199, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kaizen-blue);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--kaizen-blue);
  color: var(--text-white);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-list {
  margin-bottom: 28px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-list li svg {
  color: var(--emerald-green);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke-width: 3;
  padding: 2px;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--kaizen-blue);
}

.service-link svg {
  transition: var(--transition);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* İSG SÜRE HESAPLAMA WIDGET'I */
.calculator-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-main) 100%);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 40px;
  box-shadow: var(--shadow-lg);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.calc-title h3 {
  color: var(--text-white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.calc-title p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.form-label.dark {
  color: var(--navy-dark);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control.dark {
  background: var(--bg-light);
  border-color: var(--border-light);
  color: var(--navy-dark);
}

.form-control:focus {
  border-color: var(--kaizen-cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.25);
}

.form-control.dark:focus {
  border-color: var(--kaizen-blue);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

select.form-control option {
  background: var(--navy-dark);
  color: var(--text-white);
}

.calc-result-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
  border-bottom: none;
}

.result-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.result-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--kaizen-cyan);
}

/* WHATSAPP LEAD FORMU SEKSİYONU */
.lead-section {
  background: var(--bg-card);
}

.lead-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.lead-info {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-main) 100%);
  color: var(--text-white);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
}

.lead-info h2 {
  color: var(--text-white);
  margin-bottom: 16px;
}

.lead-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.whatsapp-highlight {
  width: 100%;
  background: rgba(37, 211, 102, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.whatsapp-highlight svg {
  width: 36px;
  height: 36px;
  color: var(--whatsapp-green);
  flex-shrink: 0;
}

.lead-form-container {
  padding: 48px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* KARİYER & İLETİŞİM & SİMETRİK SAĞLIK KARTLARI */
.health-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .health-services-grid {
    grid-template-columns: 1fr;
  }
}

.health-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.health-card:hover {
  transform: translateY(-4px);
  border-color: var(--kaizen-blue);
  box-shadow: var(--shadow-md);
}

.health-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.health-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--kaizen-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.health-card-title h4 {
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.health-card-title .badge-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.health-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  flex-grow: 1;
}

.health-card-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-light);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}


.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(2, 132, 199, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kaizen-blue);
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-text p, .contact-text a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  min-height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}

/* ALT BİLGİ (FOOTER) */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--kaizen-cyan);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

/* YÜZEN WHATSAPP BUTONU */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 62px;
  height: 62px;
  background: var(--whatsapp-green);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  cursor: pointer;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--whatsapp-green);
  opacity: 0.6;
  z-index: -1;
  animation: pulse-ring 2.2s infinite ease-out;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
  background: var(--whatsapp-hover);
}

.floating-whatsapp svg {
  width: 36px;
  height: 36px;
}

/* İNSAN KAYNAKLARI PORTAL STİLLERİ */
.ik-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .ik-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ik-features-grid {
    grid-template-columns: 1fr;
  }
}

.ik-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.ik-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--kaizen-blue);
  box-shadow: var(--shadow-md);
}

.ik-feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--kaizen-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ik-feature-card h4 {
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.ik-feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .positions-grid {
    grid-template-columns: 1fr;
  }
}

.position-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.position-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--kaizen-blue);
}

.position-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-green);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  align-self: flex-start;
}

.position-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--navy-dark);
}

.position-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.position-reqs {
  margin-bottom: 24px;
}

.position-reqs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 6px;
}


/* ==========================================================================
   FULL RESPONSIVE SYSTEM (TELEFON & TABLET UYUMLULUĞU)
   ========================================================================== */

/* Tablet & Küçük Ekranlar (1024px ve altı) */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .calculator-grid,
  .lead-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .health-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Orta Boy Tabletler & Mobil Menü Geçişi (992px ve altı) */
@media (max-width: 992px) {
  .header-container {
    height: 76px;
  }

  .logo-icon {
    width: 44px;
    height: 44px;
  }

  .logo-title {
    font-size: 1.15rem;
  }

  .logo-subtitle {
    font-size: 0.62rem;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px 20px 32px;
    box-shadow: 0 16px 32px rgba(15, 51, 41, 0.15);
    border-bottom: 3px solid var(--kaizen-gold);
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    gap: 0;
  }

  .nav-menu.active {
    clip-path: circle(140% at 100% 0);
  }

  .nav-menu .nav-link {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(15, 51, 41, 0.08);
  }

  .nav-menu .nav-link:last-child {
    border-bottom: none;
  }
}

/* Akıllı Telefonlar & Mobil Ekranlar (768px ve altı) */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.25;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid,
  .health-services-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .calculator-results {
    grid-template-columns: 1fr;
  }

  .lead-info,
  .lead-form-container,
  .calculator-section,
  .contact-card,
  .service-card,
  .health-card {
    padding: 24px 20px;
  }

  .about-image-wrapper img {
    height: 280px;
  }

  .management-pills {
    flex-direction: column;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* Küçük Ekran Telefonlar (480px ve altı) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .logo-title {
    font-size: 1rem;
  }

  .logo-subtitle {
    font-size: 0.58rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .section-header h2 {
    font-size: 1.55rem;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }

  .floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }

  .form-control, select.form-control {
    font-size: 16px;
    padding: 12px 14px;
  }
}
