:root {
  --crimson: #f97316;
  --crimson-dark: #ea580c;
  --crimson-soft: #fff7ed;
  --navy: #0f1f3d;
  --navy-2: #152847;
  --ink: #0f1f3d;
  --muted: #5b677f;
  --line: rgba(21,34,56,.08);
  --bg: #f7f8fb;
  --bg-soft: #eef1f7;
  --white: #fff;
  --shadow: 0 14px 40px rgba(11,18,32,.1);
  --shadow-lg: 0 24px 60px rgba(11,18,32,.16);
  --shadow-lift: 0 20px 48px rgba(11,18,32,.14);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1140px;
  --header-h: 74px;
  --topbar-h: 38px;
  --mobile-bar-h: 64px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: "Fraunces", "Inter", Georgia, serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.18;
}

/* Focus — accessibility */
:focus-visible {
  outline: 3px solid rgba(249,115,22,.55);
  outline-offset: 3px;
}
.btn:focus-visible,
.main-nav a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(249,115,22,.55);
  outline-offset: 2px;
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, var(--crimson-dark), var(--crimson));
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar-inner { display: flex; gap: .65rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.topbar a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.35); }
.topbar a:hover { border-bottom-color: #fff; }
.topbar .sep { opacity: .55; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px) saturate(1.25);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(11,18,32,.04);
  transition: box-shadow .28s var(--ease), background .28s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(11,18,32,.09);
  background: rgba(255,255,255,.97);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--header-h);
}

.logo-img { height: 52px; width: auto; display: block; object-fit: contain; }
.logo-img-light { height: 56px; }
.footer-logo { display: inline-block; margin-bottom: .85rem; }

.logo { display: flex; align-items: center; gap: .7rem; color: var(--ink); flex-shrink: 0; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--crimson); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(249,115,22,.28);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: var(--display); font-size: 1rem; font-weight: 700; }
.logo-text small { font-size: .72rem; color: var(--muted); font-weight: 500; }
.main-nav { display: flex; gap: .15rem; margin-left: auto; margin-right: 1rem; }
.main-nav a {
  color: var(--muted); padding: .55rem .95rem; border-radius: 999px;
  font-weight: 600; font-size: .92rem; transition: color .2s ease, background .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--crimson-dark); background: var(--crimson-soft); }
.nav-toggle {
  display: none; margin-left: auto; background: transparent; border: 0;
  width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 22px; background: var(--ink); border-radius: 2px; margin-inline: auto; transition: transform .22s ease, opacity .22s ease; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.35rem; border-radius: 999px; font-weight: 700;
  border: 2px solid transparent; cursor: pointer; transition: transform .22s var(--ease), filter .22s ease, background .22s ease, box-shadow .22s ease;
  font-size: .95rem;
}
.btn-lg { padding: 1rem 1.55rem; font-size: 1.02rem; }
.btn-sm { padding: .55rem 1rem; font-size: .85rem; }
.btn-block { width: 100%; }
.btn-accent {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: #fff; box-shadow: 0 10px 28px rgba(249,115,22,.28);
}
.btn-accent:hover { filter: brightness(1.05); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(249,115,22,.34); }
.btn-light { background: #fff; color: var(--ink); box-shadow: 0 8px 22px rgba(11,18,32,.12); }
.btn-light:hover { background: #f0f3fa; transform: translateY(-1px); }
.btn-soft { background: var(--crimson-soft); color: var(--crimson-dark); }
.btn-soft:hover { background: #ffedd5; }
.btn-ghost {
  background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: rgba(15, 31, 61, .22);
  box-shadow: 0 2px 8px rgba(11, 18, 32, .05);
}
.btn-outline:hover {
  background: var(--bg-soft);
  border-color: rgba(15, 31, 61, .4);
  color: var(--ink);
}
/* Dark contexts keep white outline (footer / CTA band / navy sections) */
.cta-band .btn-outline,
.site-footer .btn-outline,
.section-navy .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
  box-shadow: none;
}
.cta-band .btn-outline:hover,
.site-footer .btn-outline:hover,
.section-navy .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
/* District pills on soft section — soft filled, navy text */
#bolgeler .btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: rgba(15, 31, 61, .2);
  font-weight: 700;
}
#bolgeler .btn-outline:hover {
  background: var(--crimson-soft);
  color: var(--crimson-dark);
  border-color: rgba(249, 115, 22, .4);
}
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { filter: brightness(.95); }
.header-cta { white-space: nowrap; }

/* Hero photo */
.hero {
  position: relative; color: #fff; overflow: hidden;
  padding: clamp(4.4rem, 9vw, 8rem) 0 clamp(5rem, 10vw, 8.5rem);
  min-height: min(82vh, 680px);
  display: flex; align-items: center;
}
.hero-photo {
  background-color: var(--navy);
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(118deg, rgba(15,31,61,.92) 0%, rgba(15,31,61,.62) 46%, rgba(249,115,22,.38) 100%),
    linear-gradient(to top, rgba(15,31,61,.55), transparent 44%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 740px; }
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24);
  color: #fff; padding: .48rem 1rem; border-radius: 999px;
  font-size: .82rem; font-weight: 700; margin-bottom: 1.2rem;
  backdrop-filter: blur(10px);
  animation: fadeUp .7s var(--ease) both;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.25);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(34,197,94,.25); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,.05); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.hero h1 {
  font-size: clamp(2.25rem, 5.4vw, 3.65rem); line-height: 1.08;
  margin: 0 0 1.05rem; font-weight: 800; letter-spacing: -.03em;
  text-shadow: 0 2px 32px rgba(0,0,0,.3);
  animation: fadeUp .75s .08s var(--ease) both;
}
.hero h1 .accent {
  color: #fb923c;
  background: linear-gradient(135deg, #fdba74, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  color: rgba(255,255,255,.93); font-size: 1.1rem; margin: 0 0 1.4rem; max-width: 560px;
  animation: fadeUp .75s .14s var(--ease) both;
}
.hero-phone {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.4vw, 2.15rem); font-weight: 700;
  letter-spacing: -.02em; color: #fff; margin-bottom: 1.45rem;
  animation: fadeUp .75s .2s var(--ease) both;
  transition: color .2s ease, transform .2s ease;
}
.hero-phone:hover { color: #fed7aa; transform: translateX(2px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; animation: fadeUp .75s .26s var(--ease) both; }

/* Trust bar — lifted card */
.trust-bar {
  background: transparent;
  position: relative; z-index: 2; margin-top: -2.1rem;
}
.trust-bar .container {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lift); border: 1px solid var(--line);
  padding-inline: .5rem;
}
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .5rem; padding: 1.45rem 0;
}
.trust-item {
  text-align: center; padding: .75rem .5rem;
  border-right: 1px solid var(--line);
  transition: transform .22s var(--ease);
}
.trust-item:hover { transform: translateY(-2px); }
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display: block; font-family: var(--display);
  font-size: 1.55rem; font-weight: 800; color: var(--crimson);
}
.trust-item span { color: var(--muted); font-size: .88rem; font-weight: 600; }

/* Sections — consistent rhythm */
.section { padding: clamp(3.6rem, 7vw, 5.8rem) 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; }
.section-head { text-align: center; margin-bottom: 2.75rem; }
.section-head h2 {
  margin: 0 0 .6rem; font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700; letter-spacing: -.025em; color: var(--ink);
}
.section-navy .section-head h2, .section-navy h2 { color: #fff; }
.section-head p { margin: 0; color: var(--muted); max-width: 560px; margin-inline: auto; }
.eyebrow {
  display: inline-block; margin: 0 0 .6rem; color: var(--crimson);
  font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow.light { color: #fdba74; }
.lede { color: var(--muted); margin: 0 0 1.35rem; font-size: 1.02rem; }
.tiny-note { font-size: .85rem !important; color: #8a95a8 !important; margin-top: .4rem !important; }
.reveal { animation: fadeUp .75s var(--ease) both; animation-delay: var(--delay, 0ms); }

/* Photo + icon service cards */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.photo-services .service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
  display: flex; flex-direction: column;
}
.photo-services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.photo-services .service-card:hover .service-photo img {
  transform: scale(1.04);
}
.service-photo {
  height: 180px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  background: #e8edf5; /* visible while image loads */
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s var(--ease);
  transform-origin: center;
  /* iOS paint fix */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.service-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,31,61,.32), transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.service-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.icon-services .service-card {
  background: #fff; border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column; gap: .65rem;
}
.icon-services .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card-featured {
  background: var(--navy) !important; color: #fff; border-color: transparent !important;
}
.service-card-featured h3 { color: #fff; }
.service-card-featured p { color: #c9d2e6; }
.service-card-featured .text-link { color: #fdba74; }
.service-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--crimson-soft); color: var(--crimson);
  display: grid; place-items: center;
  transition: transform .25s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.06); }
.service-card-featured .service-icon { background: rgba(249,115,22,.25); color: #fdba74; }
.service-card h3 { margin: 0; font-size: 1.18rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .95rem; flex: 1; }
.text-link { color: var(--crimson); font-weight: 700; font-size: .9rem; transition: gap .2s ease; }
.text-link:hover { text-decoration: underline; color: var(--crimson-dark); }

/* Process */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem;
}
.process-card {
  background: #fff; border-radius: var(--radius); padding: 1.7rem 1.45rem;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.process-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--crimson), var(--navy));
}
.process-n {
  font-family: var(--display);
  font-size: 2.1rem; font-weight: 800;
  color: var(--crimson); opacity: .92; display: block; margin-bottom: .45rem;
  letter-spacing: -.03em;
}
.process-card h3 { margin: 0 0 .45rem; font-size: 1.18rem; }
.process-card p { margin: 0; color: var(--muted); }
.process-compact { grid-template-columns: 1fr; gap: .85rem; }
.process-compact .process-card { padding: 1rem 1.1rem; }

/* Why / trust split */
.why-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 2.75rem; align-items: center;
}
.why-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.why-stat {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 1.5rem 1.2rem; text-align: center;
}
.why-stat strong { display: block; font-family: var(--display); font-size: 1.8rem; font-weight: 800; color: #fb923c; }
.why-stat span { color: #9aa6bf; font-size: .9rem; font-weight: 600; }
.why-visual {
  min-height: 400px; border-radius: calc(var(--radius) + 6px);
  background: var(--navy) center/cover no-repeat;
  background-image: linear-gradient(160deg, rgba(15,31,61,.42), rgba(249,115,22,.3)), var(--about-bg);
  position: relative; box-shadow: var(--shadow-lg);
}
.why-visual-card {
  position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-radius: var(--radius-sm); padding: 1.15rem 1.3rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.6);
}
.why-visual-card strong { display: block; font-family: var(--display); font-size: 1.15rem; color: var(--ink); }
.why-visual-card p { margin: .35rem 0 0; color: var(--muted); font-size: .92rem; }
.why-copy h2 { margin: 0 0 1rem; font-size: clamp(1.65rem, 3vw, 2.2rem); }
.check-list { display: grid; gap: 1.05rem; margin: 0 0 1.6rem; }
.check-list li {
  position: relative; padding-left: 1.9rem;
  display: flex; flex-direction: column; gap: .15rem;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .35rem;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: var(--crimson) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-width='2' d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E") center/10px no-repeat;
}
.check-list strong { font-size: .98rem; }
.check-list span { color: var(--muted); font-size: .92rem; }
.check-list.light li::before { background-color: var(--crimson); }
.check-list.light span, .check-list.light strong { color: #fff; }
.check-list.light span { color: #c9d2e6; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.testimonial-card {
  margin: 0; background: #fff; border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .9rem;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
  position: relative;
}
.testimonial-card::before {
  content: "“";
  position: absolute; top: .85rem; right: 1.15rem;
  font-family: var(--display); font-size: 2.4rem; line-height: 1;
  color: rgba(249,115,22,.18); pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card .stars { color: #f59e0b; letter-spacing: .08em; font-size: .95rem; }
.testimonial-card p { margin: 0; color: var(--ink); flex: 1; font-size: .98rem; }
.testimonial-card footer {
  display: flex; align-items: center; gap: .75rem;
  padding-top: .8rem; border-top: 1px solid var(--line);
}
.testimonial-card footer span { display: flex; flex-direction: column; }
.testimonial-card footer small { color: var(--muted); font-size: .85rem; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff; font-weight: 800; font-family: var(--display);
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15,31,61,.2);
}

/* Randevu */
.randevu-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.25rem; align-items: start;
}
.randevu-copy h2 { margin: 0 0 .8rem; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.randevu-copy > p { color: #c9d2e6; margin-bottom: 1.25rem; }
.contact-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.35rem; }
.contact-chips a {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: .48rem .9rem; border-radius: 999px; font-size: .85rem; font-weight: 600;
  transition: background .2s ease, border-color .2s ease;
}
.contact-chips a:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.3); }
.randevu-form {
  background: #fff; color: var(--ink); border-radius: calc(var(--radius) + 4px);
  padding: 2rem; box-shadow: 0 28px 64px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.12);
}
.randevu-form label {
  display: grid; gap: .4rem; font-weight: 600; font-size: .9rem; margin-bottom: 1.05rem;
}
.randevu-form input, .randevu-form select, .randevu-form textarea {
  width: 100%; padding: .82rem 1rem; border: 1px solid #cfd7e6;
  border-radius: var(--radius-sm); font: inherit; font-weight: 500;
  background: #fafbfc;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.randevu-form input:hover, .randevu-form select:hover, .randevu-form textarea:hover {
  border-color: #b8c2d6;
}
.randevu-form input:focus, .randevu-form select:focus, .randevu-form textarea:focus {
  outline: 0; border-color: var(--crimson); box-shadow: 0 0 0 4px rgba(249,115,22,.16);
  background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: .82rem; color: var(--muted); margin: 0 0 1.05rem; }
.form-actions { display: grid; gap: .7rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--crimson), var(--crimson-dark) 55%, var(--navy));
  color: #fff; border-radius: calc(var(--radius) + 6px); padding: 2.4rem 2.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.35rem; box-shadow: 0 18px 44px rgba(249,115,22,.26);
}
.cta-band h2 { margin: 0 0 .4rem; font-size: 1.6rem; }
.cta-band p { margin: 0; opacity: .92; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .65rem; }

/* Page hero (inner pages) */
.page-hero {
  background:
    linear-gradient(115deg, rgba(15,31,61,.94), rgba(249,115,22,.42) 72%),
    var(--navy);
  color: #fff; padding: 3.6rem 0 3.1rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: auto -10% -40% auto;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.28), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin: 0 0 .55rem; font-size: clamp(1.9rem, 4vw, 2.65rem); }
.page-hero p { margin: 0; color: rgba(255,255,255,.88); max-width: 640px; }

/* About / contact inner */
.about-grid, .contact-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.6rem;
}
.about-card, .contact-card {
  background: #fff; border-radius: var(--radius); padding: 1.95rem;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.about-card:hover, .contact-card:hover { box-shadow: var(--shadow-lg); }
.about-card h2, .contact-card h3 { font-family: var(--display); }
.about-panel {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 2.1rem; min-height: 300px; display: flex; flex-direction: column;
  justify-content: center; gap: 1rem;
  background-image: linear-gradient(160deg, rgba(15,31,61,.74), rgba(249,115,22,.44)), var(--about-bg, none);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
}
.about-panel .pill {
  display: inline-flex; background: rgba(255,255,255,.14); color: #fed7aa;
  padding: .35rem .75rem; border-radius: 999px; font-weight: 700; font-size: .8rem; width: fit-content;
}
.map-placeholder {
  background: linear-gradient(135deg, rgba(249,115,22,.07), rgba(11,18,32,.05)),
    repeating-linear-gradient(45deg, #eef1f7 0 12px, #e6eaf2 12px 24px);
  border-radius: var(--radius); min-height: 220px; display: grid; place-items: center;
  color: var(--muted); text-align: center; padding: 1.5rem; border: 1px solid var(--line);
}

/* Footer */
.site-footer { background: var(--navy); color: #c9d2e6; padding-top: 3.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.25rem; padding-bottom: 2.75rem;
}
.footer-brand p { color: #9aa6bf; max-width: 34ch; }
.footer-cta-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.15rem; }
.site-footer h3 {
  color: #fff; font-family: var(--font); font-size: .88rem; margin: 0 0 1.05rem;
  text-transform: uppercase; letter-spacing: .08em; font-weight: 800;
}
.footer-list { display: grid; gap: .6rem; }
.footer-list a { transition: color .2s ease; }
.footer-list a:hover { color: #fb923c; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1.15rem 0;
  font-size: .85rem; color: #9aa6bf;
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.admin-link { opacity: .4; font-size: .8rem; }
.admin-link:hover { opacity: .9; color: #fff; }
.footer-logo .logo-text strong { color: #fff; }
.footer-logo .logo-text small { color: #9aa6bf; }
.site-footer .btn-outline { border-color: rgba(255,255,255,.35); color: #fff; }

/* Float + mobile bar */
.wa-float {
  position: fixed; right: 1.15rem; bottom: 1.15rem; z-index: 120;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .22s var(--ease);
  animation: fadeUp .6s .4s var(--ease) both;
}
.wa-float:hover { transform: scale(1.08); }
.mobile-call-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 130;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 32px rgba(11,18,32,.14);
  padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom, 0px));
  gap: .55rem;
}
.mobile-call-bar .btn { flex: 1; padding: .88rem .75rem; font-size: .92rem; }

/* Admin leftovers */
.admin-body { background: var(--navy); min-height: 100vh; color: #fff; }
.admin-wrap { width: min(100% - 2rem, 920px); margin: 2rem auto 3rem; }
.admin-card { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .9rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: .75rem .9rem; border: 1px solid #cfd7e6; border-radius: var(--radius-sm); font: inherit;
}
.alert { padding: .85rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-weight: 600; }
.alert-ok { background: #e8f8ef; color: #166534; }
.alert-err { background: #fff7ed; color: #c2410c; }

@media (max-width: 960px) {
  .services-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid, .randevu-grid, .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-item:nth-last-child(-n+2) { border-bottom: 0; }
  .form-row { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none; position: absolute; left: 0; right: 0;
    top: calc(var(--topbar-h) + var(--header-h));
    background: #fff; flex-direction: column; padding: 1rem; margin: 0;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .mobile-call-bar { display: flex; }
  .wa-float { bottom: calc(var(--mobile-bar-h) + 1rem + env(safe-area-inset-bottom, 0px)); }
  body { padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px)); }
  .hide-sm { display: none !important; }
  .why-visual { min-height: 320px; }
}
@media (max-width: 560px) {
  .services-grid, .testimonials-grid, .why-stats { grid-template-columns: 1fr; }
  .cta-band { text-align: center; justify-content: center; padding: 1.85rem 1.4rem; }
  .cta-actions { justify-content: center; }
  .trust-bar { margin-top: 0; }
  .trust-bar .container { border-radius: 0; box-shadow: none; border-left: 0; border-right: 0; padding-inline: 0; }
  .hero { min-height: auto; padding: 3.5rem 0 3.2rem; }
  .randevu-form { padding: 1.5rem; }
  .section { padding: clamp(3rem, 8vw, 4rem) 0; }
}

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