/* ============================================
   SABİT ALT BUTONLAR (Telefon + WhatsApp)
   ============================================ */
.fixed-phone-btn {
  position: fixed;
  bottom: 20px;
  left: 16px;
  z-index: 9990;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 13px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(10,61,98,.35);
  transition: all .25s ease;
  white-space: nowrap;
}
.fixed-phone-btn i { font-size: 1rem; }
.fixed-phone-btn:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(10,61,98,.45);
}

.fixed-wp-btn {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 9990;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all .25s ease;
}
.fixed-wp-btn:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

@media (max-width: 480px) {
  .fixed-phone-btn {
    font-size: .78rem;
    padding: 11px 14px;
    gap: 6px;
  }
}

/* ============================================
   HAK İŞİTME CİHAZLARI - ANA STİL DOSYASI
   Tasarım: Güven Odaklı Sağlık Estetiği
   ============================================ */

/* CSS Variables */
:root {
  --navy:      #0a3d62;
  --navy-dark: #071f35;
  --teal:      #0d6e8f;
  --teal-lt:   #1a9abd;
  --gold:      #e8a020;
  --gold-lt:   #f5bc50;
  --cream:     #faf8f5;
  --white:     #ffffff;
  --gray-100:  #f4f6f8;
  --gray-200:  #e8ecf0;
  --gray-400:  #9aa5b0;
  --gray-600:  #5a6473;
  --gray-800:  #2d3748;
  --text:      #1a2535;

  --font-display: 'Outfit', sans-serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 20px rgba(10,61,98,.10);
  --shadow-lg: 0 12px 40px rgba(10,61,98,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}


/* 7/24 Yanıp Sönen Badge */
.hours-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: rgba(255,255,255,.9);
}
.hours-badge i { font-size: .85rem; }

.pulse-dot {
  width: 9px; height: 9px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  animation: pulse-glow 1.2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.8); transform: scale(1); }
  50%  { box-shadow: 0 0 0 7px rgba(74,222,128,0); transform: scale(1.15); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); transform: scale(1); }
}

/* Footer içi - beyaz arka plan üzerinde */
.hours-badge-dark {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
}
.hours-badge-dark .pulse-dot {
  animation: pulse-glow-dark 1.2s ease-in-out infinite;
}
@keyframes pulse-glow-dark {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.9); background: #22c55e; transform: scale(1); }
  50%  { box-shadow: 0 0 0 6px rgba(74,222,128,0); background: #4ade80; transform: scale(1.2); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); background: #22c55e; transform: scale(1); }
}

/* ---- Reset ---- */
*, *::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); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }

/* ---- Typography ---- */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--gold); border-radius: 2px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px;
  
}
.section-desc { font-size: 1.05rem; color: var(--gray-600); max-width: 600px; line-height: 1.75; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.text-center .section-label { justify-content: center; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--navy-dark); color: rgba(255,255,255,.85);
  font-size: .82rem; padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,.85); transition: color var(--transition); }
.topbar a:hover { color: var(--gold); }
.topbar i { margin-right: 5px; color: var(--gold); }
.wp-btn {
  background: #25d366; color: #fff !important; padding: 4px 12px;
  border-radius: 20px; font-weight: 500; transition: background var(--transition);
}
.wp-btn:hover { background: #128c7e; color: #fff !important; }

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--white);
  position: sticky; top: 0; z-index: 900;
  box-shadow: 0 2px 12px rgba(10,61,98,.08);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(10,61,98,.14); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 24px;
}
.header-right {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 14px; }
.logo-icon {
  width: 50px; height: 50px; background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.1;  }
.logo-sub { font-size: .68rem; color: var(--gray-400); font-weight: 400; letter-spacing: .02em; }

/* Nav */
.nav {
  display: flex; align-items: center; gap: 2px;
}
.nav a {
  font-size: .88rem; font-weight: 500; color: var(--gray-700);
  padding: 8px 12px; border-radius: 8px;
  transition: all var(--transition); position: relative; white-space: nowrap;
}
.nav a:hover { color: var(--navy); background: var(--gray-100); }
.nav a.active { color: var(--navy); font-weight: 600; }
.nav a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px; background: var(--gold); border-radius: 2px;
}

.btn-header {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff; padding: 10px 20px; border-radius: 10px;
  font-size: .88rem; font-weight: 600; white-space: nowrap;
  transition: all var(--transition); box-shadow: 0 4px 14px rgba(10,61,98,.25);
}
.btn-header:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,61,98,.35); }
.btn-header i { margin-left: 6px; }


/* Hamburger butonu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px; height: 42px;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 10000;
  transition: background .2s, border-color .2s;
  padding: 0; gap: 0;
}
.hamburger:hover,
.hamburger.open { background: var(--navy); border-color: var(--navy); }
.hamburger:hover .hb-line,
.hamburger.open .hb-line { background: #fff; }

.hb-line {
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  position: absolute;
  transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .22s ease, width .25s ease;
}
.hb-line:nth-child(1) { transform: translateY(-6px); }
.hb-line:nth-child(2) { transform: translateY(0); }
.hb-line:nth-child(3) { transform: translateY(6px); width: 14px; }
.hamburger.open .hb-line:nth-child(1) { transform: translateY(0) rotate(45deg); }
.hamburger.open .hb-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hb-line:nth-child(3) { transform: translateY(0) rotate(-45deg); width: 20px; }

/* Header sağ grup — yukarıda tanımlı */

/* ============================================
   MOBİL DRAWER — body seviyesinde
   ============================================ */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%; bottom: 0;
  width: min(300px, 85vw);
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -6px 0 32px rgba(7,31,53,.18);
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-drawer.open { right: 0; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,20,40,.6);
  z-index: 9998;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s ease;
}
.drawer-overlay.active { visibility: visible; opacity: 1; }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  background: var(--navy-dark);
  flex-shrink: 0;
  position: sticky; top: 0; z-index: 2;
}
.drawer-logo {
  display: flex; align-items: center; gap: 10px;
}
.drawer-logo span { color: #fff; font-weight: 700; font-size: .92rem; }
.drawer-close {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.drawer-close:hover { background: rgba(255,255,255,.28); }

.drawer-links { display: flex; flex-direction: column; flex: 1; }
.drawer-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 20px;
  font-size: .94rem; font-weight: 500;
  color: var(--gray-800);
  border-bottom: 1px solid #f0f2f5;
  text-decoration: none;
  transition: background .15s, color .15s, padding-left .15s;
}
.drawer-links a i { width: 18px; text-align: center; color: var(--teal); font-size: .9rem; }
.drawer-links a:hover { background: #f4f6f8; color: var(--navy); padding-left: 26px; }
.drawer-links a.active { background: rgba(10,61,98,.05); color: var(--navy); font-weight: 700; }
.drawer-links a.active i { color: var(--gold); }

.drawer-lang {
  padding: 14px 18px;
  border-bottom: 1px solid #f0f2f5;
  background: #f8fafc;
}
.drawer-lang-label {
  display: block; font-size: .7rem; font-weight: 700;
  color: #9aa5b0; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 8px;
}
.drawer-lang-btns { display: flex; gap: 6px; }
.drawer-lang-btns .lang-btn {
  flex: 1; padding: 7px 4px; font-size: .78rem; text-align: center;
  background: #fff; color: var(--navy);
  border: 1.5px solid var(--gray-200); border-radius: 7px;
  font-weight: 700; cursor: pointer; transition: all .18s;
}
.drawer-lang-btns .lang-btn.active { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.drawer-lang-btns .lang-btn:hover:not(.active) { background: var(--navy); color: #fff; border-color: var(--navy); }

.drawer-cta {
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px;
  background: #f4f6f8;
  border-top: 1px solid #e8ecf0;
}
.drawer-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: 11px;
  font-size: .92rem; font-weight: 700;
  text-decoration: none; transition: all .2s;
}
.drawer-cta-navy { background: var(--navy); color: #fff; }
.drawer-cta-navy:hover { background: var(--teal); }
.drawer-cta-wp { background: #25d366; color: #fff; }
.drawer-cta-wp:hover { background: #128c7e; }

/* Masaüstünde hamburger ve drawer gizle */
@media (min-width: 769px) {
  .hamburger { display: none !important; }
  .mobile-drawer { display: none !important; }
  .drawer-overlay { display: none !important; }
  .nav { display: flex !important; }
}

/* Mobilde nav gizle, hamburger göster */
@media (max-width: 768px) {
  .nav { display: none !important; }
  .hamburger { display: flex !important; }
  .btn-header { display: none; }
}


/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--teal) 100%);
  min-height: 88vh; display: flex; align-items: center; position: relative;
  padding: 80px 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
}
.hero-wave svg { width: 100%; height: 60px; display: block; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: 8px 16px; border-radius: 30px; font-size: .82rem;
  font-weight: 500; margin-bottom: 20px; 
}
.hero-badge i { color: var(--gold); }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px;
  
}
.hero-title span { color: var(--gold); }
.hero-desc { color: rgba(255,255,255,.82); font-size: 1.08rem; line-height: 1.75; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy-dark); padding: 14px 28px;
  border-radius: 12px; font-weight: 700; font-size: .95rem;
  transition: all var(--transition); box-shadow: 0 4px 20px rgba(232,160,32,.4);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,32,.5); }
.btn-outline {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4);
  padding: 12px 26px; border-radius: 12px; font-weight: 600; font-size: .95rem;
  transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat { color: #fff; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1;  }
.hero-stat span { font-size: .82rem; color: rgba(255,255,255,.65); }

/* Hero Card */
.hero-card {
  background: rgba(255,255,255,.08); 
  border: 1px solid rgba(255,255,255,.15); border-radius: 24px;
  padding: 32px; color: #fff;
}
.hero-card-title {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px; 
}
.hero-card-title i { color: var(--gold); }
.hero-card-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.hcf { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.06); border-radius: 12px; padding: 14px 16px; }
.hcf-icon { width: 40px; height: 40px; background: rgba(232,160,32,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.hcf-text { font-size: .9rem; font-weight: 500; }
.hcf-text small { display: block; color: rgba(255,255,255,.55); font-size: .78rem; font-weight: 400; margin-top: 2px; }
.hero-card-cta {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.1); border-radius: 14px; padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.15);
}
.hero-card-cta span { font-size: .88rem; color: rgba(255,255,255,.8); }
.hero-card-cta strong { display: block; font-size: 1.1rem; color: #fff; }
.btn-cta-sm {
  background: var(--gold); color: var(--navy-dark); padding: 10px 18px;
  border-radius: 10px; font-weight: 700; font-size: .88rem; white-space: nowrap;
  transition: all var(--transition);
}
.btn-cta-sm:hover { background: var(--gold-lt); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar { background: var(--navy); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; }
.stat-item { background: var(--navy); text-align: center; padding: 28px 20px; }
.stat-item:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.stat-item:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px;  }
.stat-label { color: rgba(255,255,255,.65); font-size: .85rem; }

/* ============================================
   WHY US
   ============================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.why-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 32px; transition: all var(--transition); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal)); transform: scaleX(0); transition: transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 60px; height: 60px; background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem; margin-bottom: 20px;
}
.why-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px;  }
.why-card p { color: var(--gray-600); font-size: .92rem; line-height: 1.7; }

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center; transition: all var(--transition);
  box-shadow: var(--shadow);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-icon {
  width: 72px; height: 72px; border-radius: 20px; display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(10,61,98,.08), rgba(13,110,143,.12));
  color: var(--navy); transition: all var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--navy), var(--teal)); color: #fff; }
.service-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px;  }
.service-card p { color: var(--gray-600); font-size: .9rem; line-height: 1.7; }

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid var(--gray-200);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-img {
  height: 200px; background: linear-gradient(135deg, var(--navy-dark), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(255,255,255,.3); position: relative;
}
.product-img i { font-size: 5rem; color: rgba(255,255,255,.25); }
.product-badge {
  position: absolute; top: 14px; left: 14px; background: var(--gold);
  color: var(--navy-dark); font-size: .72rem; font-weight: 700; padding: 4px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .05em;
}
.product-body { padding: 24px; }
.product-brand { font-size: .78rem; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.product-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px;  }
.product-desc { font-size: .88rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.product-price { font-size: .88rem; color: var(--gray-600); margin-bottom: 16px; }
.product-price strong { color: var(--navy); font-size: 1rem; }
.btn-product {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gray-100); color: var(--navy); padding: 10px 18px;
  border-radius: 10px; font-size: .88rem; font-weight: 600; transition: all var(--transition); width: 100%; justify-content: center;
}
.btn-product:hover { background: var(--navy); color: #fff; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-family: var(--font-display); font-size: 5rem;
  color: var(--gold); opacity: .25; position: absolute; top: 8px; left: 24px;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: .9rem; margin-bottom: 14px; }
.testimonial-text { color: var(--gray-600); line-height: 1.75; font-size: .95rem; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; font-weight: 600; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: var(--navy); font-size: .92rem; }
.testimonial-city { font-size: .8rem; color: var(--gray-400); }

/* ============================================
   BLOG
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-img {
  height: 180px; background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); font-size: 3rem;
}
.blog-body { padding: 24px; }
.blog-date { font-size: .78rem; color: var(--gray-400); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.blog-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.35;  }
.blog-title a { transition: color var(--transition); }
.blog-title a:hover { color: var(--teal); }
.blog-excerpt { font-size: .88rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.blog-link { font-size: .88rem; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.blog-link:hover { gap: 10px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--teal));
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,160,32,.1) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-section .section-label { color: var(--gold); justify-content: center; }
.cta-section .section-title { color: #fff; }
.cta-section .section-desc { color: rgba(255,255,255,.75); margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: var(--navy-dark); padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 1rem; transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 70px 0; text-align: center; color: #fff; position: relative;
}
/* page-hero::after kaldırıldı - stacking context yaratıyordu */
.page-hero-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 14px;  }
.page-hero-desc { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; font-size: .85rem; color: rgba(255,255,255,.55); }
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: .65rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; margin-top: 48px; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 20px; }
.contact-info p { color: var(--gray-600); line-height: 1.75; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon { width: 46px; height: 46px; background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.contact-item-text span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); font-weight: 600; margin-bottom: 2px; }
.contact-item-text a, .contact-item-text p { color: var(--navy); font-weight: 500; font-size: .95rem; margin: 0; }

/* Form */
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); }
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-radius: 10px; font-family: var(--font-body); font-size: .92rem; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition); background: var(--gray-100);
}
.form-control:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,110,143,.12); background: var(--white); }
textarea.form-control { resize: vertical; min-height: 130px; }
.btn-submit { width: 100%; }
.btn-submit-main {
  background: linear-gradient(135deg, var(--navy), var(--teal)); color: #fff;
  padding: 14px; border-radius: 12px; font-size: 1rem; font-weight: 700;
  transition: all var(--transition); box-shadow: 0 4px 20px rgba(10,61,98,.25);
}
.btn-submit-main:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,61,98,.35); }
.alert { padding: 14px 18px; border-radius: 10px; font-size: .92rem; margin-bottom: 16px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ============================================
   BLOG SINGLE
   ============================================ */
.blog-content { max-width: 800px; margin: 0 auto; }
.blog-content-body { font-size: 1.05rem; line-height: 1.85; color: var(--gray-800); }
.blog-content-body h2 { font-family: var(--font-display); color: var(--navy); font-size: 1.5rem; margin: 32px 0 14px; }
.blog-content-body p { margin-bottom: 18px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-placeholder {
  height: 420px; background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  font-size: 7rem; color: rgba(255,255,255,.2);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px; background: var(--gold);
  color: var(--navy-dark); border-radius: var(--radius); padding: 20px;
  text-align: center; box-shadow: var(--shadow-lg);
}
.about-badge strong { display: block; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge span { font-size: .8rem; font-weight: 600; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; }
.about-feature-text h4 { font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.about-feature-text p { font-size: .9rem; color: var(--gray-600); }

/* ============================================
   MAP
   ============================================ */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-top: 48px; height: 420px; background: var(--gray-200); display: flex; align-items: center; justify-content: center; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy-dark); position: relative; border-top: 4px solid var(--teal); }
.footer-wave { display: none; }
.footer-wave svg { display: none; }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo .logo-icon { background: rgba(255,255,255,.1); }
.footer-logo .logo-main { color: #fff; }
.footer-logo .logo-sub { color: rgba(255,255,255,.4); }
.footer-desc { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); font-size: .9rem;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 600; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); border-radius: 2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col ul a i { font-size: .65rem; color: var(--gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; font-size: .9rem; }
.footer-contact li a, .footer-contact li { color: rgba(255,255,255,.65); font-size: .88rem; }
.footer-contact li a:hover { color: var(--gold); }
.btn-wp-footer {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  background: #25d366; color: #fff; padding: 11px 18px; border-radius: 10px;
  font-weight: 600; font-size: .88rem; margin-top: 18px; transition: background var(--transition);
}
.btn-wp-footer:hover { background: #128c7e; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================
   KAYAN YAN PANEL (Telefon + WA + IG + Kart)
   ============================================ */
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 998; display: flex; flex-direction: column;
  border-radius: 16px 0 0 16px; overflow: hidden;
  box-shadow: -4px 0 30px rgba(10,61,98,.2);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
  display: flex; align-items: center; gap: 0;
  text-decoration: none; overflow: hidden; border: none;
  font-family: var(--font-body); cursor: pointer;
}
  width: 48px; height: 56px; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0; color: #fff;
}
  display: flex; flex-direction: column; padding: 0 14px 0 2px;
  white-space: nowrap; overflow: hidden;
  max-width: 0; opacity: 0;
  transition: max-width .3s ease, opacity .25s ease;
}
  width: 48px; height: 34px; background: rgba(0,0,0,.28); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); font-size: .78rem; transition: .2s; font-family: inherit;
}


/* ============================================
   ÖDEME BANNER (Sayfa içi)
   ============================================ */
.payment-banner {
  background: #fff; border-radius: 20px; padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); flex-wrap: wrap;
}
.pb-left { display: flex; align-items: center; gap: 20px; flex: 1; }
.pb-icon {
  width: 60px; height: 60px; background: linear-gradient(135deg,#1d4ed8,#3b82f6);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; flex-shrink: 0;
}
.pb-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pb-desc  { font-size: .88rem; color: var(--gray-600); line-height: 1.6; }
.pb-cards { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.pb-card-item { font-size: 2rem; color: var(--gray-600); transition: color .2s; }
.pb-card-item:hover { color: var(--navy); }
.pb-tag {
  background: var(--gray-100); border: 1px solid var(--gray-200); color: var(--gray-800);
  font-size: .72rem; font-weight: 700; padding: 5px 10px; border-radius: 8px;
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
}
.pb-tag i { color: var(--teal); }
@media(max-width:768px) {
  .payment-banner { flex-direction: column; align-items: flex-start; }
  .pb-cards { justify-content: flex-start; }
}
/* ============================================
   ÖDEME YÖNTEMLERİ
   ============================================ */
.payment-methods {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.payment-methods span {
  font-size: .75rem; color: rgba(255,255,255,.4); white-space: nowrap;
}
.payment-icons { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pay-icon {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; padding: 4px 8px; display: flex; align-items: center;
  justify-content: center; transition: background .2s;
}
.pay-icon:hover { background: rgba(255,255,255,.15); }
.pay-icon i { font-size: 1.5rem; color: rgba(255,255,255,.75); }
.pay-icon-text {
  font-size: .65rem; font-weight: 700; color: rgba(255,255,255,.65);
  letter-spacing: .04em; padding: 5px 8px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed; bottom: 24px; right: 20px; z-index: 999;
  width: 44px; height: 44px; background: var(--navy); color: #fff;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: all var(--transition); opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--teal); transform: translateY(-2px); }


/* ============================================
   DİL SEÇİCİ
   ============================================ */
.lang-switcher {
  display: flex; align-items: center; gap: 4px;
}
.lang-btn {
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1.5px solid var(--gray-200);
  padding: 4px 9px;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: .04em;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1.6;
}
.lang-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.lang-btn.active { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

/* Mobil drawer içi dil seçici */
.nav-mobile-lang {
  display: none;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #f8fafc;
}
.nav-lang-label {
  display: block;
  font-size: .7rem; font-weight: 700; color: #9aa5b0;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px;
}
.lang-switcher-mobile { gap: 6px; }
.lang-switcher-mobile .lang-btn {
  flex: 1; padding: 8px 4px; font-size: .78rem; text-align: center;
  background: #fff; color: var(--navy); border-color: var(--gray-200);
}
.lang-switcher-mobile .lang-btn.active { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

/* RTL desteği (Arapça) */
body.rtl {
  direction: rtl;
  text-align: right;
}
body.rtl .topbar-inner { flex-direction: row-reverse; }
body.rtl .topbar-left { flex-direction: row-reverse; }
body.rtl .topbar-right { flex-direction: row-reverse; }
body.rtl .header-inner { flex-direction: row-reverse; }
body.rtl .nav { flex-direction: row-reverse; }
body.rtl .logo { flex-direction: row-reverse; }
body.rtl .section-label { flex-direction: row-reverse; }
body.rtl .why-card, body.rtl .service-card { text-align: right; }
body.rtl .footer-grid { direction: rtl; }
body.rtl .footer-col ul a { flex-direction: row-reverse; }
body.rtl .contact-grid { direction: rtl; }
body.rtl .form-row { direction: rtl; }
body.rtl .hero-btns { flex-direction: row-reverse; }
body.rtl .hero-stats { flex-direction: row-reverse; }

@media (max-width: 768px) {
  .lang-switcher:not(.lang-switcher-mobile) { gap: 3px; }
  .lang-switcher:not(.lang-switcher-mobile) .lang-btn { padding: 3px 7px; font-size: .66rem; }
  .nav-mobile-lang { display: block !important; }
}
@media (max-width: 480px) {
  #langSwitcher { display: none; }
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp .6s ease both; }
.fade-in-d1 { animation-delay: .1s; }
.fade-in-d2 { animation-delay: .2s; }
.fade-in-d3 { animation-delay: .3s; }
.fade-in-d4 { animation-delay: .4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .services-grid, .products-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
  .hero { min-height: auto; padding: 60px 0 80px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Mobil drawer CSS'e taşındı */
@media (max-width: 768px) {
  .topbar-right .wp-btn { display: none; }
  .topbar-left a:last-child { display: none; }
  .btn-header { display: none; }
  .hamburger { display: flex; }
  .why-grid, .services-grid, .products-grid, .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 20px; }
  .section { padding: 56px 0; }

  /* Nav drawer -> mobile-drawer olarak taşındı */

  .nav-mobile-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 18px !important;
    background: #0a3d62 !important;
    flex-shrink: 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 2 !important;
  }
  .nav-mobile-logo { display: flex !important; align-items: center !important; gap: 10px !important; }
  .nav-mobile-logo span { color: #fff !important; font-weight: 700 !important; font-size: .9rem !important; }
  .nav-mobile-logo .logo-icon { background: rgba(255,255,255,.15) !important; color: #fff !important; width: 36px !important; height: 36px !important; font-size: .95rem !important; }

  .nav-close-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important; height: 34px !important;
    background: rgba(255,255,255,.15) !important;
    border: 1px solid rgba(255,255,255,.25) !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 1rem !important;
    cursor: pointer !important;
  }

  .nav a {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    font-size: .95rem;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    width: 100%;
    gap: 10px;
  }
  .nav a::before { display: none; }
  .nav a::after { display: none; }
  .nav a:hover, .nav a.active { background: #f4f6f8; color: #0a3d62; }

  .nav-mobile-cta {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 18px !important;
    margin-top: auto !important;
    background: #f4f6f8 !important;
    border-top: 1px solid #e8ecf0 !important;
  }
}



@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}
