/* =========================================================
   Ramazan Arslan Mali Müşavirlik — Ana Stil Dosyası
   Tema: Koyu lacivert / altın vurgu / kurumsal
   ========================================================= */

:root {
  --bg:         #08121e;
  --bg-alt:     #0b1728;
  --surface:    #0f1f30;
  --surface-2:  #132840;
  --ink:        #dde8f4;
  --muted:      #6e8ea8;
  --line:       rgba(255, 255, 255, 0.09);
  --line-soft:  rgba(255, 255, 255, 0.05);
  --gold:       #c9a04a;
  --gold-hover: #ddb85c;
  --gold-dim:   rgba(201, 160, 74, 0.15);
  --blue:       #4aa8d2;
  --blue-dim:   rgba(74, 168, 210, 0.12);
  --shadow:     0 24px 60px rgba(0, 0, 0, 0.6);
  --shadow-sm:  0 6px 24px rgba(0, 0, 0, 0.4);
  --radius:     10px;
  --radius-lg:  16px;
  --w:          min(1200px, calc(100% - 40px));
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
address { font-style: normal; }

img {
  max-width: 100%;
  display: block;
}

/* ── Tipografi ── */
h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { margin: 0; font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 800; }
h2 { margin: 0; font-size: clamp(1.9rem, 3.8vw, 3.1rem); font-weight: 700; }
h3 { margin: 0 0 10px; font-size: 1.1rem; font-weight: 700; }
p  { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

/* ── Ortak Sınıflar ── */
.section-label {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-heading h2 { margin-top: 8px; }

/* ── Butonlar ── */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  background: var(--gold);
  color: #0a0e14;
  border-color: var(--gold);
}
.button.primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 8px 28px rgba(201, 160, 74, 0.35);
}

.button.secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.button.secondary:hover {
  background: var(--blue-dim);
  box-shadow: 0 6px 22px rgba(74, 168, 210, 0.2);
}

.button.ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
}
.button.ghost:hover {
  color: var(--ink);
  border-color: rgba(255,255,255,0.25);
  background: var(--surface);
}

/* =========================================================
   HEADER / NAVİGASYON
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 18, 30, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.navbar {
  width: var(--w);
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.brand-text small {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.3;
  max-width: 300px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.18s, background 0.18s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--surface);
}

.nav-links .nav-cta {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(201,160,74,0.25);
  margin-left: 6px;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: #0a0e14;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-social-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.nav-social-btn:first-child:hover {
  color: #25d366;
  border-color: rgba(37,211,102,0.35);
  background: rgba(37,211,102,0.08);
}

.nav-social-btn:last-child:hover {
  color: #e164a0;
  border-color: rgba(225,100,160,0.35);
  background: rgba(225,100,160,0.08);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #07111d 0%, #0c1e34 55%, #081422 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 20% 40%, rgba(74,168,210,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 85% 80%, rgba(201,160,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Arka plan dekoratif logosu — orijinal logo.png, oranlar korunur.
   Logo siyah olduğu için invert ile soluk beyaz amblem olarak gösterilir. */
.hero-bg-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(420px, 58vw, 820px);
  height: auto;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
  filter: invert(1) grayscale(1) brightness(1.4);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--w);
  margin: 0 auto;
  padding: 80px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 60px;
}


.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  color: #ffffff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero-content h1 span { color: var(--gold); }

.hero-copy {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* Hero Kartları (4 mini kart) */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.hero-card:hover {
  border-color: rgba(201,160,74,0.35);
  transform: translateY(-3px);
  background: var(--surface-2);
}

/* Hero kart mini ikonu */
.hcard-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,160,74,0.2);
  color: var(--gold);
  margin-bottom: 12px;
  flex-shrink: 0;
}

.hero-card:nth-child(2) .hcard-icon,
.hero-card:nth-child(4) .hcard-icon {
  background: var(--blue-dim);
  border-color: rgba(74,168,210,0.2);
  color: var(--blue);
}

.hero-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}

.hero-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* =========================================================
   GÜVEN BANDI
   ========================================================= */
.trust-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band-inner {
  width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child { border-right: none; }

.trust-item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}

.trust-item span {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

/* =========================================================
   HAKKIMIZDA
   ========================================================= */
.section {
  width: var(--w);
  margin: 0 auto;
  padding: 88px 0;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.split-label h2 {
  margin-top: 8px;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
}

.split-label .button {
  margin-top: 28px;
}

.split-content {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.split-content p strong {
  color: var(--ink);
  font-weight: 700;
}

.about-quote {
  margin: 28px 0 0;
  padding: 20px 24px;
  background: var(--surface);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
}

/* =========================================================
   HİZMETLERİMİZ
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(201,160,74,0.3);
  transform: translateY(-3px);
}

/* Hizmet kartı ikon alanı — artık .service-card-head içinde */
.svc-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 160, 74, 0.2);
  color: var(--gold);
  flex-shrink: 0;
}

.service-card:nth-child(2) .svc-icon,
.service-card:nth-child(4) .svc-icon {
  background: var(--blue-dim);
  border-color: rgba(74, 168, 210, 0.2);
  color: var(--blue);
}

/* İkon ve başlık yan yana, ortalanmış */
.service-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.service-card-head h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--ink);
}

.service-card ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.service-card li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.94rem;
  color: #a7bfd2;
  line-height: 1.5;
}

.service-card li:first-child { border-top: none; }

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.svc-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.svc-message {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 8px;
}

.svc-tag {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}

/* =========================================================
   TEŞVİK BÖLÜMÜ
   ========================================================= */
.incentive-section {
  padding: 0;
  width: 100%;
}

.incentive-inner {
  width: var(--w);
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.incentive-copy .section-label { color: var(--blue); }

.incentive-copy h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
}

.incentive-copy p {
  color: var(--muted);
  margin-bottom: 20px;
}

.steps { display: grid; gap: 14px; }

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.step:hover { border-color: rgba(74,168,210,0.3); }

.step-num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--blue-dim);
  border: 1px solid rgba(74,168,210,0.25);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: 1rem;
}

.step h3 {
  margin: 2px 0 6px;
  font-size: 1rem;
  color: var(--ink);
}

.step p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* =========================================================
   NEDEN BİZ?
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-item {
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}

.why-item:hover {
  border-color: rgba(201,160,74,0.3);
  transform: translateY(-3px);
}

.why-item--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 20px;
}

.why-item--wide .why-icon { margin-top: 4px; }

.why-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--gold-dim);
  border: 1px solid rgba(201,160,74,0.2);
  border-radius: 10px;
  color: var(--gold);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.why-item--wide .why-icon { margin-bottom: 0; }

.why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.why-item--wide h3 { margin-bottom: 6px; }

/* =========================================================
   İLETİŞİM
   ========================================================= */
.contact-section {
  padding: 0;
  width: 100%;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}

.contact-inner {
  width: var(--w);
  margin: 0 auto;
  padding: 88px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.contact-copy h2 {
  margin-top: 8px;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
}

.contact-copy p {
  color: var(--muted);
  margin: 16px 0 24px;
}

.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-address svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.contact-channels {
  display: grid;
  gap: 10px;
}

.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.18s, background 0.2s;
}

.channel:hover {
  border-color: rgba(201,160,74,0.3);
  transform: translateX(4px);
  background: var(--surface-2);
}

.channel-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.channel-icon--green  { background: rgba(37,211,102,0.12); color: #25d366; }
.channel-icon--blue   { background: rgba(74,168,210,0.12); color: var(--blue); }
.channel-icon--gold   { background: var(--gold-dim);        color: var(--gold); }
.channel-icon--pink   { background: rgba(225,100,160,0.12); color: #e164a0; }
.channel-icon--teal   { background: rgba(56,178,172,0.12);  color: #38b2ac; }

.channel-info {
  flex: 1;
  min-width: 0;
}

.channel-info span {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.channel-info strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.channel-sub {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
}

.channel-arrow {
  color: var(--muted);
  flex-shrink: 0;
  transition: color 0.18s, transform 0.18s;
}

.channel:hover .channel-arrow {
  color: var(--gold);
  transform: translateX(3px);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #060e18;
  border-top: 1px solid var(--line);
}

/* Üst satır: marka | hızlı iletişim | yukarı */
.footer-top-row {
  width: var(--w);
  margin: 0 auto;
  padding: 32px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  padding: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.footer-brand strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.footer-brand small {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
}

/* Hızlı iletişim bağlantıları */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #a7bfd2;
  transition: color 0.18s;
}

.footer-links a svg { color: var(--gold); flex-shrink: 0; }

.footer-links a:hover { color: #ffffff; }

.footer-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: color 0.18s, border-color 0.18s;
}

.footer-top:hover {
  color: var(--gold);
  border-color: rgba(201,160,74,0.3);
}

/* Alt satır: telif | adres */
.footer-bottom-row {
  width: var(--w);
  margin: 0 auto;
  padding: 18px 0 30px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.footer-address {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

/* =========================================================
   RESPONSIVE — Tablet (≤1040px)
   ========================================================= */
@media (max-width: 1040px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 80px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: #0d1e2e;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 16px;
    border-radius: 8px;
  }

  .nav-links .nav-cta { margin-left: 0; }

  .hero-inner,
  .section-split,
  .incentive-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-inner { padding: 56px 0 50px; }

  .trust-band-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); border-right: none; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item--wide { grid-column: 1 / -1; }
}

/* =========================================================
   RESPONSIVE — Mobil (≤720px)
   ========================================================= */
@media (max-width: 720px) {
  :root { --w: min(100% - 28px, 1200px); }

  html { scroll-padding-top: 80px; }

  .hero-bg-logo { display: none; }

  .hero-inner { padding: 44px 0 44px; gap: 32px; }

  .hero-cards { grid-template-columns: 1fr 1fr; }

  .service-grid { grid-template-columns: 1fr; }

  .trust-band-inner { grid-template-columns: 1fr; }

  .trust-item {
    border-right: none;
    border-top: 1px solid var(--line);
    padding: 22px 20px;
  }
  .trust-item:first-child { border-top: none; }

  .why-grid { grid-template-columns: 1fr; }
  .why-item--wide { grid-column: auto; display: block; }
  .why-item--wide .why-icon { margin-bottom: 16px; }

  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-address { text-align: left; }
}

/* =========================================================
   ANİMASYONLAR
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   SABİT WHATSAPP BUTONU
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,0.6);
}

/* =========================================================
   İLETİŞİM — ÇALIŞMA SAATLERİ
   ========================================================= */
.contact-hours {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-hours svg {
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}

.contact-hours strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-hours span {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
}

/* =========================================================
   FOOTER — KVKK LİNKİ
   ========================================================= */
.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-kvkk {
  font-size: 0.76rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s;
}

.footer-kvkk:hover { color: var(--gold); }

@media (max-width: 720px) {
  .footer-bottom-right {
    align-items: flex-start;
  }
  .footer-address { text-align: left; }
}

/* Header scrolled state */
.site-header.scrolled {
  background: rgba(6, 12, 22, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* =========================================================
   RESPONSIVE — Küçük Mobil (≤440px)
   ========================================================= */
@media (max-width: 440px) {
  .hero-cards { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; }

  .hero-actions .button { width: 100%; justify-content: center; }

  .brand-text small { max-width: 170px; }

  .site-logo { width: 46px; height: 46px; padding: 5px; }
}
