/* =============================
   Uygar Altun DMD Kampanya Sitesi
   ============================= */

/* ---------- Custom Properties ---------- */
:root {
  --primary:        #AEC559;
  --primary-dark:   #6b8a2a;
  --primary-deep:   #2d4b10;
  --primary-light:  #d6e9a0;
  --primary-faint:  #f0f7e0;
  --bg:             #f5f9ee;
  --card:           #ffffff;
  --text:           #1a2e06;
  --text-muted:     #5a7a30;
  --border:         #c8dfa0;
  --shadow:         rgba(44, 74, 16, 0.10);
  --shadow-md:      rgba(44, 74, 16, 0.18);
  --radius:         14px;
  --radius-sm:      8px;
  --radius-pill:    999px;
  --font-head:      'Poppins', sans-serif;
  --font-body:      'Nunito', sans-serif;
  --transition:     0.22s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-ring {
  width: 48px; height: 48px;
  border: 4px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Container ---------- */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245, 249, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 860px;
  margin: 0 auto;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-deep);
}
.site-logo span.accent { color: var(--primary-dark); }
.logo-badge {
  background: var(--primary);
  color: var(--primary-deep);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lang-toggle {
  display: flex;
  gap: 4px;
  background: var(--primary-faint);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
}
.lang-btn {
  padding: 4px 14px;
  border: none; border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.8rem;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.lang-btn.active {
  background: var(--primary);
  color: var(--primary-deep);
}

/* ---------- Hero ---------- */
#hero {
  position: relative;
  padding-top: 96px;
  background: linear-gradient(160deg, #f0f7e2 0%, #f5f9ee 60%, #e8f3d5 100%);
  overflow: hidden;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 20px 48px;
  gap: 28px;
}
.hero-photo-wrap {
  position: relative;
  width: 160px; height: 160px;
}
.hero-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary);
  box-shadow: 0 0 0 6px var(--primary-light), 0 8px 32px var(--shadow-md);
}
.hero-badge {
  display: none;
  position: absolute;
  bottom: 4px; right: 4px;
  background: var(--primary-deep);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
  border: 2px solid #fff;
}
.hero-name {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--primary-deep);
  line-height: 1.15;
}
.hero-name em {
  display: block;
  font-style: normal;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 560px;
  line-height: 1.7;
}
.hero-desc strong { color: var(--primary-deep); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--primary);
  color: var(--primary-deep);
  box-shadow: 0 4px 14px rgba(174,197,89,0.4);
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; box-shadow: 0 6px 20px rgba(107,138,42,0.4); }
.btn-outline {
  background: transparent;
  color: var(--primary-deep);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-faint); }
.btn-edevlet {
  background: var(--primary-deep);
  color: #fff;
  box-shadow: 0 4px 14px var(--shadow-md);
}
.btn-edevlet:hover { background: #1a2e06; box-shadow: 0 6px 20px var(--shadow-md); }

/* ---------- Section Commons ---------- */
section { padding: 64px 0; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 700;
  color: var(--primary-deep);
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 36px;
}
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px auto 32px;
  justify-content: center;
}
.divider-line {
  width: 40px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.divider-leaf {
  color: var(--primary-dark);
  font-size: 0.95rem;
}

/* ---------- Hero Donate Widget ---------- */
.hero-donate {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 18px 20px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 8px 32px var(--shadow-md);
}
.hero-donate-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.hd-tab {
  flex: 1;
  padding: 7px 4px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.hd-tab.active {
  background: var(--primary);
  color: var(--primary-deep);
  border-color: var(--primary);
}
.hd-panel { display: none; }
.hd-panel.active {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.hd-iban {
  font-family: 'Courier New', monospace;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
  word-break: break-all;
}
.hd-copy {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 16px;
  background: var(--primary);
  color: var(--primary-deep);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.hd-copy:hover { background: var(--primary-dark); color: #fff; }
.hd-copy.copied { background: var(--primary-deep); color: #fff; }
.hd-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.hd-meta-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hd-meta-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-deep);
}
.hd-meta-sep {
  color: var(--border);
  font-size: 1rem;
}
.hd-meta-bank {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.hd-official {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.hd-official i {
  color: var(--primary-dark);
  margin-top: 2px;
  flex-shrink: 0;
}
.hd-official strong { color: var(--text); }
.hd-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}
.hd-online {
  display: flex;
  gap: 7px;
}
.hd-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  flex: 1;
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  background: var(--primary-faint);
  border: 1.5px solid var(--border);
  color: var(--primary-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  transition: all var(--transition);
}
.hd-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.hd-btn-sms {
  background: #fff8e1;
  border-color: #f59e0b;
  color: #92610a;
}
.hd-btn-sms:hover {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #1a1a1a;
}

/* ---------- SMS Banner ---------- */

.sms-strip-wrap {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-deep));
  padding: 56px 20px;
  position: relative;
  overflow: hidden;
}
.sms-strip-wrap::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: url("../images/fıstık.png") center/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.sms-banner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.sms-banner .imessage-mockup { flex-shrink: 0; }
.sms-banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  max-width: 360px;
}
.sms-banner-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
}
.sms-banner-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #fff;
  line-height: 1.2;
}
.sms-banner-highlight { color: var(--primary-light); }
.sms-banner-note {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}
.sms-banner-note strong { color: #fff; }
.sms-banner-btn { align-self: flex-start; }
/* iMessage Mockup */
.imessage-mockup {
  display: block;
  width: 100%; max-width: 280px;
  background: #f2f2f7;
  border-radius: 36px;
  overflow: hidden;
  border: 8px solid #1c1c1e;
  box-shadow:
    0 0 0 1px #3a3a3c,
    0 20px 48px rgba(0,0,0,0.22);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.imessage-mockup:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 0 0 1px #3a3a3c, 0 28px 56px rgba(0,0,0,0.28);
}
/* Status bar */
.imessage-statusbar {
  background: #fff;
  padding: 6px 16px 2px;
  display: flex; align-items: center; justify-content: space-between;
}
.imessage-status-time {
  font-size: 0.7rem; font-weight: 700; color: #1c1c1e;
}
.imessage-status-icons {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.6rem; color: #1c1c1e;
}
/* Nav header */
.imessage-header {
  background: #fff;
  border-bottom: 0.5px solid #c8c8cc;
  padding: 6px 12px 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.imessage-back {
  color: #007aff; font-size: 0.78rem; font-weight: 500;
  display: flex; align-items: center; gap: 2px;
}
.imessage-back-label { font-size: 0.78rem; }
.imessage-info { color: #007aff; font-size: 0.88rem; }
.imessage-contact {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.imessage-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #8e8e93;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
}
.imessage-contact-name {
  font-size: 0.68rem; color: #1c1c1e; font-weight: 600;
}
/* Message body */
.imessage-body {
  padding: 14px 12px 8px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 3px;
  min-height: 90px; justify-content: flex-end;
}
.imessage-time {
  font-size: 0.58rem; color: #8e8e93;
  text-align: center; width: 100%; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.imessage-bubble {
  background: #34c759;
  color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 9px 16px;
  border-radius: 18px 18px 4px 18px;
  letter-spacing: 0.06em;
}
.imessage-delivered {
  font-size: 0.55rem; color: #8e8e93;
  margin-top: 1px;
}
/* Input bar */
.imessage-bar {
  background: #fff;
  border-top: 0.5px solid #c8c8cc;
  padding: 8px 10px;
  display: flex; align-items: center; gap: 7px;
}
.imessage-input {
  flex: 1;
  background: #fff;
  border: 1px solid #c8c8cc;
  border-radius: 18px;
  padding: 6px 12px;
}
.imessage-placeholder {
  font-size: 0.82rem; color: #3c3c43; font-weight: 500;
}
.imessage-send {
  width: 28px; height: 28px; border-radius: 50%;
  background: #34c759;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; flex-shrink: 0;
}
/* ---------- Story ---------- */
#hikaye { background: var(--card); }
.story-card {
  background: var(--primary-faint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  line-height: 1.85;
  font-size: 1.02rem;
  color: var(--text);
}
.story-card p + p { margin-top: 14px; }
.story-card strong { color: var(--primary-deep); }
.story-highlight {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}

/* ---------- SSS / FAQ ---------- */
#sss { background: var(--card); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--primary-deep);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ""; }
.faq-chevron {
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--primary-dark);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ---------- Valilik Onayı ---------- */
.valilik-card {
  background: var(--card);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 32px 36px;
  text-align: center;
}
.valilik-card-logo {
  margin: 0 auto 20px;
  height: 44px;
  width: auto;
}
.valilik-card-text {
  max-width: 620px;
  margin: 0 auto 22px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}
.valilik-card-text strong { color: var(--primary-deep); }
.valilik-card-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.valilik-card-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.valilik-card-meta-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.valilik-card-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.valilik-card-meta-value {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

/* ---------- E-Devlet Sorgulama ---------- */
#edevlet { background: var(--bg); }
.edevlet-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.edevlet-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.edevlet-step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-deep);
  font-family: var(--font-head);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.edevlet-step-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 4px;
}
.edevlet-step-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.edevlet-step-body strong { color: var(--primary-deep); }
.edevlet-cta { display: flex; justify-content: center; }

/* ---------- Kampanya Durumu ---------- */
#kampanya-durumu { background: var(--card); }
.campaign-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: 0 8px 32px var(--shadow-md);
}
.campaign-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.campaign-card-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.campaign-percent {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--primary-dark);
}
.campaign-progress-track {
  width: 100%;
  height: 10px;
  background: var(--primary-faint);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 22px;
}
.campaign-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-pill);
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.campaign-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.campaign-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--primary-faint);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.campaign-stat-label {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}
.campaign-stat-value {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 1.05rem;
}
.campaign-cta {
  display: flex;
  justify-content: center;
  margin: 22px auto 0;
  width: fit-content;
}

/* ---------- IBAN Section ---------- */
#bagis-tr, #bagis-yurtdisi { background: var(--bg); }

.bank-header {
  background: var(--card);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 14px;
}
.bank-header-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.bank-header-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bank-header-item-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary-faint);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.bank-header-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 2px;
}
.bank-header-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.bank-header-faaliyet {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.bank-header-instruction {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-deep);
  background: var(--primary-faint);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
}
.iban-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.iban-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 16px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
  user-select: none;
  position: relative;
  overflow: hidden;
}
.iban-card::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--primary-faint);
  opacity: 0;
  transition: opacity var(--transition);
}
.iban-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px var(--shadow-md);
  transform: translateY(-2px);
}
.iban-card:hover::after { opacity: 1; }
.iban-card:active { transform: translateY(0); }
.iban-card.copied { border-color: var(--primary-dark); }
.iban-card.copied::after { opacity: 1; background: #e6f4ea; }
.iban-icon-wrap {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.25rem;
  position: relative; z-index: 1;
}
.iban-icon-tl    { background: #e63946; }
.iban-icon-usd   { background: #16a34a; }
.iban-icon-eur   { background: #2563eb; }
.iban-icon-swift { background: #1e293b; }
.iban-icon-int   { background: #7c3aed; }
.iban-icon-ref   { background: #0284c7; }
.iban-info { flex: 1; min-width: 0; position: relative; z-index: 1; }
.iban-label {
  font-weight: 700;
  font-size: 0.87rem;
  color: var(--text);
  margin-bottom: 5px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.iban-copy-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--primary-faint);
  border: 1px solid var(--border);
  padding: 1px 7px;
  border-radius: var(--radius-pill);
}
.iban-card:hover .iban-copy-hint {
  background: var(--primary);
  color: var(--primary-deep);
  border-color: var(--primary);
}
.iban-value {
  font-family: 'Courier New', monospace;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
  word-break: break-all;
}
.iban-card.copied .iban-value { color: var(--primary-deep); }
.bank-note {
  padding: 12px 16px;
  background: var(--primary-faint);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ---------- Online Payments ---------- */
#online { background: var(--card); }
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.payment-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: var(--primary-faint);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.payment-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-md);
}
.payment-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.payment-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-deep);
}
.payment-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.payment-btn {
  margin-top: auto;
  width: 100%;
}
.sms-icon { color: #f59e0b; }
.btn-sms {
  background: var(--primary);
  color: var(--primary-deep);
  box-shadow: 0 4px 14px rgba(174,197,89,0.4);
}
.btn-sms:hover { background: var(--primary-dark); color: #fff; box-shadow: 0 6px 20px rgba(107,138,42,0.4); }

/* ---------- Social ---------- */
#sosyal { background: var(--bg); }
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.social-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.social-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow);
}
.social-icon { font-size: 2rem; flex-shrink: 0; }
.social-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary-deep);
}
.social-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Basında Biz (Press Slider) ---------- */
#basinda-biz { background: var(--card); }
.press-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}
.press-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 12px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.press-slider::-webkit-scrollbar { display: none; }
.press-card {
  scroll-snap-align: start;
  flex: 0 0 280px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.press-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow);
}
.press-card-source {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.press-card-title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 14px;
}
.press-card-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-deep);
}
.press-nav {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--primary-deep);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.press-nav:hover { background: var(--primary-faint); border-color: var(--primary); }

/* ---------- Toast ---------- */
.toast-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9000;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: var(--primary-deep);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.88rem;
  box-shadow: 0 4px 16px var(--shadow-md);
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(.2,2,.2,1);
  max-width: 260px;
}
.toast.show { transform: translateX(0); }

/* ---------- Footer ---------- */
footer {
  background: var(--primary-deep);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 36px 20px;
}
footer .footer-official-badge {
  display: inline-flex;
  background: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  box-shadow: 0 2px 8px var(--shadow);
}
footer .footer-official-badge img {
  height: 32px;
  width: auto;
  display: block;
}
footer .footer-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-light);
  margin-bottom: 8px;
}
footer .footer-detail {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 16px;
}
footer .footer-edevlet {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem;
  color: var(--primary-light);
  border-bottom: 1px solid var(--primary-light);
  opacity: 0.8;
  transition: opacity var(--transition);
}
footer .footer-edevlet:hover { opacity: 1; }
.footer-copy {
  margin-top: 20px;
  font-size: 0.75rem;
  opacity: 0.45;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Font Awesome Icon Sizing ---------- */
.payment-icon i {
  font-size: 2.2rem;
  color: var(--primary-dark);
}
.social-icon i {
  font-size: 1.9rem;
  color: var(--primary-dark);
}

/* ---------- Pistachio Hero Decorations ---------- */
.pistachio-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
#hero .hero-inner { position: relative; z-index: 1; }
.p-deco {
  position: absolute;
  opacity: 0.30;
}
.p-deco-1 { width: 150px; top: 4%;   left: 1%;   animation: floatA 7s ease-in-out infinite; }
.p-deco-2 { width: 110px; top: 6%;   right: 2%;  animation: floatB 9s ease-in-out infinite 1.5s; }
.p-deco-3 { width: 80px;  bottom: 5%; right: 6%; animation: floatA 8s ease-in-out infinite 3s; }
.p-deco-4 { width: 65px;  bottom: 12%; left: 6%; animation: floatB 10s ease-in-out infinite 0.5s; }

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(10deg); }
  50% { transform: translateY(-10px) rotate(-5deg); }
}

/* ---------- Section Watermark ---------- */
#hikaye, #bagis-yurtdisi { position: relative; overflow: hidden; }
#hikaye::after, #bagis-yurtdisi::after {
  content: '';
  position: absolute;
  bottom: -24px; right: -24px;
  width: 200px; height: 260px;
  background: url("../images/fıstık.png") center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Responsive (Mobile First) ---------- */
@media (max-width: 780px) {
  .sms-banner { flex-direction: column; text-align: center; gap: 28px; }
  .sms-banner-content { align-items: center; text-align: center; }
  .sms-banner-btn { align-self: center; }
}
@media (max-width: 600px) {
  .sms-strip-wrap { padding: 40px 16px; }
  .imessage-mockup { max-width: 100%; }
  .header-inner { padding: 12px 16px; }
  .site-logo { font-size: 0.9rem; }
  .hero-inner { padding: 40px 16px 36px; gap: 20px; }
  .hero-photo, .hero-photo-wrap { width: 130px; height: 130px; }
  section { padding: 44px 0; }
  .story-card { padding: 20px 16px; font-size: 0.97rem; }
  .valilik-card { padding: 22px 18px; }
  .valilik-card-meta { gap: 20px; }
  .bank-header { padding: 14px 16px; }
  .bank-header-name { font-size: 1.05rem; }
  .iban-grid { grid-template-columns: 1fr; gap: 10px; }
  .iban-card { padding: 14px 14px; gap: 13px; }
  .iban-icon-wrap { width: 44px; height: 44px; font-size: 1.1rem; }
  .iban-value { font-size: 0.82rem; }
  .payment-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .press-slider-wrap { padding: 0 12px; gap: 4px; }
  .press-card { flex-basis: 240px; padding: 16px 18px; }
  .press-nav { width: 30px; height: 30px; }
  .faq-question { padding: 14px 16px; font-size: 0.9rem; }
  .faq-answer { padding: 0 16px 16px; font-size: 0.88rem; }
  .edevlet-step { padding: 14px 16px; gap: 12px; }
  .edevlet-step-num { width: 30px; height: 30px; font-size: 0.9rem; }
  .campaign-card { padding: 20px 18px; }
  .campaign-percent { font-size: 1.4rem; }
  .campaign-stat { padding: 12px 14px; }
  .campaign-stat-value { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .toast-container { right: 12px; bottom: 16px; left: 12px; }
  .toast { max-width: 100%; }
  .pistachio-bg { display: none; }
}
