﻿:root {
  --ink: #111827;
  --muted: #5b6575;
  --line: #d9dee7;
  --paper: #f7f8fb;
  --white: #ffffff;
  --yellow: #f5c542;
  --yellow-dark: #c48a00;
  --teal: #0f766e;
  --red: #b42318;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.14);
  --font-main: "Segoe UI", Inter, Roboto, Arial, sans-serif;
  --font-display: "Segoe UI", Inter, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-main);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

body,
button,
input,
select,
textarea {
  overflow-wrap: anywhere;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #f8d76b;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.28) 0 10%, transparent 11%),
    linear-gradient(145deg, #203044 0%, #0d1728 48%, #10353a 100%);
  border-radius: 8px;
  border: 1px solid rgba(248, 215, 107, 0.62);
  box-shadow:
    0 14px 30px rgba(17, 24, 39, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 -14px 28px rgba(248, 215, 107, 0.08);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 8px;
  width: 9px;
  height: 24px;
  background: linear-gradient(180deg, #f8d76b, #f08a24);
  clip-path: polygon(52% 0, 100% 0, 66% 44%, 100% 44%, 28% 100%, 46% 58%, 12% 58%);
  filter: drop-shadow(0 5px 8px rgba(240, 138, 36, 0.34));
}

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

.brand strong {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--yellow-dark);
}

.header-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 210px;
  min-height: 62px;
  padding: 0 22px 0 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, #d92d20 0%, var(--red) 58%, #7a1a12 100%);
  border-radius: 8px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 32px rgba(180, 35, 24, 0.38);
  isolation: isolate;
  overflow: hidden;
}

.header-call::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 48%, transparent 100%);
  transform: translateX(-120%);
  animation: callShine 3.6s ease-in-out infinite;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  padding: 6px 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 999px;
}

.language-switcher a:hover,
.language-switcher a.is-active {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(251, 199, 56, 0.95), rgba(255, 228, 130, 0.95));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.header-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  min-width: 156px;
}

.header-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 7px 8px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
}

.header-socials img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.header-socials span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.header-socials strong {
  display: none;
}

.header-socials a:hover {
  color: var(--yellow-dark);
  transform: translateY(-1px);
}

.header-247-badge {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-width: 92px;
  height: 58px;
  padding: 8px 11px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(248, 215, 107, 0.16) 0 3px, transparent 3px),
    radial-gradient(circle at 50% 0%, rgba(248, 215, 107, 0.18), transparent 42%),
    linear-gradient(145deg, #172033 0%, #0b1320 54%, #10353a 100%);
  border: 1px solid rgba(248, 215, 107, 0.68);
  border-radius: 8px;
  box-shadow:
    0 14px 28px rgba(17, 24, 39, 0.18),
    0 0 0 3px rgba(248, 215, 107, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.13);
  transform: none;
  overflow: hidden;
}

.header-247-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 48%, transparent 100%);
  transform: translateX(-130%);
  animation: callShine 4.4s ease-in-out infinite;
}

.header-247-badge::after {
  content: "";
  display: none;
}

.header-247-badge strong,
.header-247-badge small {
  display: block;
  line-height: 1;
}

.header-247-badge strong {
  color: #f8d76b;
  font-size: 23px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.2),
    0 0 16px rgba(248, 215, 107, 0.26);
}

.header-247-badge small {
  position: relative;
  margin-top: 6px;
  padding-top: 5px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-247-badge small::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  left: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 215, 107, 0.74), transparent);
}

.header-call::before,
.button[href^="tel:"]::before,
.button[href*="wa.me"]::before,
.mobile-cta a::before {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 19px 19px;
}

.header-call::before,
.button[href^="tel:"]::before,
.mobile-cta a[href^="tel:"]::before {
  content: "";
  color: var(--red);
  background-color: var(--white);
  background-image: url("assets/icon-phone.svg");
  animation: callPulse 1.8s ease-in-out infinite;
}

.button[href*="wa.me"]::before,
.mobile-cta a[href*="wa.me"]::before {
  content: "";
  background-color: var(--white);
  background-image: url("assets/icon-whatsapp.svg");
  background-size: 23px 23px;
}

.header-call span,
.header-call strong {
  display: block;
}

.header-call span {
  font-size: 16px;
  line-height: 1;
  opacity: 0.96;
  text-transform: uppercase;
}

.header-call strong {
  margin-top: 3px;
  font-size: 17px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  background: #141922;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -26%;
  width: min(720px, 68vw);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 197, 66, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(245, 197, 66, 0.08), rgba(245, 197, 66, 0) 62%),
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 92px);
  opacity: 0.7;
}

.page-hero {
  min-height: 430px;
  padding: 92px clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.94), rgba(8, 13, 22, 0.76)),
    url("assets/hero-elektrikci.png") center right / cover no-repeat;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.district-hero {
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.94), rgba(8, 13, 22, 0.78)),
    url("assets/canlar-is-5.jpg") center / cover no-repeat;
}

.service-hero {
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.94), rgba(8, 13, 22, 0.76)),
    var(--service-bg) center / cover no-repeat;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.92) 0%, rgba(8, 13, 22, 0.72) 42%, rgba(8, 13, 22, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 13, 22, 0.82) 0%, rgba(8, 13, 22, 0.08) 38%);
}

.hero-district-cloud {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(84px, 12vw, 150px);
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  width: min(470px, 40vw);
  opacity: 0.8;
}

.hero-district-cloud span,
.hero-district-cloud a {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.hero-district-cloud a:hover,
.hero-district-cloud a:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 100%);
  min-height: calc(100vh - 78px);
  padding: 64px clamp(18px, 5vw, 72px) 112px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  font-family: var(--font-display);
  max-width: 760px;
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 950;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-note {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
}

.button.primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 14px 26px rgba(245, 197, 66, 0.24);
}

.button.secondary {
  color: var(--white);
  background: var(--whatsapp-dark);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 26px rgba(18, 140, 126, 0.2);
}

.button.dark {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 26px rgba(15, 118, 110, 0.18);
}

.button.light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button:hover,
.header-call:hover,
.header-socials a:hover,
.mobile-cta a:hover {
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.btn::before {
  content: "";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  background: #fff center / 18px 18px no-repeat;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12);
}

.btn[href^="tel:"]::before {
  background-image: url("assets/icon-phone.svg");
}

.btn[href*="wa.me"]::before {
  background-image: url("assets/icon-whatsapp.svg");
}

.btn-primary {
  background: var(--yellow);
}

.btn-dark {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 18px 34px rgba(15, 118, 110, 0.2);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.92);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span,
.trust-strip a {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.trust-strip a:hover,
.trust-strip a:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1160px;
  margin: -54px auto 0;
  padding: 0 clamp(18px, 4vw, 28px);
  position: relative;
  z-index: 5;
}

.quick-panel article,
.quick-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 128px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  border: 1px solid rgba(17, 24, 39, 0.07);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.quick-panel article:first-child,
.quick-card:first-child {
  border-radius: 8px 0 0 8px;
}

.quick-panel article:last-child,
.quick-card:last-child {
  border-radius: 0 8px 8px 0;
}

.quick-panel strong,
.quick-panel span,
.quick-panel small {
  display: block;
}

.quick-panel strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.quick-panel span,
.quick-panel small {
  color: var(--muted);
}

.quick-card {
  color: inherit;
}

.quick-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 22px rgba(17, 24, 39, 0.12);
}

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

.quick-card:hover strong {
  color: var(--yellow-dark);
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 90px clamp(18px, 4vw, 28px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section h2,
.contact-section h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 950;
}

.section-heading p:not(.eyebrow),
.split-section p,
.contact-section p {
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.seo-search-section {
  padding-top: 66px;
  padding-bottom: 54px;
}

.local-seo-cluster {
  padding-top: 58px;
  padding-bottom: 58px;
}

.local-intent-section {
  max-width: 1160px;
}

.local-intent-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 26px;
}

.local-intent-card {
  min-height: 252px;
}

.local-article {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.local-article h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.local-article h3:not(:first-child) {
  margin-top: 26px;
}

.local-article p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.local-faq-section {
  padding-top: 56px;
}

.seo-search-section .section-heading {
  max-width: 820px;
}

.seo-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 251, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(245, 197, 66, 0.22), transparent 32%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.seo-chip-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  color: #233044;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.seo-chip-cloud a:nth-child(3n + 1) {
  border-color: rgba(15, 118, 110, 0.22);
}

.seo-chip-cloud a:nth-child(3n + 2) {
  border-color: rgba(196, 138, 0, 0.25);
}

.seo-chip-cloud a:hover,
.seo-chip-cloud a:focus-visible {
  transform: translateY(-2px);
  color: var(--ink);
  background: #fff7d8;
  border-color: var(--yellow-dark);
}

.service-catalog {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 250px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.075);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  border-color: rgba(248, 215, 107, 0.58);
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.11);
  transform: translateY(-2px);
}

.service-catalog .service-card {
  min-height: 372px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--yellow-dark);
  background: #fff4c8;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.card-icon.image-icon {
  width: 78px;
  height: 58px;
  padding: 0;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid var(--line);
}

.card-icon.image-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card > .card-icon.image-icon {
  display: block;
  width: 100%;
  height: 178px;
  margin-bottom: 20px;
  border-radius: 8px;
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.service-card > .card-icon.image-icon img {
  transition: transform 0.25s ease;
}

.service-card:hover > .card-icon.image-icon img {
  transform: scale(1.04);
}

.service-card h3,
.process-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.service-card h3 a {
  color: inherit;
}

.service-card h3 a:hover {
  color: var(--yellow-dark);
}

.service-card p,
.process-grid p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  padding: 10px 13px;
  background: var(--white);
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
}

.area-list a {
  padding: 10px 13px;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf4 0%, #fff4c8 100%);
  border: 1px solid #e4b735;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(196, 138, 0, 0.12);
}

.area-list a:hover,
.area-list a:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow-dark);
  transform: translateY(-1px);
}

.area-secondary {
  margin-top: -54px;
}

.process-section {
  padding-top: 70px;
}

.work-section {
  padding-top: 30px;
}

.video-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  padding: 24px;
  color: var(--white);
  background: #172033;
  border-radius: 8px;
}

.video-feature h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.video-feature p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.video-feature video {
  width: 100%;
  max-height: 420px;
  background: #05070c;
  border-radius: 8px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-grid figure {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.work-grid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  background: #e7eaf0;
}

.work-grid figcaption {
  padding: 14px 16px 16px;
  color: #344054;
  font-weight: 900;
}

.compact-work-grid img {
  height: 240px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process-grid article {
  padding: 24px;
  background: #172033;
  color: var(--white);
  border-radius: 8px;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.link-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.link-list a {
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.link-list a:hover {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.faq-section {
  padding-top: 40px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 19px 22px;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  padding: 0 22px 20px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin: 0 auto 42px;
  max-width: 1160px;
  padding: 44px clamp(18px, 4vw, 36px);
  background: var(--yellow);
  border-radius: 8px;
}

.contact-section h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  overflow-wrap: normal;
  word-break: normal;
}

.contact-section .eyebrow {
  color: #5f4400;
}

.contact-section p {
  color: #46360c;
}

.contact-actions {
  justify-content: flex-end;
  margin: 0;
}

.store-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(340px, 1.02fr);
  gap: clamp(26px, 3vw, 38px);
  align-items: center;
  margin: 0 auto 34px;
  max-width: 1160px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.97));
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(17, 24, 39, 0.1);
}

.store-section img {
  width: 100%;
  height: clamp(260px, 28vw, 330px);
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.12);
}

.store-content {
  min-width: 0;
}

.store-content h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.store-content p {
  color: var(--muted);
}

.store-info {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.store-info li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #344054;
  font-weight: 800;
}

.store-info span {
  min-width: 74px;
  color: var(--muted);
  font-weight: 900;
}

.store-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 460px;
  align-items: stretch;
}

.store-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.store-actions a::before {
  content: "";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  background: #fff center / 18px 18px no-repeat;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12);
}

.store-actions a[href^="tel:"]::before {
  background-image: url("assets/icon-phone.svg");
}

.store-actions a[href*="wa.me"]::before {
  background-image: url("assets/icon-whatsapp.svg");
}

.store-actions a[href^="tel:+902"] {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 18px 34px rgba(15, 118, 110, 0.2);
}

.store-actions a[href*="wa.me"] {
  background: rgba(255, 255, 255, 0.96);
}

.store-actions .btn {
  justify-content: center;
  min-height: 56px;
  padding-inline: 18px;
}

.store-actions .btn-ghost {
  grid-column: 1 / -1;
  justify-self: start;
  min-width: 190px;
}

.store-contact-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  max-width: 460px;
}

.store-contact-list div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  min-width: 0;
}

.store-contact-list dt {
  color: var(--muted);
  font-weight: 950;
}

.store-contact-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.service-vehicle-section {
  display: grid;
  grid-template-columns: minmax(430px, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 2.8vw, 36px);
  align-items: center;
  margin: 0 auto 34px;
  max-width: 1240px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(248, 215, 107, 0.14), transparent 35%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(15, 118, 110, 0.9));
  border: 1px solid rgba(248, 215, 107, 0.34);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.16);
}

.service-vehicle-section img {
  width: 100%;
  height: auto !important;
  display: block;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 0 !important;
  max-height: none !important;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.service-vehicle-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.service-vehicle-content h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.service-vehicle-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.service-vehicle-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.service-vehicle-points li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  line-height: 1.25;
}

.service-vehicle-points li::before {
  content: "";
  width: 26px;
  height: 26px;
  background: var(--yellow) url("assets/lightning-icon.svg") center / 16px 16px no-repeat;
  border-radius: 999px;
  flex: 0 0 auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: #d7dee8;
  background: #111827;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

@keyframes callPulse {
  0%, 100% {
    transform: rotate(0deg) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.36);
  }

  38% {
    transform: rotate(-7deg) scale(1.05);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }

  58% {
    transform: rotate(6deg) scale(1.02);
  }
}

@keyframes callShine {
  0%, 52%, 100% {
    transform: translateX(-120%);
  }

  68% {
    transform: translateX(120%);
  }
}

.mobile-cta {
  display: none;
}

.scroll-top-button {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 79;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #f8d76b;
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 255, 255, 0.28) 0 9%, transparent 10%),
    linear-gradient(145deg, #203044 0%, #0d1728 54%, #10353a 100%);
  border: 1px solid rgba(248, 215, 107, 0.46);
  border-radius: 999px;
  box-shadow:
    0 18px 34px rgba(17, 24, 39, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.11),
    0 0 0 0 rgba(248, 215, 107, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.scroll-top-button::before,
.scroll-top-button::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
}

.scroll-top-button::before {
  inset: -8px;
  border: 1px solid rgba(248, 215, 107, 0.32);
}

.scroll-top-button::after {
  right: 8px;
  top: 10px;
  width: 7px;
  height: 7px;
  background: #ffffff;
  box-shadow:
    -22px 11px 0 rgba(255, 255, 255, 0.72),
    -9px 30px 0 rgba(255, 255, 255, 0.56);
}

.scroll-top-button span {
  display: block;
  font-size: 25px;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(248, 215, 107, 0.32));
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  box-shadow:
    0 20px 38px rgba(17, 24, 39, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 0 7px rgba(248, 215, 107, 0.1);
  transform: translateY(-1px) scale(1.025);
  outline: none;
}

.scroll-top-button:active {
  transform: translateY(1px) scale(0.97);
  box-shadow:
    0 12px 24px rgba(17, 24, 39, 0.2),
    inset 0 4px 14px rgba(0, 0, 0, 0.26),
    0 0 0 5px rgba(248, 215, 107, 0.08);
}

.scroll-top-button:hover::before,
.scroll-top-button:focus-visible::before {
  opacity: 1;
  animation: sparkRing 0.7s ease-out;
}

.scroll-top-button:hover::after,
.scroll-top-button:focus-visible::after {
  opacity: 1;
  animation: sparkDots 0.7s ease-out;
}

.scroll-top-button.is-sparking {
  animation: lightningTap 0.32s ease-out;
}

.scroll-top-button.is-sparking::before {
  opacity: 1;
  animation: sparkRing 0.5s ease-out;
}

.scroll-top-button.is-sparking::after {
  opacity: 1;
  animation: sparkDots 0.5s ease-out;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  font-family: var(--font-main);
}

.chat-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 13px;
  color: var(--white);
  background: #172033;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.24);
  cursor: pointer;
}

.chat-toggle::before {
  content: "";
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--yellow) url("assets/icon-chat.svg") center / 21px 21px no-repeat;
  border-radius: 999px;
  color: var(--ink);
}

.chat-toggle::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 44px;
  width: 10px;
  height: 10px;
  background: var(--whatsapp);
  border: 2px solid var(--white);
  border-radius: 999px;
}

.chat-toggle span {
  display: block;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
}

.chat-toggle small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 800;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  display: none;
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.24);
}

.chat-widget.is-open .chat-panel {
  display: block;
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  color: var(--white);
  background: #172033;
}

.chat-head strong,
.chat-head small {
  display: block;
}

.chat-head strong {
  font-size: 16px;
  line-height: 1.1;
}

.chat-head small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.chat-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.chat-body {
  display: grid;
  gap: 10px;
  max-height: 380px;
  padding: 14px;
  overflow: auto;
  background: #f7f8fb;
}

.chat-message {
  width: fit-content;
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 8px;
  color: #253044;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 14px;
}

.chat-message.user {
  justify-self: end;
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-quick button {
  padding: 8px 10px;
  color: var(--ink);
  background: #fff4c8;
  border: 1px solid #edc448;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.chat-form input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.chat-form button,
.chat-whatsapp {
  min-height: 42px;
  padding: 0 13px;
  color: var(--white);
  background: var(--whatsapp-dark);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.chat-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 12px 12px;
}

.chat-whatsapp::before {
  content: "";
  width: 24px;
  height: 24px;
  background: var(--white) url("assets/icon-whatsapp.svg") center / 19px 19px no-repeat;
  border-radius: 999px;
}

@keyframes chatBeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.14);
  }
}

@keyframes sparkRing {
  from {
    transform: scale(0.78);
    opacity: 0.46;
  }

  to {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes sparkDots {
  from {
    transform: translateY(1px) scale(0.8);
    opacity: 0.68;
  }

  to {
    transform: translateY(-6px) scale(1.08);
    opacity: 0;
  }
}

@keyframes lightningTap {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  22% {
    transform: translateY(1px) scale(0.96);
  }

  48% {
    transform: translateY(-1px) scale(1.03);
  }

  72% {
    transform: translateY(0) scale(1.01);
  }
}


.contact-form-section {
  padding-top: 70px;
}

.form-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
}

.form-intro {
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.96), rgba(15, 118, 110, 0.9)),
    url("assets/canlar-is-11.jpg") center / cover no-repeat;
}

.form-intro .eyebrow {
  color: var(--yellow);
}

.form-intro h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
}

.form-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.form-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.form-trust-list span {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.credentials-section {
  padding-top: 52px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.credential-card {
  min-height: 360px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 251, 0.96)),
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.24), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.credential-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #f7f8fb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.credential-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.credential-card p {
  margin: 0;
  color: var(--muted);
}

.service-request-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(247, 248, 251, 0.55), rgba(255, 255, 255, 1));
}

.service-request-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-weight: 900;
}

.service-request-form input,
.service-request-form select,
.service-request-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 750;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
  outline: none;
}

.service-request-form input:focus,
.service-request-form select:focus,
.service-request-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.service-request-form textarea {
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  color: var(--white);
  background: var(--whatsapp-dark);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(18, 140, 126, 0.22);
}

.form-submit::before {
  content: "";
  width: 24px;
  height: 24px;
  background: var(--white) url("assets/icon-whatsapp.svg") center / 19px 19px no-repeat;
  border-radius: 999px;
}

.form-submit:hover {
  transform: translateY(-1px);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.article-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 22px;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
}

.article-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.article-card p {
  margin: 0;
  color: var(--muted);
}

.sub-hero.article-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 420px);
  align-items: center;
  gap: 34px;
  padding: 34px;
  background: #f7faf9;
  border: 1px solid rgba(16, 53, 58, 0.1);
  border-radius: 8px;
}

.blog-landing-hero {
  grid-template-columns: 1fr;
  max-width: 980px;
  text-align: left;
}

.blog-landing-hero .blog-title-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  color: #6f5100;
  background: rgba(248, 215, 107, 0.2);
  border: 1px solid rgba(248, 215, 107, 0.42);
  border-radius: 8px;
  font-size: 14px;
}

.blog-landing-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.blog-card-grid {
  margin-top: 0;
}

.sub-hero.article-hero img {
  width: 100%;
  max-width: 390px;
  aspect-ratio: 4 / 3;
  justify-self: center;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(16, 53, 58, 0.16);
}

.article-body {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px clamp(18px, 4vw, 28px);
}

.article-body h2,
.seo-longform h2 {
  margin: 34px 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.article-body h3,
.seo-longform h3 {
  margin: 24px 0 10px;
  font-size: 22px;
}

.article-body p,
.article-body li,
.seo-longform p,
.seo-longform li {
  color: #475467;
  font-size: 17px;
}

.article-body ul,
.seo-longform ul {
  padding-left: 20px;
}

.seo-longform {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blog-article-shell {
  width: min(980px, calc(100% - 40px));
  margin: 40px auto 76px;
}

.blog-article-hero-image {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  margin: 24px 0 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-inline-figure {
  width: min(760px, 100%);
  margin: 0 auto 34px;
}

.blog-inline-figure img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(16, 53, 58, 0.12);
}

.blog-linked-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.blog-linked-heading::after {
  content: "Detay";
  padding: 6px 10px;
  color: #173b36;
  background: rgba(248, 199, 61, 0.22);
  border: 1px solid rgba(248, 199, 61, 0.5);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.blog-linked-heading:hover {
  color: var(--teal);
}

.topic-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 6px;
}

.topic-chip-grid a,
.topic-chip-grid span {
  display: inline-flex;
  padding: 9px 13px;
  color: #172033;
  background: #fff;
  border: 1px solid rgba(20, 148, 132, 0.22);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(16, 53, 58, 0.06);
}

.topic-chip-grid a:hover {
  color: var(--teal);
  border-color: rgba(20, 148, 132, 0.45);
}

.blog-article-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.blog-article-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.blog-article-note {
  margin: 34px 0 0;
  padding: 22px;
  color: #173b36;
  background: rgba(20, 148, 132, 0.08);
  border: 1px solid rgba(20, 148, 132, 0.22);
  border-radius: 8px;
}

@media (max-width: 900px) {
  .form-shell,
  .service-request-form,
  .credentials-grid,
  .service-vehicle-section,
  .store-section,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .service-request-form {
    padding: 22px;
  }

  .form-intro {
    padding: 24px;
  }

  .sub-hero.article-hero {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 720px);
    padding: 22px;
  }

  .blog-landing-hero {
    margin-top: 18px;
    padding: 24px;
  }

  .sub-hero.article-hero img {
    max-width: 100%;
  }

  .blog-article-gallery {
    grid-template-columns: 1fr;
  }

  .blog-article-gallery img,
  .blog-article-hero-image,
  .blog-inline-figure img {
    height: auto;
    max-height: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .header-call {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    padding: 4px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 8px;
  }

  .language-switcher {
    gap: 2px;
    padding: 3px;
    box-shadow: none;
  }

  .language-switcher a {
    min-width: 30px;
    min-height: 28px;
    padding: 5px 7px;
    font-size: 10px;
  }

  .header-socials {
    display: grid;
    grid-template-columns: repeat(3, 34px);
    min-width: auto;
    gap: 6px;
  }

  .header-socials a {
    width: 34px;
    min-height: 34px;
    padding: 0;
  }

  .header-socials img {
    width: 20px;
    height: 20px;
  }

  .header-socials span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .header-247-badge {
    min-width: 76px;
    height: 46px;
    padding: 6px 8px;
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.16);
  }

  .header-247-badge strong {
    font-size: 18px;
  }

  .header-247-badge small {
    margin-top: 4px;
    padding-top: 4px;
    font-size: 6.2px;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .page-hero {
    min-height: 470px;
    padding-top: 70px;
  }

  .hero-content {
    padding-top: 46px;
  }

  .quick-panel,
  .service-grid,
  .service-catalog,
  .local-intent-grid,
  .form-shell,
  .work-grid,
  .video-feature,
  .info-grid,
  .link-list,
  .process-grid,
  .split-section,
  .service-vehicle-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    margin-top: -36px;
  }

  .quick-panel article,
  .quick-panel article:first-child,
  .quick-panel article:last-child,
  .quick-card,
  .quick-card:first-child,
  .quick-card:last-child {
    border-radius: 8px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .area-secondary {
    margin-top: -28px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 88px;
  }

  .site-header {
    padding-inline: 14px;
    min-height: 80px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 14px;
  }

  .brand-mark::before {
    right: 9px;
    bottom: 7px;
    width: 8px;
    height: 21px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    max-width: 210px;
    font-size: 11px;
    white-space: normal;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(8, 13, 22, 0.9) 0%, rgba(8, 13, 22, 0.62) 56%, rgba(8, 13, 22, 0.28) 100%),
      linear-gradient(90deg, rgba(8, 13, 22, 0.84) 0%, rgba(8, 13, 22, 0.35) 100%);
  }

  .hero-district-cloud {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: calc(100% - 36px);
    max-height: 88px;
    z-index: 3;
    justify-content: flex-start;
    align-content: flex-start;
    overflow: hidden;
    opacity: 1;
  }

  .hero-district-cloud span,
  .hero-district-cloud a {
    padding: 6px 8px;
    font-size: 10px;
    line-height: 1;
    background: rgba(8, 13, 22, 0.52);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .hero-content {
    min-height: 680px;
    padding: 42px 18px 132px;
  }

  .page-hero {
    min-height: auto;
    padding: 54px 18px 62px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .page-hero h1,
  .hero h1,
  .section h2,
  .contact-section h2 {
    line-height: 1.06;
  }

  .page-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .quick-card {
    grid-template-columns: 64px 1fr;
    padding: 18px;
  }

  .quick-card img {
    width: 64px;
    height: 64px;
  }

  .seo-search-section {
    padding-top: 46px;
  }

  .seo-chip-cloud {
    gap: 9px;
    padding: 16px;
  }

  .seo-chip-cloud a {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .local-seo-cluster,
  .local-intent-section,
  .local-faq-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .local-article {
    padding: 20px;
  }

  .local-article h3 {
    font-size: 20px;
  }

  .section {
    padding-block: 54px;
  }

  .service-card {
    min-height: 0;
  }

  .work-grid img {
    height: 245px;
  }

  .service-vehicle-section,
  .store-section {
    padding: 20px;
  }

  .store-section img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .service-vehicle-section img {
    aspect-ratio: auto !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    max-height: none !important;
    padding: 0 !important;
  }

  .service-vehicle-content h2,
  .store-content h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .store-info li {
    display: grid;
    grid-template-columns: 74px 1fr;
  }

  .store-contact-list,
  .store-actions {
    max-width: none;
  }

  .store-contact-list div {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
  }

  .store-contact-list dd {
    white-space: normal;
  }

  .store-actions {
    grid-template-columns: 1fr;
  }

  .store-actions a {
    width: 100%;
    min-height: 58px;
  }

  .store-actions .btn-ghost {
    justify-self: stretch;
    min-width: 0;
  }

  .video-feature {
    padding: 18px;
  }

  .contact-section {
    margin-inline: 18px;
    padding: 28px 18px;
  }

  .site-footer {
    display: block;
    text-align: center;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 10px;
  }

  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    min-width: 0;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 8px;
    font-weight: 900;
  }

  .mobile-cta a:last-child {
    color: var(--white);
    background: var(--whatsapp-dark);
  }

  .chat-widget {
    right: 14px;
    bottom: 96px;
    z-index: 80;
  }

  .scroll-top-button {
    right: 14px;
    bottom: 166px;
    width: 48px;
    height: 48px;
  }

  .scroll-top-button span {
    font-size: 22px;
  }

  .chat-toggle {
    min-height: 52px;
    padding-right: 14px;
  }

  .chat-toggle span,
  .chat-toggle small {
    display: none;
  }

  .chat-panel {
    right: -4px;
    bottom: 62px;
    width: calc(100vw - 28px);
    max-height: min(560px, calc(100vh - 190px));
  }
}

@media (max-width: 420px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    flex: 1 1 calc(100% - 60px);
    max-width: calc(100% - 60px);
  }

  .menu-button {
    flex: 0 0 44px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
  }

  .language-switcher {
    flex: 0 0 auto;
  }

  .header-socials {
    grid-template-columns: repeat(3, 34px);
  }

  .header-socials a {
    width: 34px;
    min-height: 34px;
  }

  .header-247-badge {
    min-width: 72px;
    height: 44px;
    margin-left: auto;
  }

  .hero-actions,
  .contact-actions {
    gap: 10px;
  }

  .area-list a,
  .area-list span,
  .link-list a {
    width: 100%;
  }

  .chat-panel {
    right: 0;
    width: calc(100vw - 28px);
  }
}

