/* ========================================================
   AMERIKA'DA DOĞUM YAP — Modern UI
   Bilgilendirme portalı tonu, pembe-mor pastel palet
   ======================================================== */

:root {
  --primary: #ee91cb;
  --primary-deep: #d65fa6;
  --secondary: #d8b1f2;
  --secondary-deep: #b485e6;
  --accent: #f28bc2;
  --soft-pink: #fef0f8;
  --soft-purple: #f5edff;
  --gradient: linear-gradient(135deg, #f28bc2 0%, #d8b1f2 100%);
  --gradient-soft: linear-gradient(135deg, #fef0f8 0%, #f5edff 100%);
  --gradient-deep: linear-gradient(135deg, #d65fa6 0%, #b485e6 100%);
  --dark: #2d1f3d;
  --text: #4a3a55;
  --muted: #87726e;
  --border: rgba(238, 145, 203, 0.18);
  --border-strong: rgba(238, 145, 203, 0.35);
  --card-bg: #ffffff;
  --bg: #fafaff;
  --shadow: 0 12px 40px rgba(214, 95, 166, 0.08);
  --shadow-lg: 0 24px 60px rgba(214, 95, 166, 0.12);
  --display: 'Sora', 'Inter', sans-serif;
  --body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100vw; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; position: relative; }
a { color: inherit; text-decoration: none; transition: color .25s; }
a:hover { color: var(--primary-deep); }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background:
    linear-gradient(135deg, rgba(238,145,203,0.10) 0%, rgba(216,177,242,0.10) 100%),
    rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.hd-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }

/* Logo: arka plan yok, logonun kendisi gradient renkte (CSS mask) */
.logo { display: inline-flex; align-items: center; gap: 10px; padding: 4px 0; transition: all .3s; }
.logo:hover { transform: translateY(-2px); }
.logo .logo-mask {
  display: inline-block;
  width: 220px;
  height: 80px;
  /* Daha koyu, belirgin gradient */
  background: linear-gradient(135deg, #b8438a 0%, #9a5fd0 100%);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  /* Drop-shadow ile kalın/kontur etkisi */
  filter: drop-shadow(0.5px 0 0 #b8438a) drop-shadow(-0.5px 0 0 #b8438a) drop-shadow(0 0.5px 0 #b8438a) drop-shadow(0 -0.5px 0 #b8438a) drop-shadow(0 3px 6px rgba(184,67,138,0.35));
  transition: all .3s;
}
.logo:hover .logo-mask { filter: drop-shadow(0.5px 0 0 #b8438a) drop-shadow(-0.5px 0 0 #b8438a) drop-shadow(0 0.5px 0 #b8438a) drop-shadow(0 -0.5px 0 #b8438a) drop-shadow(0 6px 14px rgba(184,67,138,0.50)); transform: scale(1.02); }
.logo span { font-family: var(--display); font-weight: 800; font-size: 24px; background: var(--gradient-deep); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.3px; }

/* Nav menu */
.nav-menu { display: flex; gap: 6px; align-items: center; }
.nav-menu a { padding: 9px 16px; border-radius: 100px; font-weight: 600; font-size: 13.5px; color: var(--text); transition: all .25s; }
.nav-menu a:hover { background: var(--soft-pink); color: var(--primary-deep); }
.nav-menu a.active { background: var(--gradient); color: #fff; }

/* Header CTA — "Bize Danışın" buton (modal aç) */
.hd-cta { padding: 11px 22px; background: var(--gradient); color: #fff !important; border: none; border-radius: 100px; font-weight: 700; font-size: 13.5px; box-shadow: 0 8px 22px rgba(238,145,203,0.4); display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-family: inherit; transition: all .25s; }
.hd-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(238,145,203,0.55); color: #fff !important; }

/* === FLOAT BUTTONS (sağ alt sabit, hep görünür) === */
.float-actions {
  position: fixed !important;
  right: 22px; bottom: 22px;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  pointer-events: auto;
}
.float-btn {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex !important; align-items: center; justify-content: center;
  font-size: 24px; color: #fff !important; text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  transition: all .25s ease;
  position: relative;
}
.float-btn::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid currentColor; opacity: 0; animation: floatPulse 2.2s infinite;
}
@keyframes floatPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}
.float-btn:hover { transform: translateY(-4px) scale(1.05); color: #fff; }
.float-wa { background: #25d366; }
.float-wa:hover { box-shadow: 0 16px 36px rgba(37,211,102,0.5); }
.float-tel { background: var(--gradient); }
.float-tel:hover { box-shadow: 0 16px 36px rgba(238,145,203,0.55); }

/* === MODAL — Bize Danışın === */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(45,31,61,0.65); backdrop-filter: blur(6px); z-index: 1100; padding: 20px; overflow-y: auto; }
.modal-overlay.active { display: flex; align-items: flex-start; justify-content: center; padding-top: 8vh; }
.modal { background: #fff; border-radius: 24px; max-width: 540px; width: 100%; box-shadow: 0 30px 80px rgba(0,0,0,0.3); overflow: hidden; animation: modalIn .35s cubic-bezier(.2,.85,.4,1.275); }
@keyframes modalIn { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-head { padding: 24px 28px; background: var(--gradient); color: #fff; display: flex; justify-content: space-between; align-items: center; }
.modal-head h3 { font-family: var(--display); font-weight: 800; font-size: 20px; margin: 0; display: flex; align-items: center; gap: 10px; }
.modal-close { background: rgba(255,255,255,0.2); border: none; color: #fff; width: 38px; height: 38px; border-radius: 50%; font-size: 16px; cursor: pointer; transition: all .25s; }
.modal-close:hover { background: rgba(255,255,255,0.35); transform: rotate(90deg); }
.modal-body { padding: 28px; }
.modal-body p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.modal-quick { display: flex; gap: 10px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px dashed var(--border); }
.modal-quick a { flex: 1; padding: 14px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 13.5px; transition: all .25s; }
.modal-quick a:hover { transform: translateY(-2px); }
.modal-quick .qwa { background: #25d366; color: #fff !important; }
.modal-quick .qwa:hover { background: #1eb558; color: #fff !important; }
.modal-quick .qtel { background: var(--soft-pink); color: var(--primary-deep) !important; border: 1px solid var(--border-strong); }
.modal-quick .qtel:hover { background: var(--gradient); color: #fff !important; }

.menu-toggle { display: none; background: var(--soft-pink); border: 1px solid var(--border); width: 42px; height: 42px; border-radius: 50%; font-size: 17px; cursor: pointer; color: var(--primary-deep); align-items: center; justify-content: center; }
.menu-overlay { display: none; position: fixed; inset: 0; background: rgba(45,31,61,0.5); backdrop-filter: blur(4px); z-index: 998; }
.menu-overlay.active { display: block; }

/* === BUTTONS === */
.btn { padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: 14.5px; transition: all .3s; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; border: none; text-decoration: none; }
.btn-primary { background: var(--gradient); color: #fff !important; box-shadow: 0 14px 30px rgba(238,145,203,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(238,145,203,0.55); color: #fff !important; }
.btn-secondary { background: #fff; color: var(--primary-deep) !important; border: 2px solid var(--border-strong); }
.btn-secondary:hover { border-color: var(--primary); background: var(--soft-pink); color: var(--primary-deep) !important; }
.btn-white { background: #fff; color: var(--primary-deep) !important; }
.btn-white:hover { transform: translateY(-2px); color: var(--primary-deep) !important; }
.btn-outline { background: transparent; color: #fff !important; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff !important; }
.btn-white-outline { background: rgba(255,255,255,0.12); color: #fff !important; border: 2px solid rgba(255,255,255,0.5); backdrop-filter: blur(8px); }
.btn-white-outline:hover { background: rgba(255,255,255,0.25); border-color: #fff; transform: translateY(-2px); }

/* === HERO SLIDER === */
.hero-slider { position: relative; height: 640px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,0.62) 0%, rgba(45,31,61,0.55) 50%, rgba(214,95,166,0.30) 100%); }
.hero-slide-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero-slide-inner { width: 100%; color: #fff; max-width: 720px; }
.hero-text-col { max-width: 720px; }

/* Hero form — slider üstüne sabit overlay */
.hero-form-overlay { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 360px; z-index: 6; }
.hero-form-card { background: rgba(255,255,255,0.97); border-radius: 18px; padding: 22px 22px 18px; box-shadow: 0 24px 60px rgba(0,0,0,.35); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.3); }
.hero-form-card h3 { font-family: var(--display); font-size: 22px; font-weight: 800; color: var(--dark); margin: 0 0 4px; letter-spacing: -.5px; }
.hero-form-card p { color: var(--muted); font-size: 12.5px; margin: 0 0 14px; line-height: 1.5; }
.hero-form-card form { display: flex; flex-direction: column; gap: 9px; position: relative; }
.hero-form-card input, .hero-form-card textarea { width: 100%; padding: 11px 13px; background: var(--soft-pink); border: 1px solid var(--border); border-radius: 9px; font-family: inherit; font-size: 13px; color: var(--text); box-sizing: border-box; }
.hero-form-card input:focus, .hero-form-card textarea:focus { outline: none; border-color: var(--primary-deep); background: #fff; }
.hero-form-card textarea { resize: vertical; min-height: 70px; max-height: 140px; }
.hero-form-card .btn { width: 100%; justify-content: center; padding: 12px 16px; margin-top: 4px; }
.hero-form-msg { padding: 9px 12px; border-radius: 8px; font-size: 12.5px; margin-bottom: 10px; }
.hero-form-msg.ok { background: #dcfce7; color: #15803d; }
.hero-form-msg.err { background: #fee2e2; color: #b91c1c; }

@media (max-width: 1100px) {
  .hero-form-overlay { right: 3%; width: 320px; }
  .hero-slide-inner { max-width: calc(100% - 360px); }
}

/* Mobil/tablet: form slider'ın altına düşsün, slider relative olsun */
@media (max-width: 880px) {
  .hero-slider { height: auto !important; min-height: 0 !important; padding-bottom: 0; position: relative; }
  .hero-slide { position: absolute; inset: 0; height: 60vh; min-height: 380px; }
  .hero-slide.active { position: relative; opacity: 1; }
  .hero-slide:not(.active) { opacity: 0; pointer-events: none; visibility: hidden; }
  .hero-form-overlay { position: relative; right: auto; top: auto; transform: none; width: 100%; max-width: 100%; padding: 24px 16px 32px; background: linear-gradient(180deg, var(--soft-pink) 0%, #fff 100%); }
  .hero-form-card { padding: 22px 20px 18px; max-width: 480px; margin: 0 auto; box-shadow: 0 12px 32px rgba(0,0,0,.12); }
  .hero-slide-inner { max-width: 100%; }
  .hero-slide-content h1 { font-size: 30px !important; line-height: 1.15; }
  .hero-slide-content p { font-size: 14px; margin-bottom: 18px; }
  .hero-arrow { width: 40px; height: 40px; font-size: 14px; }
  .hero-arrow.prev { left: 10px; }
  .hero-arrow.next { right: 10px; }
  .hero-dots { bottom: 14px; }
}
@media (max-width: 600px) {
  .hero-slide { height: 55vh; min-height: 340px; }
  .hero-slide-content h1 { font-size: 24px !important; margin-bottom: 12px; }
  .hero-slide-content p { font-size: 13.5px; }
  .hero-cta .btn { padding: 10px 16px; font-size: 13px; }
  .hero-form-card h3 { font-size: 20px; }
}
.hero-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3); border-radius: 100px; font-size: 12.5px; font-weight: 700; color: #fff; margin-bottom: 22px; backdrop-filter: blur(8px); }
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); } 50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); } }
.hero-slide-content h1 { font-family: var(--display); font-size: 54px; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 22px; color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.hero-slide-content p { font-size: 18px; margin-bottom: 32px; max-width: 580px; opacity: 0.95; line-height: 1.6; text-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.hero-dot { width: 36px; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: all .3s; padding: 0; }
.hero-dot.active { background: #fff; width: 56px; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.18); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); color: #fff; cursor: pointer; font-size: 18px; transition: all .3s; }
.hero-arrow:hover { background: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.08); }
.hero-arrow.prev { left: 30px; }
.hero-arrow.next { right: 30px; }

/* === PAGE HERO (alt sayfalar için kompakt) === */
.page-hero { position: relative; padding: 80px 0 70px; background: var(--gradient-soft); overflow: hidden; text-align: center; }
.page-hero::before { content: ''; position: absolute; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(238,145,203,0.18), transparent 70%); top: -100px; right: -120px; }
.page-hero::after  { content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(216,177,242,0.18), transparent 70%); bottom: -100px; left: -100px; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--display); font-size: 44px; font-weight: 800; color: var(--dark); letter-spacing: -1px; margin-bottom: 14px; }
.page-hero p { font-size: 16px; color: var(--text); max-width: 700px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 18px; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--primary-deep); font-weight: 600; }
.breadcrumb i { font-size: 11px; opacity: 0.6; }

/* === SECTIONS === */
.section { padding: 90px 0; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--soft-pink); border: 1px solid var(--border); border-radius: 100px; font-size: 12px; font-weight: 700; color: var(--primary-deep); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.section-title { font-family: var(--display); font-size: 40px; font-weight: 800; color: var(--dark); letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; }
.section-subtitle { font-size: 16px; color: var(--text); max-width: 640px; margin-bottom: 50px; }
.section-head { text-align: center; }
.section-head .section-subtitle { margin: 0 auto 50px; }

/* === HİZMETLER GRID === */
.hizmet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hizmet-kart { background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; transition: all .3s; position: relative; overflow: hidden; }
.hizmet-kart::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.hizmet-kart:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.hizmet-kart:hover::before { transform: scaleX(1); }
.hk-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary-deep); margin-bottom: 20px; transition: all .3s; }
.hizmet-kart:hover .hk-icon { background: var(--gradient); color: #fff; }
.hizmet-kart h3 { font-family: var(--display); font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
.hizmet-kart p { font-size: 13.5px; color: var(--text); margin-bottom: 18px; line-height: 1.55; }
.hk-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--primary-deep); }
.hk-link i { transition: transform .25s; }
.hizmet-kart:hover .hk-link i { transform: translateX(4px); }

/* === DETAY (TEK SAYFA) === */
.detay-grid { display: grid; grid-template-columns: 2.5fr 1fr; gap: 50px; align-items: flex-start; }
.detay-content { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 40px; box-shadow: var(--shadow); }
.detay-content h1, .detay-content h2 { font-family: var(--display); color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.detay-content h1 { font-size: 32px; }
.detay-content h2 { font-size: 24px; margin-top: 30px; }
.detay-content h3 { font-size: 19px; margin: 24px 0 12px; color: var(--primary-deep); font-family: var(--display); }
.detay-content p { margin-bottom: 14px; line-height: 1.75; font-size: 15px; }
.detay-content ul, .detay-content ol { padding-left: 22px; margin-bottom: 14px; }
.detay-content li { margin-bottom: 8px; line-height: 1.7; font-size: 14.5px; }
.detay-content strong { color: var(--primary-deep); }
.detay-image { width: 100%; height: auto; border-radius: 14px; margin-bottom: 24px; box-shadow: var(--shadow); }
.detay-sidebar { position: sticky; top: 100px; }
.sb-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; margin-bottom: 20px; box-shadow: var(--shadow); }
.sb-card h4 { font-family: var(--display); font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--soft-pink); }
.sb-list { list-style: none; }
.sb-list li { padding: 10px 0; border-bottom: 1px dashed var(--border); }
.sb-list li:last-child { border-bottom: none; }
.sb-list a { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--text); }
.sb-list a:hover { color: var(--primary-deep); }
.sb-list a i { color: var(--primary); font-size: 11px; transition: transform .25s; }
.sb-list a:hover i { transform: translateX(3px); }

/* === BİLGİ ŞERİDİ === */
.info-strip { background: var(--gradient); padding: 50px 0; color: #fff; }
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.info-item i { font-size: 30px; margin-bottom: 10px; opacity: 0.95; }
.info-item h4 { font-family: var(--display); font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.info-item p { font-size: 12.5px; opacity: 0.92; }

/* === HAKKIMIZDA === */
.hakkimizda { background: var(--gradient-soft); }
.hk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hk-image { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.hk-image img { width: 100%; height: 100%; object-fit: cover; }
.hk-text h2 { font-family: var(--display); font-size: 36px; font-weight: 800; color: var(--dark); letter-spacing: -1px; margin-bottom: 20px; line-height: 1.2; }
.hk-text p { color: var(--text); margin-bottom: 14px; font-size: 14.5px; }
.hk-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.hk-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; font-weight: 600; }
.hk-feat i { color: var(--primary-deep); font-size: 16px; margin-top: 2px; }

/* === ŞEHİR / KART GRID === */
.sehir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sehir-kart { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; display: flex; align-items: center; gap: 16px; transition: all .25s; }
.sehir-kart:hover { background: var(--soft-pink); border-color: var(--primary); transform: translateY(-3px); }
.sehir-kart .sk-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; color: var(--primary-deep); font-size: 18px; flex-shrink: 0; }
.sehir-kart h4 { font-family: var(--display); font-size: 14.5px; font-weight: 700; color: var(--dark); }

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-kart { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); transition: all .3s; display: flex; flex-direction: column; }
.blog-kart:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; background: var(--gradient-soft); position: relative; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { display: inline-block; padding: 4px 11px; background: var(--soft-pink); color: var(--primary-deep); border-radius: 100px; font-size: 10.5px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.4px; align-self: flex-start; }
.blog-kart h3 { font-family: var(--display); font-size: 16.5px; font-weight: 800; color: var(--dark); line-height: 1.35; margin-bottom: 14px; flex: 1; }
.blog-link { font-size: 13px; font-weight: 700; color: var(--primary-deep); display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; }

/* === SSS / FAQ === */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: box-shadow .25s; }
.faq-item.open { box-shadow: var(--shadow); }
.faq-q { width: 100%; padding: 18px 22px; background: none; border: none; cursor: pointer; text-align: left; display: flex; justify-content: space-between; align-items: center; font-family: var(--body); font-size: 14.5px; font-weight: 700; color: var(--dark); }
.faq-q i { transition: transform .3s; color: var(--primary-deep); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 22px 18px; font-size: 14px; color: var(--text); line-height: 1.7; }

/* === ILETISIM === */
.iletisim-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.iletisim-bilgi { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 32px; box-shadow: var(--shadow); }
.il-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--border); }
.il-row:last-child { border-bottom: none; }
.il-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; color: var(--primary-deep); font-size: 17px; flex-shrink: 0; }
.il-row strong { display: block; color: var(--dark); font-size: 13px; margin-bottom: 4px; }
.il-row span, .il-row a { font-size: 13.5px; color: var(--text); }
.il-form { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 32px; box-shadow: var(--shadow); }
.fld { margin-bottom: 16px; }
.fld label { display: block; font-size: 12.5px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.fld input, .fld textarea, .fld select { width: 100%; padding: 12px 14px; background: var(--soft-pink); border: 1px solid var(--border); border-radius: 10px; font-size: 14px; font-family: inherit; color: var(--text); transition: all .25s; }
.fld input:focus, .fld textarea:focus, .fld select:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(238,145,203,0.15); }
.fld textarea { min-height: 120px; resize: vertical; }
.harita { width: 100%; height: 360px; border-radius: 18px; border: 1px solid var(--border); margin-top: 20px; }

/* === CTA === */
.cta { background: var(--gradient-deep); padding: 70px 0; color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.1), transparent); border-radius: 50%; top: -50%; left: 10%; }
.cta::after  { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.1), transparent); border-radius: 50%; bottom: -50%; right: 10%; }
.cta-inner { position: relative; z-index: 1; }
.cta h2 { font-family: var(--display); font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.cta p { font-size: 16px; opacity: 0.95; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer { background: var(--dark); color: #fff; padding: 70px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.foot-col h4 { font-family: var(--display); font-size: 15px; font-weight: 800; margin-bottom: 18px; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; }
.foot-col ul { list-style: none; }
.foot-col li { padding: 6px 0; }
.foot-col a { color: rgba(255,255,255,0.65); font-size: 13.5px; transition: color .25s; }
.foot-col a:hover { color: var(--primary); }
.foot-about { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .25s; }
.foot-social a:hover { background: var(--gradient); transform: translateY(-3px); }
.foot-iletisim li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.75); font-size: 13.5px; padding: 8px 0; }
.foot-iletisim i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }
.foot-bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,0.5); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hk-grid, .iletisim-grid, .detay-grid { grid-template-columns: 1fr; gap: 40px; }
  .hizmet-grid, .blog-grid, .sehir-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-slider { height: 520px; }
  .hero-slide-content h1 { font-size: 42px; }
  .nav-menu { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 8px; max-width: 100%; }
  .hd-row { gap: 4px; padding: 10px 0; flex-wrap: nowrap; }
  /* Mobilde logo gradient renkli, biraz daha büyük */
  .logo { padding: 4px 0; gap: 5px; flex-shrink: 1; min-width: 0; margin-left: 6px; }
  .logo .logo-mask { width: 180px; height: 64px; }
  .logo span { font-size: 15px; }
  /* Bize Danışın butonu hamburger'a bitişik (sağa yaslı) */
  .hd-cta { margin-left: auto; padding: 8px 11px; font-size: 12px; flex-shrink: 0; }
  .hd-cta span { display: none; } /* sadece icon */
  .hd-cta i { margin: 0; }
  .menu-toggle { display: inline-flex !important; flex-shrink: 0; width: 40px; height: 40px; font-size: 16px; margin-right: 12px; }
  /* Mobil float buttons — sağ alt'ta küçülerek kalır, hep görünür */
  .float-actions { right: 14px !important; bottom: 14px !important; gap: 10px; }
  .float-btn { width: 54px; height: 54px; font-size: 22px; }
  /* Mobil menü panelini biraz küçült (sola yaklaşık) */
  .nav-menu { width: 240px; padding: 70px 18px 26px; }
  /* Geniş içerik blokları taşmasın */
  .hero-slider, .section, .page-hero, .footer, .info-strip, .cta { max-width: 100vw; overflow: hidden; }
  img, iframe, video { max-width: 100%; height: auto; }
  .detay-content img { max-width: 100% !important; height: auto !important; }
  table { display: block; overflow-x: auto; max-width: 100%; }
  .modal { border-radius: 18px; }
  .modal-head { padding: 18px 20px; }
  .modal-head h3 { font-size: 17px; }
  .modal-body { padding: 20px; }
  .modal-quick { flex-direction: column; }

  /* Mobil menu — sağdan slide-in (kart görünüm, sağdan boşluklu) */
  .nav-menu {
    display: flex; position: fixed; top: 12px; right: -110%;
    width: 250px; max-width: 80vw; height: calc(100vh - 24px);
    background: #fff; flex-direction: column;
    padding: 22px 18px; gap: 4px; align-items: stretch;
    z-index: 999; border-radius: 18px;
    box-shadow: -8px 12px 40px rgba(45,31,61,0.18);
    transition: right .35s ease; overflow-y: auto;
  }
  .nav-menu.active { right: 12px; }
  .nav-menu a { padding: 13px 16px; border-radius: 10px; font-size: 14.5px; }

  /* Hero slider — mobilde tam koyu overlay (pembe yok, yazı beyaz net) */
  .hero-slider { height: 480px; }
  .hero-slide::before { background: linear-gradient(180deg, rgba(214,95,166,0.20) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.80) 100%) !important; }
  .hero-slide-content h1 { font-size: 30px; line-height: 1.15; text-shadow: 0 2px 18px rgba(0,0,0,0.7); }
  .hero-slide-content p { font-size: 14.5px; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
  .hero-arrow { display: none; }

  .page-hero { padding: 60px 0 50px; }
  .page-hero h1 { font-size: 30px; }

  .section { padding: 60px 0; }
  .section-title, .hk-text h2, .cta h2 { font-size: 28px; }
  .hizmet-grid, .blog-grid, .sehir-grid, .info-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .detay-content { padding: 24px; }
  .detay-content h1 { font-size: 24px; }
}
