/* Mert Çilingir — Antalya */
:root {
  --navy: #0b1f33;
  --navy-deep: #06111d;
  --navy-mid: #14304a;
  --amber: #f5b700;
  --amber-hover: #ffc933;
  --surface: #f3f6fa;
  --text: #152433;
  --muted: #5b6e80;
  --white: #ffffff;
  --wa: #25d366;
  --wa-dark: #1da851;
  --line: rgba(11, 31, 51, 0.08);
  --shadow: 0 20px 48px rgba(6, 17, 29, 0.16);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --bar-h: 64px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--bar-h) + var(--safe-bottom));
}

@media (min-width: 769px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.55em;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.15rem, 8.2vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 5vw, 2.65rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0 0 1rem; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container { width: min(1120px, calc(100% - 2.5rem)); }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--amber);
  color: var(--navy);
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 0.65rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.25rem;
  min-height: 48px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, filter 0.25s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); filter: brightness(0.96); }
.btn-lg { padding: 1.05rem 1.55rem; font-size: 1.02rem; min-height: 54px; }
.btn-block { width: 100%; }
.btn-call {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(245, 183, 0, 0.35);
}
.btn-call:hover { background: var(--amber-hover); }
.btn-whatsapp {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { background: var(--wa-dark); }
.btn-whatsapp img { width: 22px; height: 22px; }

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  min-width: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(245, 183, 0, 0.35));
}
.brand-mark svg { display: block; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11, 31, 51, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  background: rgba(6, 17, 29, 0.97);
  border-bottom-color: rgba(245, 183, 0, 0.28);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: var(--header-h);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
  margin-right: 0.5rem;
}
.nav a:not(.btn) {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:not(.btn):hover { color: var(--white); }
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav-call { display: none; }

.header-call {
  margin-left: auto;
  padding: 0.65rem 1rem;
  min-height: 42px;
  font-size: 0.88rem;
}
.header-call span { display: inline; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.55rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  :root { --header-h: 72px; }
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .header-call { margin-left: 0; padding: 0.85rem 1.25rem; min-height: 48px; font-size: 0.95rem; }
  .brand-name { font-size: 1.25rem; }
  .brand-sub { font-size: 0.85rem; }
}

/* Mobile full-screen nav */
@media (max-width: 899px) {
  .nav {
    display: flex;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    padding: 0.75rem 1.25rem calc(1.5rem + var(--bar-h) + var(--safe-bottom));
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.35s;
    overflow-y: auto;
    z-index: 99;
  }
  .nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a:not(.btn) {
    padding: 1.15rem 0.25rem;
    font-size: 1.35rem;
    font-family: var(--font-display);
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav a:not(.btn)::after { display: none; }
  .nav-call {
    display: inline-flex;
    margin-top: 1.5rem;
    width: 100%;
  }
  body.nav-open { overflow: hidden; }
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: visible;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 17, 29, 0.35) 0%, rgba(6, 17, 29, 0.55) 45%, rgba(6, 17, 29, 0.94) 100%),
    linear-gradient(90deg, rgba(6, 17, 29, 0.72) 0%, rgba(6, 17, 29, 0.2) 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto 0 max(1rem, calc((100% - 1120px) / 2 + 0px));
  padding: 3rem 0 calc(2.5rem + 0.5rem);
  overflow: visible;
}

@media (max-width: 899px) {
  .hero-content {
    margin: 0 auto;
    width: min(100% - 2rem, 640px);
    padding: 2.5rem 0 2.25rem;
  }
  .hero {
    min-height: calc(100svh - var(--header-h) - 8px);
  }
  .hero-title,
  .hero h1 {
    font-size: clamp(1.55rem, 7.5vw, 2.6rem);
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 0.85rem;
}

.hero-title,
.hero h1 {
  color: var(--white);
  margin-bottom: 0.85rem;
  min-height: 1.15em;
  display: block;
  overflow: visible;
  font-size: clamp(1.85rem, 7.2vw, 4.4rem);
}

.typewriter {
  display: inline-block;
  white-space: nowrap;
  max-width: 100%;
  padding-right: 0.2em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.typewriter::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.78em;
  margin-left: 0.08em;
  vertical-align: -0.05em;
  background: var(--amber);
  border-radius: 1px;
  animation: blink 0.9s steps(1) infinite;
}

.typewriter.is-holding::after {
  animation: none;
  opacity: 1;
}

@keyframes blink {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-lead {
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 34ch;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-actions .btn { width: 100%; }

@media (min-width: 520px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-actions .btn { width: auto; }
}

.hero-trust {
  margin: 1.15rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Sections */
.section { padding: clamp(3.25rem, 8vw, 6.25rem) 0; }

.section-head {
  max-width: 34rem;
  margin-bottom: 2.25rem;
}
.section-head p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}
.section-head-light h2 { color: var(--white); }
.section-head-light p:last-child { color: rgba(255, 255, 255, 0.72); }

/* Services */
.services { background: var(--white); }

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 1.35rem; }
}
@media (min-width: 980px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.service {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-mid);
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service:hover .service-visual img { transform: scale(1.05); }
.service-body { padding: 1.15rem 1.2rem 1.35rem; }
.service-body h3 { margin: 0 0 0.4rem; }
.service-body p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

.service-cta {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  border: 0;
  min-height: 100%;
  justify-content: center;
}
.service-cta:hover { transform: translateY(-4px); }
.service-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.75rem 1.35rem;
  height: 100%;
  justify-content: center;
}
.service-cta h3 { color: var(--white); margin: 0; }
.service-cta p { color: rgba(255, 255, 255, 0.78); margin: 0; }
.service-cta .btn { align-self: flex-start; margin-top: 0.25rem; }

/* Why */
.why {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(245, 183, 0, 0.1), transparent 45%),
    radial-gradient(ellipse at 100% 100%, rgba(20, 48, 74, 0.1), transparent 40%),
    var(--surface);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 860px) {
  .why-grid { grid-template-columns: 1.35fr 0.9fr; gap: 2.75rem; }
}

.why-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 40ch;
}

.why-list {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.75rem;
}
.why-list li {
  padding: 1rem 1rem 1rem 1.15rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--amber);
  box-shadow: 0 8px 24px rgba(6, 17, 29, 0.04);
}
.why-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.why-list span { color: var(--muted); font-size: 0.98rem; }

.why-panel {
  background: linear-gradient(160deg, var(--navy) 0%, #0f2a44 100%);
  color: var(--white);
  padding: 1.75rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.why-panel-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 0.45rem;
}
.why-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.why-phone:hover { color: var(--amber); }
.why-panel-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  margin-bottom: 1.35rem;
}

/* Areas */
.areas { background: var(--white); }

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .area-list { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
}
@media (min-width: 900px) {
  .area-list { grid-template-columns: repeat(4, 1fr); }
}

.area-list li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  padding: 0.95rem 1rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border-bottom: 3px solid var(--amber);
  text-align: center;
}

.areas-note {
  margin-top: 1.5rem;
  color: var(--muted);
  max-width: 46ch;
}

/* Contact */
.contact {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(245, 183, 0, 0.12), transparent 45%),
    var(--navy-deep);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 740px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  backdrop-filter: blur(8px);
}
.contact-card h3 {
  color: var(--amber);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.contact-big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}
.contact-big:hover { color: var(--amber); }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.contact-actions .btn {
  flex: 1 1 auto;
  min-width: 140px;
}
.contact-card address {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.map-link {
  display: inline-flex;
  align-items: center;
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.map-link:hover { text-decoration: underline; }

.contact-map {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  min-height: 240px;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: min(360px, 52vw);
  min-height: 240px;
  border: 0;
}
@media (min-width: 768px) {
  .contact-map iframe { height: 340px; }
}

/* Footer */
.site-footer {
  background: #040b13;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 calc(2rem + var(--safe-bottom));
}
@media (max-width: 768px) {
  .site-footer { padding-bottom: calc(1.5rem + var(--safe-bottom)); }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 2.25rem; }
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 32ch;
  font-size: 0.98rem;
}
.footer-col h3 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer-col p { margin-bottom: 0.4rem; }
.footer-col a:hover { color: var(--amber); }
.footer-address {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin-top: 0.65rem !important;
}

.footer-legal {
  padding: 1.5rem 0 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

.footer-legal-title {
  color: var(--amber);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-weight: 700;
}

.footer-legal-grid {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem 1.5rem;
}

@media (min-width: 640px) {
  .footer-legal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-legal-wide {
    grid-column: 1 / -1;
  }
}

.footer-legal-grid dt {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-display);
  font-weight: 600;
}

.footer-legal-grid dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
}

.footer-bottom {
  padding-top: 1.35rem;
  font-size: 0.88rem;
}
.footer-bottom .credit-link {
  color: var(--amber);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom .credit-link:hover {
  color: var(--amber-hover);
}
.footer-bottom .kvkk {
  color: rgba(255, 255, 255, 0.48);
  max-width: 64ch;
  margin-top: 0.65rem;
  line-height: 1.55;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(var(--bar-h) + var(--safe-bottom) + 0.85rem);
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42);
  transition: transform 0.25s var(--ease);
  animation: waPulse 2.4s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-float img { width: 100%; height: 100%; }
.whatsapp-float:hover {
  transform: scale(1.08);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  55% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

@media (min-width: 769px) {
  .whatsapp-float {
    bottom: max(1.5rem, env(safe-area-inset-bottom));
    right: max(1.5rem, env(safe-area-inset-right));
    width: 62px;
    height: 62px;
  }
}

/* Mobile call bar — only Hemen Ara; WhatsApp stays as floating button above */
.mobile-call-bar {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  background: var(--amber);
  padding-bottom: var(--safe-bottom);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.22);
}
.mobile-call-bar a,
.mobile-call-bar__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: var(--bar-h);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--navy);
  background: var(--amber);
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 769px) {
  .mobile-call-bar { display: none; }
}

/* Reveal: her zaman görünür — F5’te yanıp sönme yok */
.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .whatsapp-float,
  .typewriter::after {
    animation: none !important;
  }
  .typewriter::after { display: none; }
}

/* Legal pages */
.page-legal .legal-main {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--white);
  min-height: 60vh;
}

.legal-wrap {
  max-width: 760px;
}

.legal-back {
  margin: 0 0 1.25rem;
  font-weight: 600;
}

.legal-back a:hover { color: var(--navy-mid); text-decoration: underline; }

.legal-head { margin-bottom: 2rem; }

.legal-head h1 {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.legal-body h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.65rem;
}

.legal-body p,
.legal-body li {
  color: var(--text);
  font-size: 1.02rem;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.45rem;
}

.legal-body a {
  color: var(--navy-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-body a:hover { color: var(--amber); }

.legal-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.legal-related a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

.footer-bottom-solo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  border: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  margin: 0;
}

.footer-legal-links a:hover { color: var(--amber); }

.footer-bottom .kvkk a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}
