/* ============================================
   HÜSEYİN BUDAK VAKFI™ — style.css
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:          #07070e;
  --bg-card:     #0e0e1c;
  --bg-card-2:   #13132a;
  --gold:        #d4a843;
  --gold-light:  #f0c96a;
  --gold-dim:    rgba(212, 168, 67, 0.15);
  --gold-border: rgba(212, 168, 67, 0.25);
  --red:         #e74c3c;
  --green:       #2ecc71;
  --text:        #ece8de;
  --text-2:      #9a907e;
  --text-3:      #555047;
  --radius:      14px;
  --radius-lg:   22px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================
   NAVBAR
   ============================ */

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 0 2rem;
  background: rgba(7, 7, 14, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.logo-badge {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), #8a6010);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #07070e;
  flex-shrink: 0;
}

.logo-badge.sm {
  width: 28px;
  height: 28px;
  font-size: 0.7rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), #a07020) !important;
  color: #07070e !important;
  font-weight: 700 !important;
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  font-size: 0.82rem !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(212, 168, 67, 0.4) !important;
  color: #07070e !important;
}

/* ============================
   HERO
   ============================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 7rem 2rem 5rem;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 67, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 67, 0.035) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.o1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.22), transparent 70%);
  top: -200px; left: -200px;
  animation: drift 10s ease-in-out infinite alternate;
}

.o2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,30,60,0.18), transparent 70%);
  bottom: -150px; right: -150px;
  animation: drift 12s ease-in-out infinite alternate-reverse;
}

.o3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(40,60,160,0.18), transparent 70%);
  top: 50%; left: 55%;
  animation: drift 8s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -30px) scale(1.06); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.trust-badge {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--gold-border);
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
  animation: fade-up 0.7s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  animation: fade-up 0.7s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.title-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0.08em;
  display: block;
  margin-top: 0.3rem;
  text-transform: uppercase;
}

.hero-desc {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 560px;
  animation: fade-up 0.7s 0.2s ease both;
}

.hero-desc strong {
  color: var(--text);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: fade-up 0.7s 0.35s ease both;
}

.stat {
  padding: 1.2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--gold-border);
  flex-shrink: 0;
}

/* CTA */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.4rem;
  background: linear-gradient(135deg, var(--gold), #9a7010);
  color: #07070e;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fade-up 0.7s 0.45s ease both;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.45);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.5); }
  50%       { box-shadow: 0 0 0 12px rgba(212, 168, 67, 0); }
}

.pulse { animation: fade-up 0.7s 0.45s ease both, pulse 2.5s 1.2s ease-in-out infinite; }

.hero-fine-print {
  font-size: 0.72rem;
  color: var(--text-3);
  font-style: italic;
  animation: fade-up 0.7s 0.55s ease both;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-3);
  font-size: 1.3rem;
  animation: bob 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================
   SHARED SECTION STYLES
   ============================ */

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.eyebrow.center { text-align: center; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.section-title.center { text-align: center; }

.section-sub {
  color: var(--text-2);
  font-size: 0.95rem;
  max-width: 580px;
  margin-bottom: 3rem;
}

.section-sub.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================
   ABOUT
   ============================ */

.about-section {
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

.photo-frame {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: sticky;
  top: 80px;
}

.photo-placeholder {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card-2), #1a1a38);
  border: 3px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.15), transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

.photo-initials {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.photo-caption {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.photo-caption small {
  color: var(--text-2);
  font-size: 0.72rem;
  font-weight: 400;
}

.credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.cbadge {
  font-size: 0.68rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
}

.photo-fine {
  font-size: 0.65rem;
  color: var(--text-3);
  font-style: italic;
}

/* About text */
.about-paras {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-paras p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.75;
}

.strike {
  text-decoration: line-through;
  color: var(--text-3);
}

.differentiators {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-2);
}

.diff-icon {
  flex-shrink: 0;
  font-size: 0.9rem;
}

.diff-item em {
  color: var(--text-3);
  font-style: italic;
}

/* ============================
   WHY / COMPARE
   ============================ */

.why-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, #090916, #07070e, #0c0810);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-table thead {
  background: var(--bg-card-2);
}

.compare-table th, .compare-table td {
  padding: 1rem 1.4rem;
  text-align: left;
  border-bottom: 1px solid rgba(212,168,67,0.08);
}

.compare-table th {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.compare-table th:first-child { color: var(--text-2); }

.col-them { color: #e88; background: rgba(231,76,60,0.06); }
.col-us   { color: var(--gold-light); background: rgba(212,168,67,0.06); }

.compare-table tbody tr:hover td {
  background: rgba(212,168,67,0.03);
}

.bad  { color: #e74c3c; font-weight: 500; }
.good { color: #2ecc71; font-weight: 500; }

.verdict-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(212, 168, 67, 0.06);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.3rem 1.6rem;
  font-size: 0.9rem;
  color: var(--text-2);
}

.verdict-icon { font-size: 1.4rem; flex-shrink: 0; }
.verdict-box strong { color: var(--text); }
.verdict-box em { color: var(--text-3); font-style: italic; }

/* ============================
   BAĞIŞ
   ============================ */

.bagis-section {
  padding: 7rem 0;
}

.iban-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.iban-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.iban-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(212,168,67,0.15);
  border-color: rgba(212,168,67,0.5);
}

.iban-card.featured {
  border-color: var(--gold);
  background: var(--bg-card-2);
}

.featured-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #9a7010);
  color: #07070e;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.iban-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.bank-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.g-color { background: linear-gradient(135deg, #00a650, #005c2a); }
.z-color { background: linear-gradient(135deg, #e31e24, #7a0000); }
.k-color { background: linear-gradient(135deg, #006a4e, #003828); }

.bank-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.bank-tagline {
  font-size: 0.7rem;
  color: var(--text-3);
  font-style: italic;
}

.trust-star {
  margin-left: auto;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.iban-display {
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  color: var(--gold-light);
  background: rgba(212,168,67,0.06);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.04em;
  word-break: break-all;
}

.copy-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.65rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
  font-family: 'Inter', sans-serif;
}

.copy-btn:hover {
  background: var(--gold);
  color: #07070e;
  border-color: var(--gold);
}

.copy-btn.ok {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.iban-note {
  font-size: 0.72rem;
  color: var(--text-3);
  font-style: italic;
  text-align: center;
}

.bagis-disclaimer-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(212,168,67,0.05);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.3rem 1.6rem;
  font-size: 0.88rem;
  color: var(--text-2);
}

.bagis-disclaimer-box strong { color: var(--text); }
.bagis-disclaimer-box em     { color: var(--text-3); }

/* ============================
   REFS
   ============================ */

.refs-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #080814, #07070e);
  border-top: 1px solid var(--gold-border);
}

.refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ref-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,168,67,0.1);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: border-color 0.25s, transform 0.25s;
}

.ref-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}

.ref-quote {
  font-style: italic;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ref-quote::before { content: '"'; color: var(--gold); font-size: 1.2rem; }
.ref-quote::after  { content: '"'; color: var(--gold); font-size: 1.2rem; }

.ref-name {
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

/* ============================
   FOOTER
   ============================ */

.site-footer {
  background: #04040a;
  border-top: 1px solid var(--gold-border);
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.footer-slogan {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-3);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.footer-disclaimer {
  background: rgba(255, 180, 0, 0.04);
  border: 1px solid rgba(255, 180, 0, 0.15);
  border-radius: var(--radius);
  padding: 1.6rem 2rem;
  max-width: 780px;
  margin: 0 auto;
}

.disc-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f39c12;
  background: rgba(243,156,18,0.1);
  border: 1px solid rgba(243,156,18,0.25);
  border-radius: 999px;
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}

.footer-disclaimer p {
  color: var(--text-2);
  font-size: 0.8rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.footer-url {
  color: var(--text-3) !important;
  font-size: 0.73rem !important;
  margin-top: 0.8rem !important;
}

/* ============================
   ANIMATIONS
   ============================ */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .photo-frame { position: static; }
  .iban-grid, .refs-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 50px; height: 1px; }
}

@media (max-width: 600px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .compare-table th, .compare-table td { padding: 0.75rem; }
}
