/* ==========================================================================
   ANKA DENETİM — Modern Design System
   Kurumsal & Güvenilir | Lacivert + Altın
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/* 1. CSS Custom Properties (Design Tokens)                                    */
/* -------------------------------------------------------------------------- */
:root {
  /* === Brand Colors === */
  --color-navy-900: #0A2540;
  --color-navy-800: #0F2E4F;
  --color-navy-700: #1A3A60;
  --color-navy-600: #2B4F7C;
  --color-navy-500: #3D6398;
  --color-navy-100: #DCE5F0;
  --color-navy-50:  #F0F4F9;

  --color-gold-700: #8B6508;
  --color-gold-600: #B8860B;
  --color-gold-500: #C8A951;
  --color-gold-400: #D4B96B;
  --color-gold-300: #E2C98C;
  --color-gold-100: #F2E5C4;
  --color-gold-50:  #FAF6EC;

  /* === Neutrals === */
  --color-white: #FFFFFF;
  --color-slate-900: #0F172A;
  --color-slate-800: #1E293B;
  --color-slate-700: #334155;
  --color-slate-600: #475569;
  --color-slate-500: #64748B;
  --color-slate-400: #94A3B8;
  --color-slate-300: #CBD5E1;
  --color-slate-200: #E2E8F0;
  --color-slate-100: #F1F5F9;
  --color-slate-50:  #F8FAFC;

  /* === Semantic === */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;

  /* === Typography === */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-xs: 0.8125rem;   /* 13px */
  --fs-sm: 0.875rem;    /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md: 1.125rem;    /* 18px */
  --fs-lg: 1.25rem;     /* 20px */
  --fs-xl: 1.5rem;      /* 24px */
  --fs-2xl: 1.875rem;   /* 30px */
  --fs-3xl: 2.25rem;    /* 36px */
  --fs-4xl: 3rem;       /* 48px */
  --fs-5xl: 3.75rem;    /* 60px */
  --fs-6xl: 4.5rem;     /* 72px */

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  /* === Spacing === */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* === Layout === */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  --section-padding-y: 6rem;
  --section-padding-y-sm: 4rem;

  /* === Borders & Radius === */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* === Shadows === */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 8px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 24px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.12), 0 8px 16px rgba(15, 23, 42, 0.06);
  --shadow-gold: 0 8px 24px rgba(184, 134, 11, 0.18);

  /* === Transitions === */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* === Z-index === */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-header: 300;
  --z-overlay: 400;
  --z-modal: 500;
}

/* -------------------------------------------------------------------------- */
/* 2. Reset & Base                                                            */
/* -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
/* Yatay scroll engelle — mobilde içerik taşmasın */
html, body { overflow-x: hidden; max-width: 100%; }
body { position: relative; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-slate-700);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Fixed header (80px) + fixed markets-bar (38px) için üst boşluk */
  padding-top: 118px;
}

img, picture, svg, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-navy-700);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-gold-600); }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

ul, ol { list-style: none; }

::selection {
  background: var(--color-gold-300);
  color: var(--color-navy-900);
}

/* -------------------------------------------------------------------------- */
/* 3. Utility Classes                                                         */
/* -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding-y) 0;
}
@media (max-width: 768px) {
  .section { padding: var(--section-padding-y-sm) 0; }
}

.section--bg-alt { background-color: var(--color-slate-50); }
.section--bg-navy { background-color: var(--color-navy-900); color: var(--color-white); }
.section--bg-navy h1, .section--bg-navy h2, .section--bg-navy h3 { color: var(--color-white); }

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

/* Section header (küçük caption + büyük başlık + altın çizgi) */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-16);
}
.section-header__caption {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-bottom: var(--space-4);
  position: relative;
  padding: 0 var(--space-2);
}
.section-header__caption::before,
.section-header__caption::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--color-gold-400);
}
.section-header__caption::before { right: 100%; }
.section-header__caption::after { left: 100%; }
.section-header__title {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-navy-900);
  margin-bottom: var(--space-4);
}
.section-header__subtitle {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-slate-600);
}
.section--bg-navy .section-header__title { color: var(--color-white); }
.section--bg-navy .section-header__subtitle { color: var(--color-slate-300); }

@media (max-width: 768px) {
  .section-header__title { font-size: var(--fs-3xl); }
}

/* -------------------------------------------------------------------------- */
/* 4. Buttons                                                                 */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 1.75rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 1.1em; height: 1.1em; }

.btn--primary {
  background: var(--color-navy-900);
  color: var(--color-white);
  border-color: var(--color-navy-900);
}
.btn--primary:hover {
  background: var(--color-navy-700);
  border-color: var(--color-navy-700);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--gold {
  background: var(--color-gold-600);
  color: var(--color-white);
  border-color: var(--color-gold-600);
}
.btn--gold:hover {
  background: var(--color-gold-700);
  border-color: var(--color-gold-700);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy-900);
  border-color: var(--color-navy-300, var(--color-slate-300));
}
.btn--outline:hover {
  background: var(--color-navy-900);
  color: var(--color-white);
  border-color: var(--color-navy-900);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold-500);
  color: var(--color-gold-400);
}

.btn--lg { padding: 1.125rem 2.25rem; font-size: var(--fs-base); }

/* -------------------------------------------------------------------------- */
/* 5. Header & Navigation                                                     */
/* -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 38px; /* markets-bar yüksekliği kadar aşağı it */
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-slate-200);
  transition: all var(--transition-base);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--space-8);
  max-width: 100%;
  min-width: 0;
}
/* Döviz kuru emojileri için font-family fallback (Twemoji zaten SVG'ye çeviriyor) */
.anka-markets__flag,
.anka-markets__item,
.markets-bar {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", "EmojiOne Color", emoji, sans-serif;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy-900) 0%, var(--color-navy-700) 100%);
  border-radius: var(--radius-md);
  color: var(--color-gold-500);
}
.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-logo__name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-navy-900);
  letter-spacing: 0.02em;
}
.site-logo__tag {
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  color: var(--color-slate-500);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.main-nav__item {
  position: relative;
}
.main-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 1rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-slate-700);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
}
.main-nav__link:hover,
.main-nav__link.is-active {
  color: var(--color-navy-900);
}
.main-nav__link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}
.main-nav__item:hover .main-nav__link svg { transform: rotate(180deg); }

/* Dropdown */
.main-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  padding: var(--space-2);
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  z-index: var(--z-dropdown);
}
.main-nav__item:hover .main-nav__dropdown,
.main-nav__item:focus-within .main-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav__dropdown a {
  display: block;
  padding: 0.625rem 0.875rem;
  font-size: var(--fs-sm);
  color: var(--color-slate-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.main-nav__dropdown a:hover {
  background: var(--color-navy-50);
  color: var(--color-navy-900);
  padding-left: 1.125rem;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}
.header-cta__phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-navy-900);
  flex-shrink: 0;
  white-space: nowrap;
}
.header-cta__phone svg { color: var(--color-gold-600); width: 18px; height: 18px; flex-shrink: 0; }
/* Tek ikon, 2 numara: | ayraç + ikonsuz cep numarası */
.header-cta__phone-sep {
  color: var(--color-gold-600);
  font-weight: var(--fw-normal);
  user-select: none;
  margin: 0 var(--space-1);
  font-size: var(--fs-base);
  line-height: 1;
  flex-shrink: 0;
}
.header-cta__phone--mobile {
  /* İkonsuz, sadece numara — flex yerine inline */
  gap: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.header-cta__phone--mobile svg { display: none; }
@media (max-width: 1280px) {
  .header-cta { gap: var(--space-2); }
  .header-cta__phone { font-size: 0.8125rem; }  /* 13px — 1200-1280px arasında daha kompakt */
  .header-cta__phone-sep { font-size: 0.875rem; }
}
@media (max-width: 1100px) {
  .header-cta__phone { font-size: 0.75rem; }  /* 12px — sıkışıklıkta en küçük */
  .header-cta__phone-sep { font-size: 0.8125rem; }
  .header-cta__phone svg { width: 16px; height: 16px; }
}
@media (max-width: 480px) {
  /* Gerçek mobil (360-414px) — telefon kesilmesin diye çok kompakt */
  .site-header__inner { gap: var(--space-2); }
  .header-cta { gap: var(--space-1); }
  .header-cta__phone { font-size: 0.6875rem; letter-spacing: -0.01em; gap: 4px; }
  .header-cta__phone-sep { font-size: 0.6875rem; }
  .header-cta__phone svg { width: 14px; height: 14px; }
  .site-header { overflow: visible; }  /* taşan telefon kesilmesin */
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--color-navy-900);
  flex-shrink: 0;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 28px;
  height: 3px;
  background: currentColor;
  position: relative;
  transition: all var(--transition-base);
  border-radius: 2px;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 28px;
}
.menu-toggle span::before { top: -9px; }
.menu-toggle span::after { top: 9px; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-cta .btn { display: none; }                /* Teklif Al butonu gizli */
  .site-header__inner { 
    position: relative;                              /* Logo absolute için referans */
    justify-content: space-between;                 /* ≡ sol, telefon sağ */
  }
  .site-logo {                                       /* Logo ortada */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header-cta { 
    flex-direction: column;                          /* 2 satır: 0212 üst, 0539 alt */
    align-items: flex-end;                           /* sağa yasla */
    gap: 2px;
    margin-left: auto;                               /* en sağa it */
  }
  .header-cta__phone { display: inline-flex; }       /* Ofis telefonu görünür */
  .header-cta__phone--mobile { display: inline-flex; } /* Cep numarası DA görünür */
  .header-cta__phone-sep { display: none; }          /* | ayracı mobilde gizli */
  .menu-toggle { display: flex; order: -1; align-self: flex-start; margin-bottom: 4px; } /* Hamburger toggle en sola */
}
@media (max-width: 640px) {
  .header-cta__phone { font-size: 0.75rem; }         /* Çok küçük ekranda kompakt */
  .header-cta__phone svg { width: 14px; height: 14px; }
}
@media (max-width: 480px) {
  .header-cta__phone { font-size: 0.6875rem; letter-spacing: -0.01em; }
  .site-header { overflow: visible; }
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 80px 0 0 0;
  background: var(--color-white);
  padding: var(--space-6);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
  z-index: var(--z-overlay);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__list a {
  display: block;
  padding: var(--space-4) 0;
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--color-slate-800);
  border-bottom: 1px solid var(--color-slate-200);
}
.mobile-menu__list a:hover { color: var(--color-navy-900); }
.mobile-menu__sub {
  padding-left: var(--space-4);
}
.mobile-menu__sub a {
  font-size: var(--fs-base);
  color: var(--color-slate-600);
  padding: var(--space-3) 0;
}

/* -------------------------------------------------------------------------- */
/* 6. Hero                                                                    */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-navy-900) 0%, var(--color-navy-700) 60%, var(--color-navy-600) 100%);
  color: var(--color-white);
  overflow: hidden;
  padding-top: 80px; /* header 80 + markets-bar 38 = body'si 118px padding-top veriyor */
}

/* Decorative pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184, 134, 11, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(200, 169, 81, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding: var(--space-24) 0;
}

.hero__content { max-width: 640px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 1rem;
  background: rgba(200, 169, 81, 0.12);
  border: 1px solid rgba(200, 169, 81, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-gold-400);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.hero__eyebrow svg { width: 14px; height: 14px; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}
.hero__title em {
  font-style: normal;
  color: var(--color-gold-400);
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-600), transparent);
  border-radius: 2px;
}

.hero__rotator {
  display: inline-block;
  min-width: 280px;
  color: var(--color-gold-400);
  border-bottom: 3px solid var(--color-gold-500);
  padding-bottom: 4px;
  transition: opacity var(--transition-base);
}

.hero__lead {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-slate-300);
  margin-bottom: var(--space-8);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-12);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 560px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold-400);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.hero__stat-label {
  font-size: var(--fs-xs);
  color: var(--color-slate-300);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero visual side */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-navy-700) 0%, var(--color-navy-900) 100%);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(200, 169, 81, 0.2);
}
.hero__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  mix-blend-mode: luminosity;
}
.hero__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 37, 64, 0.7) 100%);
}
.hero__visual-card {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.hero__visual-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--color-gold-600);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.hero__visual-text { color: var(--color-white); }
.hero__visual-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}
.hero__visual-sub {
  font-size: var(--fs-xs);
  color: var(--color-slate-300);
}

@media (max-width: 1024px) {
  .hero { min-height: 640px; }
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-12); padding: var(--space-16) 0; }
  .hero__visual { max-width: 480px; aspect-ratio: 16 / 11; }
}
@media (max-width: 640px) {
  .hero { min-height: auto; padding-top: 80px; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
  .hero__stat-num { font-size: var(--fs-2xl); }
}

/* -------------------------------------------------------------------------- */
/* 7. Service Cards (Hizmetler Grid)                                          */
/* -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  padding: var(--space-8);
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-600), var(--color-gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy-50), var(--color-navy-100));
  color: var(--color-navy-900);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
  transition: all var(--transition-base);
}
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--color-navy-900), var(--color-navy-700));
  color: var(--color-gold-400);
}
.service-card__icon svg { width: 28px; height: 28px; }

.service-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-navy-900);
  margin-bottom: var(--space-3);
  line-height: var(--lh-snug);
}

.service-card__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-slate-600);
  margin-bottom: var(--space-6);
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-gold-700);
  transition: gap var(--transition-base);
}
.service-card__link:hover {
  color: var(--color-gold-600);
  gap: 10px;
}
.service-card__link svg { width: 14px; height: 14px; }

/* -------------------------------------------------------------------------- */
/* 8. About (Hakkımızda) Section                                              */
/* -------------------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 1024px) { .about { grid-template-columns: 1fr; gap: var(--space-12); } }

.about__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-navy-100), var(--color-navy-50));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about__visual-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(10, 37, 64, 0.1) 0%, transparent 50%);
}
.about__visual-icon {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  color: var(--color-navy-900);
}
.about__visual-icon svg { width: 64px; height: 64px; }
.about__visual-badge {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--color-white);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
}
.about__visual-badge-num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold-600);
  line-height: 1;
}
.about__visual-badge-text {
  font-size: var(--fs-xs);
  color: var(--color-slate-600);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about__caption {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-bottom: var(--space-4);
}
.about__title {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-navy-900);
  margin-bottom: var(--space-6);
}
.about__text {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-slate-600);
  margin-bottom: var(--space-6);
}

.about__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin: var(--space-8) 0;
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.about__feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-gold-600);
  margin-top: 2px;
}
.about__feature-text {
  font-size: var(--fs-sm);
  color: var(--color-slate-700);
  line-height: var(--lh-snug);
}

/* -------------------------------------------------------------------------- */
/* 9. Stats (İstatistikler) Band                                              */
/* -------------------------------------------------------------------------- */
.stats-band {
  background:
    radial-gradient(ellipse at top left, rgba(200, 169, 81, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(200, 169, 81, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #061a2e 0%, var(--color-navy-800) 100%);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(200, 169, 81, 0.05) 1px, transparent 1px);
  background-size: 80px 100%;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* Stats band içindeki section header'lar için kontrast override'ları */
.stats-band .section-header__caption {
  color: var(--color-gold-400);
}
.stats-band .section-header__caption::before,
.stats-band .section-header__caption::after {
  background: var(--color-gold-500);
}
.stats-band .section-header__title {
  color: var(--color-white);
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-3);
}
/* Başlık altına ince altın accent çizgisi */
.stats-band .section-header__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold-400) 50%, transparent 100%);
}
.stats-band .section-header__subtitle {
  color: var(--color-slate-200);
}

.stat-item {
  text-align: center;
  color: var(--color-white);
  padding: var(--space-4) var(--space-2);
  position: relative;
}
.stat-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 169, 81, 0.2), rgba(200, 169, 81, 0.08));
  color: var(--color-gold-400);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 169, 81, 0.4);
  box-shadow: 0 4px 16px rgba(200, 169, 81, 0.2);
}
.stat-item__icon svg { width: 26px; height: 26px; }
.stat-item__num {
  font-family: var(--font-display);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-black);
  color: #ffffff;
  line-height: 1;
  margin-bottom: var(--space-3);
  display: block;
  /* Daha güçlü okunaklılık: yumuşak altın halo + lacivert alt gölge */
  text-shadow:
    0 0 24px rgba(200, 169, 81, 0.45),
    0 2px 4px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.02em;
}
/* Sayının altına ince altın accent çizgisi (sayısal izi teması) */
.stat-item__num::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  margin: var(--space-3) auto 0;
  background: var(--color-gold-400);
  border-radius: 1px;
  opacity: 0.85;
}
.stat-item__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-gold-400);
  letter-spacing: 0.08em;
  line-height: var(--lh-snug);
  text-transform: uppercase;
  margin-top: var(--space-3);
}

@media (max-width: 768px) {
  .stat-item__num { font-size: var(--fs-4xl); }
  .stat-item__icon { width: 48px; height: 48px; }
  .stat-item__icon svg { width: 22px; height: 22px; }
}

/* -------------------------------------------------------------------------- */
/* 10. CTA Section (Call-to-Action)                                           */
/* -------------------------------------------------------------------------- */
.cta-band {
  background: var(--color-navy-50);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-8);
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-navy-900);
  margin-bottom: var(--space-2);
  max-width: 640px;
}
.cta-band__subtitle {
  color: var(--color-slate-600);
  max-width: 560px;
}
.cta-band__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* -------------------------------------------------------------------------- */
/* 11. Page Header (İç sayfalar için)                                         */
/* -------------------------------------------------------------------------- */
.page-header {
  background: linear-gradient(135deg, var(--color-navy-900) 0%, var(--color-navy-700) 100%);
  color: var(--color-white);
  padding: calc(80px + var(--space-16)) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(200, 169, 81, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.page-header__inner { position: relative; z-index: 1; }
.page-header__caption {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-400);
  margin-bottom: var(--space-4);
}
.page-header__title {
  font-family: var(--font-display);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-4);
  max-width: 800px;
}
.page-header__subtitle {
  font-size: var(--fs-md);
  color: var(--color-slate-300);
  max-width: 640px;
  line-height: var(--lh-relaxed);
}
.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  margin-top: var(--space-6);
  color: var(--color-slate-400);
}
.page-header__breadcrumb a { color: var(--color-slate-300); }
.page-header__breadcrumb a:hover { color: var(--color-gold-400); }
.page-header__breadcrumb svg { width: 14px; height: 14px; opacity: 0.5; }

@media (max-width: 768px) {
  .page-header__title { font-size: var(--fs-3xl); }
}

/* -------------------------------------------------------------------------- */
/* 12. Content Blocks (İçerik blokları)                                       */
/* -------------------------------------------------------------------------- */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-bottom: var(--space-20);
}
.content-block:last-child { margin-bottom: 0; }
.content-block--reverse { direction: rtl; }
.content-block--reverse > * { direction: ltr; }
@media (max-width: 1024px) {
  .content-block { grid-template-columns: 1fr; gap: var(--space-10); }
  .content-block--reverse { direction: ltr; }
}

.content-block__visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy-50), var(--color-navy-100));
  box-shadow: var(--shadow-lg);
}
.content-block__visual-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(10, 37, 64, 0.1) 0%, transparent 50%);
}
.content-block__visual-icon {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  color: var(--color-navy-900);
}
.content-block__visual-icon svg { width: 48px; height: 48px; }

.content-block__caption {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-bottom: var(--space-3);
}
.content-block__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-navy-900);
  margin-bottom: var(--space-5);
}
.content-block__text {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-slate-600);
  margin-bottom: var(--space-4);
}

/* Feature list (numbered) */
.feature-list { margin: var(--space-6) 0; }
.feature-list__item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-slate-200);
}
.feature-list__item:last-child { border-bottom: 0; }
.feature-list__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy-50);
  color: var(--color-navy-900);
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-md);
}
.feature-list__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-navy-900);
  margin-bottom: 4px;
}
.feature-list__text {
  font-size: var(--fs-sm);
  color: var(--color-slate-600);
  line-height: var(--lh-relaxed);
}

/* -------------------------------------------------------------------------- */
/* 13. Mission/Vision (Misyon Vizyon)                                         */
/* -------------------------------------------------------------------------- */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
@media (max-width: 768px) { .mv-grid { grid-template-columns: 1fr; } }

.mv-card {
  padding: var(--space-10);
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-gold-600), var(--color-gold-400));
}
.mv-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.mv-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy-900);
  color: var(--color-gold-400);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}
.mv-card__icon svg { width: 28px; height: 28px; }
.mv-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-navy-900);
  margin-bottom: var(--space-4);
}
.mv-card__text {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-slate-600);
}

/* -------------------------------------------------------------------------- */
/* 14. Values (Değerler) Cards                                                */
/* -------------------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 1024px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  padding: var(--space-8);
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}
.value-card:hover {
  border-color: var(--color-gold-400);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.value-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy-50), var(--color-navy-100));
  color: var(--color-navy-900);
  border-radius: var(--radius-full);
}
.value-card:hover .value-card__icon {
  background: linear-gradient(135deg, var(--color-gold-600), var(--color-gold-500));
  color: var(--color-white);
}
.value-card__icon svg { width: 36px; height: 36px; }
.value-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-navy-900);
  margin-bottom: var(--space-3);
}
.value-card__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-slate-600);
}

/* -------------------------------------------------------------------------- */
/* 15. Contact Form                                                           */
/* -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
}
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  padding: var(--space-10);
  background: linear-gradient(135deg, var(--color-navy-900) 0%, var(--color-navy-700) 100%);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 169, 81, 0.15) 0%, transparent 60%);
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
}
.contact-info__text {
  color: var(--color-slate-300);
  margin-bottom: var(--space-8);
  line-height: var(--lh-relaxed);
}

.contact-list { margin-bottom: var(--space-8); }
.contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-list__item:last-child { border-bottom: 0; }
.contact-list__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 81, 0.15);
  color: var(--color-gold-400);
  border-radius: var(--radius-md);
}
.contact-list__icon svg { width: 20px; height: 20px; }
.contact-list__label {
  font-size: var(--fs-xs);
  color: var(--color-slate-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-list__value {
  color: var(--color-white);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
}
.contact-list__value a { color: var(--color-white); }
.contact-list__value a:hover { color: var(--color-gold-400); }

.contact-form {
  padding: var(--space-10);
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.contact-form__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-navy-900);
  margin-bottom: var(--space-2);
}
.contact-form__subtitle {
  color: var(--color-slate-600);
  margin-bottom: var(--space-6);
  font-size: var(--fs-sm);
}

.form-group { margin-bottom: var(--space-4); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-slate-700);
  margin-bottom: var(--space-2);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-white);
  border: 1.5px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  color: var(--color-slate-800);
  transition: all var(--transition-fast);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-navy-700);
  box-shadow: 0 0 0 3px rgba(26, 58, 96, 0.1);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--color-slate-600);
  line-height: var(--lh-relaxed);
}
.form-checkbox input { margin-top: 4px; }

/* -------------------------------------------------------------------------- */
/* 16. Map (İletişim sayfası için)                                            */
/* -------------------------------------------------------------------------- */
.map-wrapper {
  margin-top: var(--space-12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 21 / 9;
  background: var(--color-slate-100);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-slate-200);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* -------------------------------------------------------------------------- */
/* 17. Footer                                                                 */
/* -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-navy-900);
  color: var(--color-slate-300);
  padding: var(--space-20) 0 var(--space-6);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-navy-700) 0%, var(--color-gold-600) 50%, var(--color-navy-700) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); } }

.footer-col h4 {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-5);
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: var(--space-3);
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--color-gold-600);
}

.footer-about p {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-slate-400);
  margin-bottom: var(--space-5);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.footer-logo__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy-700);
  color: var(--color-gold-500);
  border-radius: var(--radius-md);
}
.footer-logo__text {
  display: flex;
  flex-direction: column;
}
.footer-logo__name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.1;
}
.footer-logo__tag {
  font-size: 0.6875rem;
  color: var(--color-slate-400);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a {
  color: var(--color-slate-400);
  font-size: var(--fs-sm);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--color-gold-500);
  transition: width var(--transition-base);
}
.footer-links a:hover {
  color: var(--color-gold-400);
  padding-left: 4px;
}
.footer-links a:hover::before { width: 12px; }

.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-3);
  color: var(--color-slate-400);
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-gold-500);
  margin-top: 2px;
}
.footer-contact-item a { color: var(--color-slate-300); }
.footer-contact-item a:hover { color: var(--color-gold-400); }

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy-800);
  color: var(--color-slate-300);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}
.footer-social a:hover {
  background: var(--color-gold-600);
  color: var(--color-white);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--fs-sm);
  color: var(--color-slate-500);
}
.footer-bottom a { color: var(--color-slate-400); }
.footer-bottom a:hover { color: var(--color-gold-400); }
.footer-bottom__links { display: flex; gap: var(--space-5); }

/* -------------------------------------------------------------------------- */
/* 18. Animations                                                             */
/* -------------------------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rotateWords {
  0%, 18%   { transform: translateY(0); }
  20%, 38%  { transform: translateY(-100%); }
  40%, 58%  { transform: translateY(-200%); }
  60%, 78%  { transform: translateY(-300%); }
  80%, 98%  { transform: translateY(-400%); }
  100%      { transform: translateY(-500%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* -------------------------------------------------------------------------- */
/* 19. Reveal on Scroll                                                       */
/* -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   20. Markets Bar (TCMB Döviz Kuru) — Header Altı
   ========================================================================== */
.markets-bar {
  background: linear-gradient(90deg, var(--color-navy-900), var(--color-navy-800));
  color: var(--color-slate-200);
  font-size: var(--fs-xs);
  border-bottom: 1px solid rgba(200, 169, 81, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: calc(var(--z-header) + 1);
}

.markets-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: 38px;
  flex-wrap: wrap;
}

.markets-bar__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-400);
  white-space: nowrap;
}
.markets-bar__label svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold-500);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.anka-markets {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.anka-markets__item {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--color-slate-100);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.anka-markets__flag {
  font-size: 14px;
  line-height: 1;
}

.anka-markets__code {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--color-gold-400);
  letter-spacing: 0.04em;
}

.anka-markets__value {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.anka-markets__unit {
  color: var(--color-slate-400);
  font-size: var(--fs-xs);
}

.anka-markets__error {
  font-size: var(--fs-xs);
  color: var(--color-slate-400);
  font-style: italic;
}

.markets-bar__date {
  font-size: 0.6875rem;
  color: var(--color-slate-500);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .markets-bar__inner { height: auto; padding: 6px 0; gap: 6px; }
  .markets-bar__date { display: none; }
  .anka-markets { gap: var(--space-4); }
}

/* ==========================================================================
   21. Legislation (Mevzuat & Duyurular) Section
   ========================================================================== */
.legislation {
  background: var(--color-white);
  position: relative;
}

.legislation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
@media (max-width: 1024px) {
  .legislation-grid { grid-template-columns: 1fr; }
}

.legislation-col {
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.legislation-col__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(135deg, var(--color-navy-900), var(--color-navy-700));
  color: var(--color-white);
}
.legislation-col__title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  font-family: var(--font-display);
}
.legislation-col__title svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold-400);
}
.legislation-col__badge {
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(200, 169, 81, 0.15);
  color: var(--color-gold-400);
  border-radius: var(--radius-full);
}

.legislation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.legislation-item {
  border-bottom: 1px solid var(--color-slate-100);
}
.legislation-item:last-child { border-bottom: 0; }

.legislation-item__link {
  display: block;
  position: relative;
  padding: var(--space-5) var(--space-6) var(--space-5);
  color: var(--color-slate-700);
  text-decoration: none;
  transition: all var(--transition-base);
}
.legislation-item__link:hover {
  background: var(--color-navy-50);
  padding-left: calc(var(--space-6) + 8px);
}

.legislation-item__date {
  font-size: var(--fs-xs);
  color: var(--color-slate-500);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.legislation-item__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-navy-900);
  line-height: var(--lh-snug);
  margin-bottom: 4px;
  padding-right: var(--space-8);
  transition: color var(--transition-fast);
}
.legislation-item__link:hover .legislation-item__title { color: var(--color-gold-700); }

.legislation-item__summary {
  font-size: var(--fs-sm);
  color: var(--color-slate-600);
  line-height: var(--lh-relaxed);
  margin-bottom: 8px;
}

.legislation-item__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--color-gold-50);
  color: var(--color-gold-700);
  border-radius: var(--radius-sm);
}

.legislation-item__arrow {
  position: absolute;
  top: var(--space-5);
  right: var(--space-6);
  width: 18px;
  height: 18px;
  color: var(--color-slate-300);
  transition: all var(--transition-base);
}
.legislation-item__link:hover .legislation-item__arrow {
  color: var(--color-gold-600);
  transform: translateX(4px);
}

.legislation-col__footer {
  padding: var(--space-4) var(--space-6);
  background: var(--color-slate-50);
  border-top: 1px solid var(--color-slate-200);
  text-align: center;
}
.legislation-col__footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-navy-900);
  text-decoration: none;
  transition: gap var(--transition-base);
}
.legislation-col__footer a:hover {
  gap: 10px;
  color: var(--color-gold-600);
}
.legislation-col__footer a svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   22. Form Status (Formspree entegrasyonu için başarı/hata mesajları)
   ========================================================================== */
.form-status {
  margin: var(--space-3) 0;
  min-height: 0;
}
.form-status:empty {
  margin: 0;
  min-height: 0;
}
.form-status__success,
.form-status__error {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  border: 1.5px solid;
  animation: fadeIn 0.4s ease-out;
}
.form-status__success {
  background: #ecfdf5;
  border-color: #10b981;
  color: #065f46;
}
.form-status__success svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #10b981;
  margin-top: 2px;
}
.form-status__success strong { display: block; font-size: var(--fs-base); }
.form-status__error {
  background: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
}
.form-status__error strong { color: #7f1d1d; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Buton gönderim sırasında loading state */
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}
.anka-markets__change {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 4px;
}
.anka-markets__change--up   { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.anka-markets__change--down { background: rgba(239, 68, 68, 0.15);  color: #ef4444; }
.anka-markets__change--flat { background: rgba(148, 163, 184, 0.15); color: var(--color-slate-300); }

/* ============================================================
   12. Yüzen yardımcı widget'lar (WhatsApp + Chatbot)
   ============================================================ */
:root {
  --wa-color: #25D366;
  --wa-color-dark: #128C7E;
  --chat-color: var(--color-navy, #0A2540);
  --chat-accent: var(--color-gold, #B8860B);
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-color);
  color: #fff;
  text-decoration: none;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  font-family: var(--font-body, 'Inter', system-ui, sans-serif);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.wa-float:hover {
  background: var(--wa-color-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 4px 8px rgba(0, 0, 0, 0.16);
}
.wa-float:active { transform: translateY(0) scale(0.98); }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-float__label { white-space: nowrap; }

@media (max-width: 480px) {
  .wa-float { right: 14px; bottom: 14px; padding: 12px; }
  .wa-float__label { display: none; }
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.wa-float { animation: wa-pulse 2.4s ease-out 1; }
.wa-float:hover { animation: none; }


/* ---- Chat widget ---- */
.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 1090;
  font-family: var(--font-body, 'Inter', system-ui, sans-serif);
}
.chat-widget__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--chat-color);
  color: #fff;
  border: none;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.35), 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chat-widget__toggle:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(10, 37, 64, 0.45), 0 4px 8px rgba(0, 0, 0, 0.16);
}
.chat-widget__toggle svg { width: 22px; height: 22px; flex-shrink: 0; }
.chat-widget__toggle-label { white-space: nowrap; }

@media (max-width: 480px) {
  .chat-widget { right: 14px; bottom: 80px; }
  .chat-widget__toggle { padding: 12px; }
  .chat-widget__toggle-label { display: none; }
}

.chat-widget__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: 360px;
  max-width: calc(100vw - 28px);
  height: 520px;
  max-height: calc(100vh - 140px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(10, 37, 64, 0.22), 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(10, 37, 64, 0.08);
  transform-origin: bottom right;
  animation: chat-pop 0.18s ease-out;
}
@keyframes chat-pop {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-widget__panel[hidden] { display: none; }

.chat-widget__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--chat-color) 0%, #1a3a5e 100%);
  color: #fff;
  flex-shrink: 0;
}
.chat-widget__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--chat-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.chat-widget__title-wrap { flex: 1; min-width: 0; }
.chat-widget__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}
.chat-widget__sub {
  display: block;
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 2px;
}
.chat-widget__close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}
.chat-widget__close:hover { opacity: 1; }

.chat-widget__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f8fafc;
  font-size: 0.9rem;
  line-height: 1.55;
}
.chat-widget__body::-webkit-scrollbar { width: 6px; }
.chat-widget__body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

.chat-widget__intro {
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  color: #334155;
  border: 1px solid #e2e8f0;
}
.chat-widget__intro strong { color: var(--chat-color); }

.chat-widget__chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-chip {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: var(--chat-color);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  font-family: inherit;
}
.chat-chip:hover {
  background: var(--chat-color);
  color: #fff;
  border-color: var(--chat-color);
}
.chat-chip:active { transform: scale(0.98); }
.chat-chip--back {
  background: transparent;
  border-color: transparent;
  color: var(--chat-color);
  font-weight: 600;
  padding: 4px 0;
  margin-top: 8px;
}
.chat-chip--back:hover { background: transparent; color: var(--chat-accent); }

.chat-msg {
  padding: 10px 14px;
  border-radius: 14px;
  margin-bottom: 8px;
  max-width: 88%;
  word-wrap: break-word;
  animation: chat-fade 0.2s ease-out;
}
@keyframes chat-fade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-msg--user {
  background: var(--chat-color);
  color: #fff;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.chat-msg--bot {
  background: #fff;
  color: #334155;
  border: 1px solid #e2e8f0;
  border-bottom-left-radius: 4px;
  margin-right: auto;
}
.chat-msg--bot strong { color: var(--chat-color); }
.chat-msg--bot a {
  color: var(--chat-accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}
.chat-msg--bot a:hover { border-bottom-color: var(--chat-accent); }

.chat-widget__footer {
  padding: 10px 14px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  font-size: 0.75rem;
  color: #64748b;
  text-align: center;
  flex-shrink: 0;
}

/* ============================================================
   13. İletişim sayfası — Harita + QR grid
   ============================================================ */
.map-qr-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: var(--space-8, 32px);
}
.map-qr-grid .map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.12);
  background: #e2e8f0;
  min-height: 360px;
}
.map-qr-grid .map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.qr-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px 22px;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.10);
  border: 1px solid rgba(10, 37, 64, 0.08);
  text-align: center;
  position: relative;
}
.qr-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--chat-color, #0A2540) 0%, #1a3a5e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.qr-card__icon svg { width: 22px; height: 22px; }
.qr-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--chat-color, #0A2540);
  margin: 0 0 8px;
  line-height: 1.3;
}
.qr-card__desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 16px;
}
.qr-card__image-link {
  display: inline-block;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.qr-card__image-link:hover {
  transform: scale(1.04);
  border-color: var(--chat-accent, #B8860B);
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.25);
}
.qr-card__img {
  display: block;
  width: 220px;
  height: 220px;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.qr-card__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0 0 14px;
}
.qr-card__hint svg { width: 16px; height: 16px; color: var(--chat-accent, #B8860B); }
.qr-card__address {
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.5;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
  font-weight: 500;
}
.btn--block { display: flex; width: 100%; justify-content: center; }

@media (max-width: 880px) {
  .map-qr-grid {
    grid-template-columns: 1fr;
  }
  .map-qr-grid .map-wrapper { min-height: 320px; }
  .map-qr-grid .map-wrapper iframe { min-height: 320px; height: 320px; }
  .qr-card { padding: 20px 18px 18px; }
  .qr-card__img { width: 180px; height: 180px; }
}

@media (max-width: 480px) {
  .qr-card__img { width: 160px; height: 160px; }
}
