/* =============================================================
   Prime Tesisat & Tadilat
   Stil: Sade & premium — danışmanlık vibe
   Palet: krem-beyaz / lacivert / küçük altın aksan
   ============================================================= */

:root {
  --bg:         #fafaf7;
  --bg-2:       #f1efe9;
  --paper:      #ffffff;
  --ink:        #0e1c38;
  --ink-2:      #1f2c47;
  --ink-muted:  #5b6478;
  --line:       #e6e3da;
  --line-2:     #cfcbbe;
  --gold:       #c9a35a;
  --gold-deep:  #a4823f;
  --danger:     #c0392b;
  --success:    #1f7a3c;
  --container:  1180px;
  --gutter:     24px;
  --radius:     4px;
  --font: "Inter", "Söhne", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
  overflow-x: clip;
}

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

a { color: var(--ink); text-decoration: none; transition: color 120ms ease; }
a:hover { color: var(--gold-deep); }

::selection { background: var(--ink); color: var(--bg); }

/* --- Type scale --------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}
.h-display { font-size: clamp(24px, 2.6vw, 34px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.h-1       { font-size: clamp(28px, 3.2vw, 44px); }
.h-2       { font-size: clamp(22px, 2.4vw, 32px); }
.h-3       { font-size: clamp(18px, 1.8vw, 22px); }

p { margin: 0 0 1em; color: var(--ink-2); }

.muted { color: var(--ink-muted); }
.tiny  { font-size: 12.5px; letter-spacing: 0.02em; }
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.serif { font-feature-settings: "ss01"; font-style: italic; font-weight: 500; color: var(--ink); }

/* --- Container ---------------------------------------------- */

.shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.rule { height: 1px; background: var(--line); width: 100%; }

/* --- Top utility bar ---------------------------------------- */

.topbar {
  background: var(--paper);
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.topbar .row {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 38px;
  gap: 16px;
}
.topbar a { color: var(--ink-muted); }
.topbar a:hover { color: var(--ink); }
.topbar .left, .topbar .right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar .dot {
  width: 6px; height: 6px; background: var(--success); border-radius: 50%;
  display: inline-block; margin-inline-end: 8px; vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(31, 122, 60, 0.12);
}

/* --- Header / nav ------------------------------------------ */

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 38px; height: 38px;
  background: var(--ink);
  color: var(--bg);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  border-radius: var(--radius);
}
.brand .name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand .sub {
  display: block;
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; justify-content: center;
  gap: 4px;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color 120ms ease, background 120ms ease;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); background: var(--bg-2); }

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

/* --- Buttons ----------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  font: 500 14.5px/1 var(--font);
  letter-spacing: -0.005em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, transform 140ms ease;
  white-space: nowrap;
}
.btn:hover { background: var(--ink-2); color: var(--bg); border-color: var(--ink-2); }
.btn .arr { display: inline-block; transition: transform 140ms ease; }
.btn:hover .arr { transform: translateX(3px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-outline:hover { background: transparent; color: var(--ink); border-color: var(--ink); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--ink); }

.btn-link {
  background: none; border: 0; padding: 0;
  color: var(--ink);
  font-weight: 500;
  border-radius: 0;
  text-underline-offset: 4px;
  text-decoration: underline;
  text-decoration-color: var(--line-2);
  text-decoration-thickness: 1px;
}
.btn-link:hover { color: var(--gold-deep); text-decoration-color: var(--gold); background: none; }

.btn-block { width: 100%; justify-content: center; padding: 14px 22px; }

/* --- Language switcher ------------------------------------ */

.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
  font: 500 13px/1 var(--font);
  cursor: pointer;
}
.lang-btn:hover { border-color: var(--ink); color: var(--ink); }
.lang-menu {
  position: absolute;
  inset-block-start: calc(100% + 6px);
  inset-inline-end: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 180px;
  box-shadow: 0 12px 30px rgba(14, 28, 56, 0.10);
  display: none;
  z-index: 60;
  overflow: hidden;
}
.lang.open .lang-menu { display: block; }
.lang-menu a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  color: var(--ink-2);
  font-size: 14px;
}
.lang-menu a:hover { background: var(--bg); color: var(--ink); }
.lang-menu a .code { color: var(--ink-muted); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; }

.nav-close-row, .nav-cta-mobile { display: none; }
.nav-close {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--ink);
}
.nav-close:hover { border-color: var(--ink); background: var(--bg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 28, 56, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 55;
}
body.nav-open { overflow: hidden; }
body.nav-open .nav-overlay { opacity: 1; pointer-events: auto; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle:hover { border-color: var(--ink); }
.nav-toggle .bars { width: 18px; height: 12px; position: relative; display: block; }
.nav-toggle .bars::before, .nav-toggle .bars::after,
.nav-toggle .bars span { content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; }
.nav-toggle .bars::before { top: 1px; }
.nav-toggle .bars span { top: 50%; transform: translateY(-50%); }
.nav-toggle .bars::after { bottom: 1px; }

/* --- Hero --------------------------------------------------- */

.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero .shell { padding-block: 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: stretch;
  min-height: 320px;
}
.hero-text {
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.hero-photo {
  position: relative;
  background: var(--ink) center/cover no-repeat;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-text .eyebrow { margin-bottom: -8px; }
.hero h1.h-display { color: var(--ink); }
.hero h1 .em { color: var(--gold-deep); font-style: italic; font-weight: 500; }
.hero-sub {
  max-width: 480px;
  font-size: 15.5px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.55;
}
.hero-cta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 4px;
}
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}
.hero-meta .m {
  font-size: 13px;
  color: var(--ink-muted);
}
.hero-meta .m b {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

.hero-photo {
  position: relative;
  background: var(--ink) center/cover no-repeat;
  min-height: 280px;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 28, 56, 0.20));
  pointer-events: none;
}
.hero-photo .caption {
  position: absolute;
  inset-block-end: 24px; inset-inline-start: 24px;
  color: var(--bg);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  background: rgba(14, 28, 56, 0.65);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: var(--radius);
}

/* --- Section primitives ----------------------------------- */

.section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.section.soft { background: var(--bg-2); }
.section.dark { background: var(--ink); color: var(--bg); border-color: rgba(255,255,255,0.08); }
.section.dark h1, .section.dark h2, .section.dark h3 { color: var(--bg); }
.section.dark p { color: rgba(255,255,255,0.72); }
.section.dark .eyebrow { color: var(--gold); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .lhs h2 { margin-top: 14px; max-width: 18ch; }
.section-head .rhs { color: var(--ink-muted); font-size: 17px; max-width: 46ch; padding-bottom: 8px; }
.section.dark .section-head .rhs { color: rgba(255,255,255,0.7); }

/* --- Services (sade liste/grid) --------------------------- */

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  padding: 40px;
  min-height: 260px;
  transition: background 160ms ease;
}
.service-card:hover { background: var(--bg); color: var(--ink); }
.service-card .num {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 28px;
}
.service-card h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.service-card .desc {
  color: var(--ink-muted);
  font-size: 15.5px;
  max-width: 38ch;
  margin-bottom: 28px;
  flex: 1;
}
.service-card .more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: border-color 140ms ease, color 140ms ease;
}
.service-card:hover .more { color: var(--gold-deep); border-color: var(--gold); }
.service-card .more .arr { transition: transform 140ms ease; }
.service-card:hover .more .arr { transform: translateX(3px); }

/* --- Approach / process ----------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 36px;
  position: relative;
  padding-top: 34px;
}
.steps::before {
  content: "";
  position: absolute;
  inset-block-start: 7px;
  inset-inline-start: 0;
  inset-inline-end: 0;
  height: 1px;
  background: var(--line);
}
.section.dark .steps::before { background: rgba(255,255,255,0.18); }
.step {
  position: relative;
  padding: 8px 0 0;
  border: 0;
}
.step::before {
  content: "";
  position: absolute;
  inset-block-start: -34px;
  inset-inline-start: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--gold);
  z-index: 1;
  transition: background 160ms ease, transform 160ms ease;
}
.section.soft .step::before { background: var(--bg-2); }
.section.dark .step::before { background: var(--ink); border-color: var(--gold); }
.step:hover::before { background: var(--gold); transform: scale(1.15); }
.step .n {
  display: block;
  font-family: var(--font);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1;
}
.section.dark .step .n { color: var(--gold); }
.step .n .slash {
  font-weight: 400;
  color: var(--gold-deep);
  margin-inline: 2px 4px;
}
.step h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step p {
  font-size: 14.5px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.6;
  max-width: 32ch;
}
.section.dark .step p { color: rgba(255,255,255,0.65); }

/* --- About / two-column ----------------------------------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.two-col .lhs .eyebrow { margin-bottom: 14px; display: block; }
.two-col .lhs h2 { max-width: 14ch; }
.two-col .rhs p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 1em;
  max-width: 56ch;
}
.two-col .rhs .signature {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex; gap: 20px; align-items: center;
  font-size: 14px;
  color: var(--ink-muted);
}
.two-col .rhs .signature .badge {
  width: 44px; height: 44px;
  background: var(--ink);
  color: var(--bg);
  display: grid; place-items: center;
  border-radius: 50%;
  font-weight: 700;
}

/* --- Trust band -------------------------------------------- */

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
  background: var(--paper);
}
.trust-band .cell {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}
.trust-band .cell:last-child { border-right: 0; }
.trust-band .cell b {
  display: block;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.trust-band .cell span {
  font-size: 13.5px;
  color: var(--ink-muted);
}

/* --- Service areas ---------------------------------------- */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 1080px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .areas-grid { grid-template-columns: repeat(2, 1fr); } .area-cell { padding: 18px 16px; } }
.area-cell {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
  background: var(--paper);
}
.area-cell .city {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.area-cell .country {
  font-size: 13px;
  color: var(--ink-muted);
}

.areas-inline {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.areas-inline .sep { opacity: 0.4; margin: 0 8px; }
.areas-inline .city { color: var(--ink-2); font-weight: 500; }

/* --- FAQ (details/summary) -------------------------------- */

.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  list-style: none;
  color: var(--ink);
  gap: 24px;
  transition: color 140ms ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-deep); }
.faq summary .icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
  transition: transform 200ms ease;
}
.faq summary .icon::before, .faq summary .icon::after {
  content: ""; position: absolute; background: currentColor;
  inset-block-start: 50%; inset-inline-start: 50%;
  width: 14px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq summary .icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 220ms ease; }
.faq details[open] summary .icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq .answer {
  padding: 0 0 26px;
  max-width: 70ch;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* --- CTA strip ---------------------------------------------- */

.cta {
  background: var(--ink);
  color: var(--bg);
  border-block: 1px solid var(--ink);
}
.cta .row {
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
}
.cta h2 { color: var(--bg); max-width: 24ch; }
.cta h2 .em { color: var(--gold); font-style: italic; font-weight: 500; }
.cta .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta .btn-outline { color: var(--bg); border-color: rgba(255,255,255,0.4); }
.cta .btn-outline:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.cta .btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* --- Page header ------------------------------------------- */

.page-head {
  padding: 90px 0 70px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-head .crumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.page-head .crumbs a { color: var(--ink-2); }
.page-head .crumbs a:hover { color: var(--gold-deep); }
.page-head .crumbs .sep { opacity: 0.4; }
.page-head h1 { max-width: 18ch; }
.page-head .lead {
  max-width: 60ch;
  font-size: 18px;
  color: var(--ink-muted);
  margin-top: 20px;
}

/* --- Service detail --------------------------------------- */

.detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.detail-cover {
  aspect-ratio: 16/10;
  background: var(--ink) center/cover no-repeat;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.detail-body {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--ink-2);
}
.detail-body p { color: var(--ink-2); }
.detail-body h2, .detail-body h3 { margin: 1.4em 0 0.5em; }

.side-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 18px;
}
.side-card h4 {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 18px;
}
.side-card ul { list-style: none; padding: 0; margin: 0; }
.side-card li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px;
}
.side-card li:first-child { border-top: 0; }
.side-card li a { font-weight: 500; }
.side-card li .arr { color: var(--ink-muted); font-size: 14px; }

.side-card.dark { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.side-card.dark h4 { color: var(--gold); }
.side-card.dark li { border-color: rgba(255,255,255,0.12); }
.side-card.dark a { color: var(--bg); }
.side-card.dark a:hover { color: var(--gold); }

/* --- Forms -------------------------------------------------- */

.form-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font: 500 15px/1.5 var(--font);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(14, 28, 56, 0.08);
}
textarea { min-height: 140px; resize: vertical; }
select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%),
                    linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.honeypot { position: absolute; left: -9999px; }

.alert {
  border: 1px solid var(--line);
  padding: 14px 18px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  font-size: 14.5px;
}
.alert-success { border-color: rgba(31,122,60,0.3); color: var(--success); background: rgba(31,122,60,0.06); }
.alert-danger  { border-color: rgba(192,57,43,0.3); color: var(--danger); background: rgba(192,57,43,0.06); }

/* --- Contact split ---------------------------------------- */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}
.contact-info {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
  display: flex; flex-direction: column; gap: 32px;
}
.contact-info h3 { color: var(--bg); }
.contact-info .eyebrow { color: var(--gold); }
.contact-info p.lead { color: rgba(255,255,255,0.72); margin: 0; }
.contact-info .list { list-style: none; padding: 0; margin: 0; }
.contact-info .list li {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-direction: column; gap: 4px;
}
.contact-info .list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.10); }
.contact-info .list .k {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}
.contact-info .list a { color: var(--bg); font-weight: 500; font-size: 16px; }
.contact-info .list a:hover { color: var(--gold); }

/* --- Footer ------------------------------------------------- */

.site-footer {
  background: var(--paper);
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
}
.foot-top { padding: 70px 0 50px; border-bottom: 1px solid var(--line); }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.site-footer h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.foot-links { list-style: none; padding: 0; margin: 0; }
.foot-links li { padding: 5px 0; }
.foot-links a { color: var(--ink-2); font-size: 14.5px; }
.foot-links a:hover { color: var(--gold-deep); }
.foot-brand .brand { color: var(--ink); margin-bottom: 18px; display: inline-flex; }
.foot-brand p { max-width: 38ch; font-size: 14.5px; color: var(--ink-muted); }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-2);
  border-radius: 50%;
  transition: all 140ms ease;
}
.socials a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.socials svg { width: 16px; height: 16px; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  font-size: 12.5px;
  color: var(--ink-muted);
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Floating WhatsApp ------------------------------------ */

.fab-wa {
  position: fixed;
  inset-block-end: 22px;
  inset-inline-end: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.10);
  z-index: 45;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  text-decoration: none;
}
.fab-wa:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.12);
}
.fab-wa:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.fab-wa svg { width: 30px; height: 30px; display: block; }
.fab-wa .fab-tip {
  position: absolute;
  inset-block-end: 50%;
  inset-inline-end: calc(100% + 12px);
  transform: translateY(50%);
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}
.fab-wa:hover .fab-tip { opacity: 1; }

@media (max-width: 640px) {
  .fab-wa { width: 52px; height: 52px; inset-block-end: 18px; inset-inline-end: 18px; }
  .fab-wa svg { width: 26px; height: 26px; }
  .fab-wa .fab-tip { display: none; }
}

/* --- 404 -------------------------------------------------- */

.notfound {
  padding: 140px 0 120px;
  text-align: center;
}
.notfound .big {
  font-size: clamp(96px, 16vw, 200px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
}
.notfound .big span { color: var(--gold); }
.notfound p { color: var(--ink-muted); max-width: 48ch; margin: 18px auto 28px; }

/* --- RTL --------------------------------------------------- */

html[dir="rtl"] .btn:hover .arr { transform: translateX(-3px) scaleX(-1); }
html[dir="rtl"] .service-card:hover .more .arr { transform: translateX(-3px) scaleX(-1); }

/* --- Responsive ------------------------------------------- */

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; min-height: 0; }
  .hero .shell { padding-block: 28px; }
  .hero-photo { min-height: 220px; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-split { grid-template-columns: 1fr; }
  .cta .row { grid-template-columns: 1fr; padding: 70px 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 56px 36px; padding-top: 34px; }
  .trust-band { grid-template-columns: repeat(2, 1fr); }
  .trust-band .cell { border-bottom: 1px solid var(--line); }
  .trust-band .cell:nth-child(2n) { border-right: 0; }
}

@media (max-width: 780px) {
  .topbar-status, .topbar-email { display: none; }
  .topbar .row { justify-content: flex-end; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86%, 360px);
    background: var(--paper);
    border-inline-start: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 22px 22px 28px;
    transform: translateX(100%);
    transition: transform 240ms ease;
    z-index: 70;
    overflow-y: auto;
  }
  html[dir="rtl"] .nav-links { inset: 0 auto 0 0; transform: translateX(-100%); border-inline-start: 0; border-inline-end: 1px solid var(--line); }
  .nav-links.open { transform: translateX(0); }
  .nav-close-row { display: flex; justify-content: flex-end; padding: 0 0 14px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
  html[dir="rtl"] .nav-close-row { justify-content: flex-start; }
  .nav-links a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 16px; border-radius: 0; }
  .nav-cta-mobile { display: block; margin-top: 18px; padding: 0; border: 0; }
  .nav-cta-mobile a { padding: 14px 18px; border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
  .nav { gap: 12px; min-height: 64px; }
  .nav-right .btn { display: none; }
  .section { padding: 80px 0; }
  .services { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; min-height: 0; }
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    padding-inline-start: 32px;
  }
  .steps::before {
    inset-block-start: 14px;
    inset-block-end: 14px;
    inset-inline-start: 6px;
    inset-inline-end: auto;
    width: 1px;
    height: auto;
  }
  .step { padding: 0 0 36px; }
  .step:last-child { padding-bottom: 0; }
  .step::before { inset-block-start: 6px; inset-inline-start: -32px; }
  .step p { max-width: none; }
  .trust-band { grid-template-columns: 1fr; }
  .trust-band .cell { border-right: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-block, .contact-info { padding: 28px; }
  .hero-text { padding-block: 60px; }
  .hero h1.h-display { font-size: clamp(40px, 11vw, 64px); }
  .hero-meta { gap: 22px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
}
