/* ═══════════════════════════════════════════════════════════════
   FRANKENTHAL VALIDE SULTAN KIZ YURDU – Donation Page
   Light, Warm, Trust-Building Design
   Palette: Sky Blue + Warm Gold + Cream White
   Typography: Playfair Display × Inter
   ═══════════════════════════════════════════════════════════════ */

/* ── Self-hosted Fonts (DSGVO-konform) ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/playfair-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Design Tokens ── */
:root {
  /* Sky / Blue — friendly, trust-building */
  --blue-600: #2E7DBF;
  --blue-500: #3B8FD4;
  --blue-400: #5AACE6;
  --blue-300: #7EC4F0;
  --blue-200: #B3DDF8;
  --blue-100: #DCEEFB;
  --blue-50:  #EFF7FD;

  /* Gold / Warm accent */
  --gold-600: #B8922E;
  --gold-500: #C9A84C;
  --gold-400: #D4B85C;
  --gold-300: #E2CA7E;
  --gold-200: #F0DDA4;
  --gold-100: #FBF3D5;

  /* Neutral / Warm whites */
  --white:     #FFFFFF;
  --cream-50:  #FEFDFB;
  --cream-100: #FDF9F1;
  --cream-200: #F8F0E0;
  --warm-gray: #F4F1EC;

  /* Text */
  --text-dark:    #1C2D41;
  --text-body:    #3D4F63;
  --text-muted:   #6B7D92;
  --text-light:   #94A3B5;
  --text-on-blue: #FFFFFF;

  /* Surfaces */
  --surface-page: #F6F9FC;
  --surface-card: #FFFFFF;

  /* Borders */
  --border-light:  rgba(0, 0, 0, 0.06);
  --border-medium: rgba(0, 0, 0, 0.1);
  --border-blue:   rgba(59, 143, 212, 0.2);

  /* Functional */
  --paypal-blue:  #003087;
  --whatsapp:     #25D366;
  --whatsapp-dk:  #1DA851;
  --success:      #16A34A;

  /* Layout */
  --max-w: 480px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows — soft, warm */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 2px 6px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.1);
  --shadow-blue: 0 4px 20px rgba(59, 143, 212, 0.18);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.15);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 150ms;
  --t-mid: 250ms;
  --t-slow: 400ms;

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--surface-page);
  color: var(--text-body);
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; background: none; }

/* ── Skip Navigation ── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-500);
  color: white;
  padding: 8px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  font-size: 0.875rem;
  font-weight: 600;
  transition: top var(--t-mid) var(--ease-out);
}
.skip-nav:focus { top: 0; }

/* ═══════════════════════════════
   PAGE SHELL
   ═══════════════════════════════ */
.page-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Desktop: phone-frame with soft shadow */
@media (min-width: 768px) {
  body {
    background:
      radial-gradient(ellipse at 30% 20%, rgba(90,172,230,0.08) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
      #E8EFF8;
  }
  .page-container {
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: var(--radius-xl);
    box-shadow:
      0 0 0 1px rgba(0,0,0,0.04),
      0 25px 80px rgba(0,0,0,0.12);
    min-height: calc(100vh - 48px);
    min-height: calc(100dvh - 48px);
  }
}

@media (min-width: 1024px) {
  body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 32px 20px;
  }
  .page-container { margin-top: 0; }
}

/* ═══════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════ */
.lang-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--text-muted);
  background: transparent;
  border: 1.5px solid var(--border-light);
  transition: all var(--t-mid) var(--ease-out);
  user-select: none;
}

.lang-btn:hover {
  color: var(--blue-600);
  border-color: var(--blue-300);
  background: var(--blue-50);
}

.lang-btn.active {
  color: var(--white);
  background: var(--blue-500);
  border-color: var(--blue-500);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(59,143,212,0.25);
}

.lang-btn .flag {
  font-size: 1rem;
  line-height: 1;
}

/* ═══════════════════════════════
   HEADER / HERO
   ═══════════════════════════════ */
.header {
  position: relative;
  overflow: hidden;
}

.header-visual {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

/* Header image */
.header-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Smooth fade at bottom of image for seamless transition */
.header-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.85) 100%);
  pointer-events: none;
}

/* Screen-reader only (title text is in the image) */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Subtitle bar — bridges header image to content */
.header-subtitle-bar {
  background: var(--white);
  padding: 24px 24px 22px;
  text-align: center;
  border-bottom: none;
  position: relative;
}

/* Decorative accent line */
.header-subtitle-bar::after {
  content: '';
  display: block;
  width: 48px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--blue-400), var(--gold-400));
  border-radius: 2px;
  margin: 14px auto 0;
}

.header-subtitle-bar h1 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.header-subtitle-bar h1 .accent {
  display: block;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.header-subtitle-bar h1 .light {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════
   COUNTDOWN
   ═══════════════════════════════ */
.countdown-section {
  background: linear-gradient(135deg, #3B8FD4 0%, #5AACE6 100%);
  padding: 22px 20px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.countdown-section.hidden { display: none; }

.countdown-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.countdown-label {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 4px;
}

.countdown-hicri {
  position: relative;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  margin-bottom: 14px;
}

.countdown-timer {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.countdown-box {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  min-width: 76px;
  backdrop-filter: blur(4px);
}

.countdown-box .value {
  font-family: var(--font-body);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
  color: var(--white);
}

.countdown-box .unit {
  font-family: var(--font-body);
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
  margin-top: 5px;
  font-weight: 600;
}

.countdown-time-info {
  position: relative;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.72);
}
.countdown-time-info span { color: var(--white); font-weight: 700; }

/* ═══════════════════════════════
   ACTION CARDS
   ═══════════════════════════════ */
.actions-section {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface-page);
}

/* Blue gradient cards (İftar, Zekât) */
.action-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: linear-gradient(135deg, #4A94D9 0%, #5DAFE8 50%, #72C0F2 100%);
  box-shadow: var(--shadow-md), var(--shadow-blue);
  transition: all var(--t-mid) var(--ease-out);
  width: 100%;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
}

/* Shine on hover */
.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.6s var(--ease-out);
  pointer-events: none;
}
.action-card:hover::before { left: 100%; }

.action-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 6px 25px rgba(74,148,217,0.3);
}
.action-card:active { transform: translateY(0); }

/* Light variant (Banka Bilgileri) */
.action-card.card-light {
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
}
.action-card.card-light:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md), var(--shadow-blue);
}
.action-card.card-light::before { display: none; }

/* Icon circle */
.action-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.action-card:not(.card-light) .action-icon {
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.3);
}
.action-card.card-light .action-icon {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
}
.action-icon svg { width: 22px; height: 22px; }
.action-card:not(.card-light) .action-icon svg { stroke: var(--white); }
.action-card.card-light .action-icon svg { stroke: var(--blue-500); }

/* Text */
.action-text { flex: 1; min-width: 0; }
.action-text .title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
}
.action-text .subtitle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  opacity: 0.55;
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* Chevron */
.action-chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-mid) var(--ease-out);
}
.action-card:not(.card-light) .action-chevron {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
}
.action-card.card-light .action-chevron {
  background: var(--blue-50);
  color: var(--blue-400);
}
.action-card:hover .action-chevron { transform: translateX(3px); }
.action-card:not(.card-light):hover .action-chevron {
  background: rgba(255,255,255,0.3);
  color: var(--white);
}
.action-chevron svg { width: 16px; height: 16px; }

/* ═══════════════════════════════
   DONATION SECTION
   ═══════════════════════════════ */
.donation-section {
  padding: 28px 16px 20px;
  background: var(--white);
}

.donation-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 22px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.amount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.amount-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 8px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--t-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.amount-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.amount-card.selected {
  border-color: var(--blue-500);
  background: var(--blue-50);
  box-shadow: 0 0 0 3px rgba(59,143,212,0.08), var(--shadow-sm);
}

.amount-card .moon-icon {
  width: 20px;
  height: 20px;
  margin: 0 auto 8px;
  color: var(--gold-400);
  opacity: 0.7;
}
.amount-card.selected .moon-icon { color: var(--gold-500); opacity: 1; }

.amount-card .amount {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.amount-card.selected .amount { color: var(--blue-600); }

.amount-card .amount-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Checkmark */
.amount-card .checkmark {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--t-mid) var(--ease-spring);
}
.amount-card .checkmark svg { width: 12px; height: 12px; }
.amount-card.selected .checkmark { opacity: 1; transform: scale(1); }

/* Custom amount row */
.amount-card.custom-amount {
  grid-column: 1 / -1;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-amount .moon-icon { margin: 0; flex-shrink: 0; }
.custom-amount .amount-label {
  margin: 0;
  font-size: 0.72rem;
  text-align: left;
  white-space: nowrap;
}

.custom-input-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.custom-input {
  width: 100%;
  max-width: 120px;
  padding: 8px 10px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--t-fast);
  background: var(--surface-page);
}
.custom-input:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,143,212,0.1); }
.custom-input::placeholder { color: var(--text-light); font-weight: 400; font-size: 0.78rem; }
.custom-input-wrapper .currency { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; color: var(--text-muted); }

/* PayPal CTA */
.paypal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #0070BA 0%, #003087 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--t-mid) var(--ease-out);
  box-shadow: 0 4px 16px rgba(0, 48, 135, 0.18);
  letter-spacing: 0.02em;
}
.paypal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,48,135,0.3);
  filter: brightness(1.05);
}
.paypal-btn:active { transform: translateY(0); }
.paypal-btn svg { width: 20px; height: 20px; }

/* ═══════════════════════════════
   INFO SECTION
   ═══════════════════════════════ */
.info-section {
  padding: 20px 24px 32px;
  text-align: center;
  background: var(--surface-page);
}

.info-section .divider {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-400), var(--gold-400));
  margin: 0 auto 18px;
  border-radius: 2px;
  opacity: 0.6;
}

.info-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 340px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}
.info-text + .info-text { margin-top: 16px; }

.blessing-text {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--blue-600);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
}

/* ═══════════════════════════════
   PROGRESS BAR
   ═══════════════════════════════ */
.progress-section { padding: 0 16px 24px; background: var(--white); }

.progress-container {
  background: var(--surface-page);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-xs);
}

.progress-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.progress-title { font-size: 0.78rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.06em; }
.progress-amount { font-size: 0.78rem; color: var(--text-muted); }
.progress-amount strong { color: var(--blue-600); font-size: 0.95rem; }

.progress-bar { height: 8px; background: var(--blue-100); border-radius: 8px; overflow: hidden; }

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  border-radius: 8px;
  transition: width 1.5s var(--ease-out);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.progress-footer { display: flex; justify-content: flex-end; margin-top: 6px; font-size: 0.68rem; color: var(--text-muted); }

/* ═══════════════════════════════
   BANK MODAL
   ═══════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 45, 65, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-mid) var(--ease-out);
  overflow: hidden;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%;
  max-width: var(--max-w);
  max-height: 85vh;
  overflow-y: auto;
  padding: 0;
  transform: translateY(100%);
  transition: transform var(--t-slow) var(--ease-out);
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-handle {
  width: 36px;
  height: 4px;
  background: #DDD;
  border-radius: 4px;
  margin: 10px auto 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface-page);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--t-fast);
}
.modal-close:hover { background: var(--blue-50); color: var(--blue-600); }
.modal-close svg { width: 16px; height: 16px; }

.modal-body { padding: 20px; }

.modal-org {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}
.modal-address {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
}

.bank-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
}

.bank-info-row .label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.bank-info-row .value {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.4px;
  font-variant-numeric: tabular-nums;
}

.copy-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1.5px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.copy-btn:hover {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
}
.copy-btn.copied {
  background: var(--success);
  color: var(--white);
  border-color: var(--success);
}
.copy-btn svg { width: 16px; height: 16px; }

.modal-paypal-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  margin-top: 14px;
  background: linear-gradient(135deg, #0054B4 0%, #003087 100%);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--t-mid) var(--ease-out);
  box-shadow: 0 3px 12px rgba(0,48,135,0.15);
}
.modal-paypal-link:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ═══════════════════════════════
   TOAST
   ═══════════════════════════════ */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--text-dark);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-mid) var(--ease-out);
  z-index: 2000;
  white-space: nowrap;
  box-shadow: var(--shadow-xl);
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════
   WHATSAPP FAB
   ═══════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: white;
  padding: 13px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all var(--t-mid) var(--ease-out);
  text-decoration: none;
}
.whatsapp-fab:hover {
  background: var(--whatsapp-dk);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  color: white;
}
.whatsapp-fab svg { width: 20px; height: 20px; flex-shrink: 0; }
.whatsapp-fab .fab-text { display: none; }

@media (min-width: 768px) {
  .whatsapp-fab .fab-text { display: inline; }
  .whatsapp-fab { right: calc(50% - var(--max-w)/2 + 20px); }
  .modal-overlay { align-items: center; padding: 20px; }
  .modal { border-radius: var(--radius-xl); max-height: 70vh; }
}

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.footer {
  background: linear-gradient(160deg, #2E7DBF 0%, #3B8FD4 100%);
  color: rgba(255,255,255,0.68);
  text-align: center;
  padding: 28px 24px 48px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.footer strong {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.92);
  display: block;
  margin-bottom: 3px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.footer .copyright {
  margin-top: 18px;
  opacity: 0.45;
  font-size: 0.62rem;
  letter-spacing: 0.03em;
}
.footer .footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 12px;
  font-size: 0.72rem;
}
.footer .footer-legal a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer .footer-legal span {
  opacity: 0.4;
}

/* ═══════════════════════════════
   UTILITIES
   ═══════════════════════════════ */
[data-i18n] { transition: opacity 0.15s ease; }
.lang-switching [data-i18n] { opacity: 0; }

:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print */
@media print {
  .lang-bar, .whatsapp-fab, .countdown-section, .modal-overlay { display: none !important; }
  .page-container { box-shadow: none; max-width: 100%; }
  body { background: white; }
}
