/* ==========================================================================
   Klima Kotli Master – style.css
   Design: mobile-first, premium corporate
   ========================================================================== */

:root {
  --navy: #0A1F3C;
  --navy-800: #0E2A50;
  --navy-700: #143A6B;
  --navy-600: #1A4A8C;
  --blue: #1E7BD6;
  --blue-600: #1664B0;
  --blue-100: #E6F1FB;
  --blue-50: #F2F8FE;
  --accent: #F57C00;
  --accent-600: #DE6E00;
  --accent-100: #FEF0DF;
  --wa: #25D366;
  --wa-dark: #128C4A;
  --bg: #F5F7FA;
  --white: #FFFFFF;
  --text: #1B2A3C;
  --muted: #5A6B82;
  --line: #E4E9F0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 6px 22px rgba(10, 31, 60, .08);
  --shadow-lg: 0 16px 44px rgba(10, 31, 60, .16);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); margin: 0 0 .5em; font-weight: 800; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
::selection { background: var(--accent); color: #fff; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
  font-family: var(--font); border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(245, 124, 0, .35); }
.btn-primary:hover { background: var(--accent-600); box-shadow: 0 10px 26px rgba(245, 124, 0, .42); transform: translateY(-2px); }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, .32); }
.btn-wa:hover { background: var(--wa-dark); box-shadow: 0 10px 26px rgba(37, 211, 102, .4); transform: translateY(-2px); }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

.btn-ghost-blue { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost-blue:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: rgba(255,255,255,.85); font-size: 13.5px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 20px; }
.topbar-left { display: flex; align-items: center; gap: 18px; }
.topbar a { color: rgba(255,255,255,.9); }
.topbar a:hover { color: #fff; }
.topbar-phones { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar-phone { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.topbar-phone svg { width: 14px; height: 14px; flex: none; }

/* ---------- Language switcher ---------- */
.lang { display: flex; align-items: center; gap: 4px; }
.lang a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 999px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.78);
}
.lang a.active { background: rgba(255,255,255,.14); color: #fff; }
.lang a:hover { color: #fff; }
.lang .flag { line-height: 1; }

/* ---------- Header / nav ---------- */
.header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: 0 2px 14px rgba(10,31,60,.07); }
.navbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 20px; }
.logo { display: flex; align-items: center; gap: 10px; color: var(--navy); text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy-700), var(--navy));
  border-radius: 12px; box-shadow: 0 4px 12px rgba(10,31,60,.25);
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-weight: 800; font-size: 15.5px; letter-spacing: .4px; color: var(--navy); }
.logo-sub { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; }

.nav { display: none; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: block; padding: 9px 14px; border-radius: 999px; font-weight: 600; font-size: 14.5px; color: var(--navy);
}
.nav-links a:hover, .nav-links a.active { background: var(--blue-100); color: var(--blue-600); }

.nav-cta { display: none; align-items: center; gap: 10px; }

.hamburger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--white); cursor: pointer;
}
.hamburger span { display: block; height: 2px; width: 100%; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 120; visibility: hidden; opacity: 0;
  transition: opacity .22s ease, visibility .22s ease;
}
.drawer.open { visibility: visible; opacity: 1; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(10,31,60,.5); }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 360px);
  background: var(--white); padding: 22px; display: flex; flex-direction: column; gap: 18px;
  transform: translateX(100%); transition: transform .25s ease; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.drawer-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-radius: 12px; font-weight: 700; font-size: 16px; color: var(--navy);
}
.drawer-links a:hover { background: var(--blue-50); color: var(--blue-600); }
.drawer-links a .chev { color: var(--blue); }
.drawer-langs { border-top: 1px solid var(--line); padding-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.drawer-langs a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 12px; font-weight: 600; color: var(--navy); }
.drawer-langs a.active { background: var(--blue-100); color: var(--blue-600); }
.drawer-langs a:hover { background: var(--blue-50); }
.drawer-cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(30,123,214,.35), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(245,124,0,.16), transparent 55%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #fff;
}
.hero-inner { display: grid; gap: 34px; padding: 56px 20px 72px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 700;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); color: #fff;
  letter-spacing: .3px;
}
.hero-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(37,211,102,.25); }

.hero h1 { color: #fff; font-size: clamp(30px, 5.6vw, 54px); margin: 16px 0 16px; letter-spacing: -.5px; }
.hero-sub { font-size: clamp(16px, 2.4vw, 19px); color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 26px; }

.hero-trust { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-bottom: 28px; max-width: 560px; }
.hero-trust li { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 14.5px; color: rgba(255,255,255,.92); }
.hero-trust svg { width: 18px; height: 18px; flex: none; color: var(--wa); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

.hero-phone {
  display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none;
  padding: 11px 18px; border-radius: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
}
.hero-phone .lbl { font-size: 12.5px; color: rgba(255,255,255,.7); }
.hero-phone .num { font-weight: 800; font-size: 17px; letter-spacing: .3px; }
.hero-phone svg { width: 20px; height: 20px; color: var(--accent); }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%; border-radius: 22px; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.hero-float {
  position: absolute; right: 14px; bottom: -22px; left: 14px;
  display: flex; align-items: center; gap: 12px;
  background: var(--white); color: var(--text); border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.hero-float .ic { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--accent-100); color: var(--accent); }
.hero-float .ic svg { width: 22px; height: 22px; }
.hero-float .t1 { font-weight: 800; font-size: 14.5px; color: var(--navy); }
.hero-float .t2 { font-size: 13px; color: var(--muted); }

.hero-scroll { margin-top: 30px; display: none; }
.hero-scroll a { color: rgba(255,255,255,.6); font-size: 13.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-white { background: var(--white); }
.section-gray { background: var(--bg); }
.section-navy { background: linear-gradient(150deg, var(--navy), var(--navy-800)); color: #fff; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.section-navy .eyebrow { color: #7FB8EC; }
.section-head h2 { font-size: clamp(25px, 4vw, 36px); margin-bottom: 12px; }
.section-head .sub { color: var(--muted); font-size: 16.5px; }
.section-navy .section-head h2 { color: #fff; }
.section-navy .section-head .sub { color: rgba(255,255,255,.8); }

/* ---------- Services grid ---------- */
.services-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.service-card {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #C9D8EA; }
.service-card .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-100); color: var(--blue-600);
}
.service-card .ic svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 18px; margin: 0; }
.service-card p { color: var(--muted); font-size: 14.5px; margin: 0; flex: 1; }
.service-card .more {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--blue);
}
.service-card .more svg { width: 15px; height: 15px; transition: transform .18s ease; }
.service-card:hover .more svg { transform: translateX(4px); }

/* ---------- About ---------- */
.about-grid { display: grid; gap: 36px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: 22px; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-media::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  background: linear-gradient(140deg, var(--blue-100), transparent); border-radius: 22px;
}
.about-body h2 { font-size: clamp(25px, 4vw, 34px); margin-bottom: 14px; }
.about-body .lead { font-size: 18px; font-weight: 600; color: var(--navy); }
.about-body p { color: var(--muted); }
.about-list { list-style: none; display: grid; gap: 10px; margin: 20px 0 26px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--text); }
.about-list svg { width: 20px; height: 20px; flex: none; color: var(--blue); }

/* ---------- Why grid ---------- */
.why-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.why-card {
  display: flex; gap: 14px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
}
.why-card .ic {
  width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-100); color: var(--accent);
}
.why-card .ic svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 16.5px; margin: 0 0 4px; }
.why-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; gap: 16px; grid-template-columns: 1fr; counter-reset: step; }
.step-card {
  position: relative; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 24px;
}
.step-num {
  font-size: 13px; font-weight: 800; letter-spacing: 2px; color: var(--accent);
  background: rgba(245,124,0,.14); border: 1px solid rgba(245,124,0,.35);
  display: inline-block; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.step-card h3 { color: #fff; font-size: 17px; margin: 0 0 6px; }
.step-card p { color: rgba(255,255,255,.78); font-size: 14.5px; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--accent), var(--accent-600));
  border-radius: 24px; padding: 40px 28px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: -40%; opacity: .18;
  background: radial-gradient(circle at 30% 30%, #fff 0, transparent 40%);
}
.cta-band h2 { color: #fff; font-size: clamp(22px, 3.6vw, 32px); position: relative; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 16px; position: relative; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; position: relative; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(150deg, var(--navy), var(--navy-700)); color: #fff; padding: 44px 0 52px; }
.page-hero h1 { color: #fff; font-size: clamp(26px, 4.4vw, 40px); margin: 10px 0 12px; }
.page-hero .page-sub { color: rgba(255,255,255,.85); font-size: 16.5px; max-width: 640px; margin: 0; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13.5px; color: rgba(255,255,255,.7); }
.crumbs a { color: rgba(255,255,255,.85); }
.crumbs a:hover { color: #fff; }
.crumbs .sep { opacity: .6; }
.crumbs .cur { color: #fff; font-weight: 600; }

/* ---------- Service page ---------- */
.service-layout { display: grid; gap: 34px; align-items: start; }
.service-media img { border-radius: 20px; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-lg); }
.service-body .lead { font-size: 17.5px; font-weight: 600; color: var(--navy); }
.service-body p { color: var(--muted); }
.check-list { list-style: none; display: grid; gap: 12px; margin: 20px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.check-list .ck {
  width: 26px; height: 26px; flex: none; border-radius: 8px; display: grid; place-items: center;
  background: var(--blue-100); color: var(--blue-600); margin-top: 2px;
}
.check-list .ck svg { width: 15px; height: 15px; }

.contact-mini {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px;
}
.contact-mini .btn { padding: 12px 20px; font-size: 14px; }

/* FAQ */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 18px; font-weight: 700; font-size: 15px; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { color: var(--blue); font-weight: 800; transition: transform .18s ease; flex: none; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 18px 16px; color: var(--muted); font-size: 14.5px; }
.faq-item .faq-a p { margin: 0; }

.related-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 30px; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 16px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
}
.contact-card .ic { width: 50px; height: 50px; flex: none; border-radius: 14px; display: grid; place-items: center; }
.contact-card .ic.blue { background: var(--blue-100); color: var(--blue-600); }
.contact-card .ic.orange { background: var(--accent-100); color: var(--accent); }
.contact-card .ic.green { background: rgba(37,211,102,.14); color: var(--wa-dark); }
.contact-card .ic svg { width: 24px; height: 24px; }
.contact-card .lbl { font-size: 13px; color: var(--muted); font-weight: 600; }
.contact-card .val { font-weight: 800; font-size: 16.5px; color: var(--navy); display: block; }
.contact-card .val:hover { color: var(--blue); }
.contact-card p { margin: 2px 0 0; color: var(--muted); font-size: 13.5px; }

.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.form-card h2 { font-size: 22px; margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: 14.5px; }
.form-grid { display: grid; gap: 16px; margin-top: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 700; font-size: 13.5px; color: var(--navy); }
.field input, .field textarea {
  font-family: var(--font); font-size: 15px; color: var(--text);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg);
  transition: border-color .15s ease, box-shadow .15s ease; width: 100%;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(30,123,214,.14);
}
.field textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; }
.form-msg { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 12px; font-size: 14.5px; font-weight: 600; }
.form-msg.ok { display: block; background: rgba(37,211,102,.14); color: var(--wa-dark); }
.form-msg.err { display: block; background: #FDEBEC; color: #B3261E; }

/* Map */
.map-wrap { margin-top: 44px; }
.map-wrap .map-frame { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-wrap iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 56px 0 0; }
.footer-grid { display: grid; gap: 32px; }
.footer .logo-name { color: #fff; }
.footer .logo-sub { color: rgba(255,255,255,.55); }
.footer h4 { color: #fff; font-size: 15px; letter-spacing: .6px; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { color: rgba(255,255,255,.78); font-size: 14.5px; }
.footer ul a:hover { color: #fff; }
.footer-about p { font-size: 14.5px; margin-top: 14px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
.footer-contact svg { width: 16px; height: 16px; flex: none; color: var(--accent); }
.footer-contact a { color: rgba(255,255,255,.85); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding: 20px 0;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.55);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 16px; bottom: 84px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa); animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ---------- Mobile bottom bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--white); box-shadow: 0 -4px 18px rgba(10,31,60,.12);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 10px; font-weight: 800; font-size: 14.5px;
}
.mobile-bar .call { background: var(--accent); color: #fff; }
.mobile-bar .wa { background: var(--wa); color: #fff; }
.mobile-bar svg { width: 20px; height: 20px; }

/* ---------- Service areas ---------- */
.areas-count {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin: 0 0 34px; font-size: 15.5px; color: var(--muted);
}
.areas-count b { color: var(--navy); font-size: 22px; }
.areas-count .dot { color: var(--accent); }

.areas-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.areas-grid li {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-weight: 700; font-size: 14px;
  color: var(--navy-700); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.areas-grid li::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); flex: 0 0 auto;
}
.areas-grid li:hover { transform: translateY(-2px); border-color: var(--blue); box-shadow: var(--shadow); }

.areas-more { display: flex; justify-content: center; margin-top: 36px; }

.areas-list { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 8px; }
.area-block {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; transition: border-color .2s ease, box-shadow .2s ease;
}
.area-block h3 {
  margin: 0 0 8px; font-size: 18px; color: var(--navy); font-weight: 800;
  display: flex; align-items: center; gap: 10px;
}
.area-block h3::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); flex: 0 0 auto;
}
.area-block p { margin: 0; font-size: 13.5px; line-height: 1.75; color: var(--muted); }
.area-svcs { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 0 0; margin: 12px 0 0; border-top: 1px dashed var(--line); }
.area-svcs li { margin: 0; }
.area-svcs a {
  display: inline-block; padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: #EFF4FB; color: var(--navy-700); text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.area-svcs a:hover { background: var(--blue); color: #fff; }

.area-chips ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; }
.area-chips li {
  background: #EFF4FB; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: 14px; font-weight: 600; color: var(--navy-700); margin: 0;
}
.city-links { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 10px; padding: 0; margin: 0; }
.city-links li { margin: 0; }
.city-links a {
  display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 16px; color: var(--navy); font-weight: 700; font-size: 14.5px;
  text-decoration: none; transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.city-links a::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
.city-links a:hover { border-color: var(--blue); box-shadow: var(--shadow); color: var(--blue); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field-full { grid-column: 1 / -1; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-scroll { display: block; }
  .section { padding: 80px 0; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .nav { display: block; }
  .nav-cta { display: flex; }
  .hamburger { display: none; }
  .mobile-bar { display: none; }
  .wa-float { bottom: 26px; }

  .hero-inner { grid-template-columns: 1.05fr .95fr; padding: 78px 20px 92px; gap: 48px; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .service-layout { grid-template-columns: 1.1fr 1fr; gap: 56px; }
  .contact-grid { grid-template-columns: 5fr 7fr; gap: 40px; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1.4fr 1.4fr; }
  .cta-band { padding: 52px 60px; }
  .related-grid { grid-template-columns: repeat(4, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .areas-list { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) and (max-width: 1240px) {
  .nav-links a { padding: 9px 10px; font-size: 13.5px; }
  .nav-cta .btn { padding: 11px 16px; font-size: 13.5px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Brands page
   ========================================================================== */
.brands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.brand-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
  transition: box-shadow .2s, border-color .2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.brand-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.brand-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.brand-link-label {
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  opacity: 0;
  transition: opacity .2s;
}
.brand-card:hover .brand-link-label { opacity: 1; }
.brand-card--industrial {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
  text-decoration: none;
}
.brand-card--industrial h3 { color: #fff; font-size: 14px; margin: 0; }
.brand-card--industrial .brand-ic { color: var(--accent); font-size: 28px; }
.brand-card--industrial .brand-link-label { color: var(--accent); }
.brand-card--industrial:hover { background: var(--navy-700); }
@media (min-width: 640px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .brands-grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   Error codes page
   ========================================================================== */
.errorcodes-toolbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.errorcodes-search input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s;
}
.errorcodes-search input:focus { border-color: var(--blue); }
.errorcodes-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.errorcodes-filters select {
  flex: 1;
  min-width: 140px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  outline: none;
}
.errorcodes-filters select:focus { border-color: var(--blue); }
.errorcodes-count { font-size: 14px; color: var(--muted); text-align: center; }
.errorcodes-count span { font-weight: 700; color: var(--navy); }
.errorcodes-table-wrap { overflow-x: auto; }
.errorcodes-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.errorcodes-table th {
  background: var(--navy);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.errorcodes-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: middle;
}
.errorcodes-table tbody tr:hover { background: var(--blue-50); }
.errorcodes-table tbody tr.hidden { display: none; }
.code-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  font-family: monospace;
}
.errorcodes-no-results {
  text-align: center;
  padding: 48px 20px;
  color: var(--muted);
  font-size: 16px;
}
@media (min-width: 640px) {
  .errorcodes-toolbar { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .errorcodes-search { flex: 1 1 260px; }
  .errorcodes-filters { flex: 0 0 auto; }
  .errorcodes-count { flex: 0 0 auto; margin-left: auto; }
}

/* ==========================================================================
   Petek temizligi page
   ========================================================================== */
.petek-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.petek-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
}
.petek-ic { color: var(--blue); font-size: 28px; margin-bottom: 8px; }
.petek-card h3 { font-size: 16px; margin-bottom: 4px; }
.petek-card p { font-size: 14px; color: var(--muted); margin: 0; }
@media (min-width: 640px) { .petek-grid { grid-template-columns: repeat(4, 1fr); } }
