:root {
  --brand: #ff681d;
  --brand-dark: #e55a12;
  --brand-light: rgba(255, 104, 29, 0.12);
  --brand-shadow: rgba(255, 104, 29, 0.18);
  --text: #333;
  --text-muted: #555;
  --text-heading: #111;
  --bg: #f5f6f8;
  --surface: #fff;
  --border: #e8e8e8;
  --radius: 10px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-brand: 0 6px 20px var(--brand-shadow);
  --header-h: 72px;
  --icon-brand-tint: brightness(0) saturate(100%) invert(48%) sepia(92%) saturate(2500%) hue-rotate(360deg) brightness(100%) contrast(96%);
  --icon-white: brightness(0) invert(1);
}

@font-face {
  font-family: geo_m;
  src: url("./fonts/TKT-Medium-Caps.ttf");
  font-display: swap;
}
@font-face {
  font-family: geo_r;
  src: url("./fonts/TKT-Regular-Caps.ttf");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: geo_r, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--text);
  padding-bottom: 20px;
  line-height: 1.5;
  overflow-x: hidden;
}

.contentContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ── Sticky header ── */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--surface);
  border-bottom: 3px solid var(--brand);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  margin-bottom: 28px;
}

.headerBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  min-height: var(--header-h);
}

.headerLogo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  transition: opacity 0.2s;
}

.headerLogo:hover {
  opacity: 0.85;
}

.headerLogo img,
.headerLogoSvg {
  display: block;
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.headerNav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.headerNav--compact {
  justify-content: flex-start;
  flex: 1;
  padding-left: 8px;
}

.navLink {
  display: inline-block;
  padding: 10px 18px;
  text-decoration: none;
  color: #444;
  font-weight: bold;
  font-family: geo_m, sans-serif;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s;
}

.navLink:hover {
  background: var(--brand-light);
  color: var(--brand);
}

.navLink.is-active {
  background: var(--brand);
  color: #fff;
}

.headerActions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.headerPhone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-family: geo_m, sans-serif;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-brand);
  transition: background 0.2s, transform 0.15s;
}

.headerPhone img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: var(--icon-white);
  flex-shrink: 0;
}

.headerPhone:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.langSwitcher {
  display: flex;
  gap: 4px;
  align-items: center;
  background: #f0f0f0;
  padding: 4px;
  border-radius: var(--radius-pill);
}

.langSwitcher a {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  border: none;
  color: #666;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.langSwitcher a.active {
  background: var(--brand);
  color: #fff;
}

.langSwitcher a:not(.active):hover {
  background: #e0e0e0;
  color: #333;
}

/* ── Hero ── */
.section1 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 32px 0 40px;
  align-items: center;
  padding: 36px 28px;
  background: linear-gradient(135deg, #fff 0%, #fff8f4 55%, #fff 100%);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.sectionHalf {
  flex: 1;
  min-width: 280px;
}

.heroTitle {
  font-size: 2.35rem;
  color: var(--text-heading);
  margin: 0 0 10px;
  font-family: geo_m, sans-serif;
  line-height: 1.2;
}

.heroSubtitle {
  font-size: 1.25rem;
  color: var(--brand);
  margin: 0 0 18px;
  font-family: geo_m, sans-serif;
  font-weight: normal;
}

.hiWord > p {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 20px;
}

.trustBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.trustBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-light);
  color: var(--brand);
  border: 1px solid rgba(255, 104, 29, 0.25);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: bold;
  font-family: geo_m, sans-serif;
}

.trustBadge img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-main-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.starterButtons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: bold;
  font-size: 1.15rem;
  font-family: geo_m, sans-serif;
  border: 2px solid transparent;
  box-shadow: var(--shadow-brand);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-call img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: var(--icon-white);
  flex-shrink: 0;
}

.btn-call:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-shadow);
}

.btn-call:active {
  transform: translateY(0);
  box-shadow: var(--shadow-brand);
}

.btn-call:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.infoT {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #2e7d32;
  font-weight: bold;
  font-size: 0.95rem;
}

.infoT img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.heroSocials,
.socFooter {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.socIcon {
  display: flex;
  transition: transform 0.2s, opacity 0.2s;
}

.socIcon:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.socIcon svg {
  width: 32px;
  height: 32px;
}

/* ── Sections ── */
.sectionStarter {
  text-align: center;
  margin: 48px 0 28px;
  font-size: 1.85rem;
  color: #222;
  font-family: geo_m, sans-serif;
}

.topSearchesBlock {
  margin-bottom: 48px;
}

.topSearchesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.topSearchCard {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none;
  color: #222;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.topSearchCard:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-brand);
  transform: translateY(-2px);
}

.topSearchCard img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  padding: 8px;
  background: var(--brand-light);
  border-radius: 10px;
  filter: var(--icon-brand-tint);
}

.topSearchCard h3 {
  margin: 0;
  font-size: 1rem;
  font-family: geo_m, sans-serif;
  line-height: 1.35;
}

/* ── Services accordion ── */
.servicesColumn {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}

.serviceCardExtended {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}

.serviceCardExtended:hover {
  border-color: rgba(255, 104, 29, 0.45);
}

.serviceHeaderRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.serviceToggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.serviceToggle:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
  border-radius: 4px;
}

.headerLeft {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 0;
  cursor: pointer;
}

.serviceLogoExtended {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-light);
  flex-shrink: 0;
}

.serviceLogoExtended--lg {
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

.serviceLogoExtended--lg img {
  width: 40px;
  height: 40px;
  filter: var(--icon-brand-tint);
}

.serviceLogoExtended img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: var(--icon-brand-tint);
}

.serviceNameExtended {
  margin: 0;
  font-size: 1.1rem;
  color: #222;
  font-weight: bold;
  font-family: geo_m, sans-serif;
  line-height: 1.35;
}

.accordionArrow svg {
  width: 24px;
  height: 24px;
  fill: #666;
  transition: transform 0.3s ease, fill 0.3s ease;
  flex-shrink: 0;
}

.serviceDescriptionExtended {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
  line-height: 1.65;
  color: var(--text-muted);
}

.serviceCardExtended.activeCard {
  border-color: var(--brand);
  box-shadow: var(--shadow-brand);
}

.serviceCardExtended.activeCard .serviceDescriptionExtended {
  display: block;
}

.serviceCardExtended.activeCard .accordionArrow svg {
  transform: rotate(180deg);
  fill: var(--brand);
}

.serviceLearnMore {
  margin-top: 12px;
}

.serviceLearnMore a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.serviceLearnMore a:hover {
  text-decoration: underline;
}

/* ── District ── */
.districtBlock {
  background: var(--surface);
  padding: 30px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.districtBlock > p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--text-muted);
}

.districtTitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 12px;
  font-size: 1.2rem;
  font-family: geo_m, sans-serif;
}

.sectionIconWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-light);
  flex-shrink: 0;
}

.sectionIconWrap svg {
  display: block;
}

.districtGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 20px auto 0;
  justify-content: center;
  max-width: 720px;
}

.districtGrid li {
  background: var(--brand-light);
  color: var(--brand);
  border: 1px solid rgba(255, 104, 29, 0.3);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: bold;
  font-family: geo_m, sans-serif;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.districtGrid li:hover {
  background: var(--brand);
  color: #fff;
}

/* ── Contact ── */
.contactSection {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.secH {
  flex: 1;
  min-width: 280px;
}

.infoRow {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.infoCard {
  background: var(--surface);
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.infoCard:hover {
  border-color: rgba(255, 104, 29, 0.35);
  box-shadow: var(--shadow-brand);
}

.logoInfo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-light);
  flex-shrink: 0;
}

.logoInfo img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.startInfo {
  font-weight: bold;
  margin-bottom: 6px;
  font-family: geo_m, sans-serif;
}

.contInfo address {
  font-style: normal;
  margin: 0;
  padding: 0;
}

.desInfo {
  margin: 3px 0;
  color: var(--text-muted);
}

.desInfo a {
  color: var(--brand);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}

.desInfo a:hover {
  color: var(--brand-dark);
}

.clickSection {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.clickSectionTitle {
  font-weight: bold;
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 20px;
  font-family: geo_m, sans-serif;
}

.socButtons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.socB {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: bold;
  font-family: geo_m, sans-serif;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.socB:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: var(--shadow-md);
}

.socB svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.viberB { background: #7360f2; }
.whatsappB { background: #25d366; }
.callB { background: var(--brand); }

.clickSectionSocials {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.clickSectionSocialsTitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 14px;
  font-family: geo_m, sans-serif;
}

.clickSectionSocialsRow {
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* ── Map ── */
.mapSection {
  margin-bottom: 72px;
}

.mapCard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.mapCard iframe {
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  width: 100%;
  display: block;
}

/* ── Landing pages ── */
.landingHero {
  margin: 36px 0 28px;
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.landingHeroIcon {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.landingHero h1 {
  font-size: 2.1rem;
  color: var(--text-heading);
  margin: 0 0 14px;
  font-family: geo_m, sans-serif;
  line-height: 1.25;
}

.landingHero .lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

.landingContent {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 32px;
  margin-bottom: 36px;
  line-height: 1.75;
  box-shadow: var(--shadow-sm);
}

.landingContent h2 {
  color: var(--brand);
  font-size: 1.3rem;
  margin-top: 28px;
  font-family: geo_m, sans-serif;
}

.landingContent h2:first-child {
  margin-top: 0;
}

.relatedServices {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.relatedServices h2 {
  color: var(--brand);
  font-size: 1.2rem;
  margin: 0 0 14px;
  font-family: geo_m, sans-serif;
}

.relatedServicesList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.relatedServicesList a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.relatedServicesList a:hover {
  text-decoration: underline;
}

.serviceFaq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.serviceFaq h2 {
  color: var(--brand);
  font-size: 1.2rem;
  margin: 0 0 14px;
  font-family: geo_m, sans-serif;
}

.faqList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faqItem {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--bg);
}

.faqItem summary {
  cursor: pointer;
  font-family: geo_m, sans-serif;
  padding: 12px 0;
  color: var(--text-heading);
}

.faqItem p {
  margin: 0 0 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.landingCta {
  text-align: center;
  margin: 32px 0 48px;
}

.landingCta p {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.breadcrumb {
  font-size: 0.88rem;
  margin: 16px 0;
  color: #777;
}

.breadcrumb a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--brand-dark);
}

/* ── Footer ── */
footer {
  background: #1e1e1e;
  color: #fff;
  padding: 44px 0 22px;
  margin-top: 56px;
}

footer a {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--brand);
}

.footerOption {
  color: #bbb;
  margin-bottom: 8px;
}

.footerContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footerRow {
  flex: 1;
  min-width: 200px;
}

.footerStarter {
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: var(--brand);
  font-family: geo_m, sans-serif;
}

.footerLine {
  border-top: 1px solid #3a3a3a;
  margin: 28px 0 14px;
}

.contSpacer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #888;
  font-size: 0.88rem;
  gap: 8px;
}

/* ── Floating actions (WhatsApp + PWA install) ── */
.floatActions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.floatBtn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.floatBtn:hover {
  transform: scale(1.08);
}

.whatsappFloat {
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.whatsappFloat:hover {
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsappFloat img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.pwaInstallBtn {
  background: var(--brand);
  box-shadow: var(--shadow-brand);
}

.pwaInstallBtn:hover {
  box-shadow: 0 6px 28px var(--brand-shadow);
}

.pwaInstallBtn img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.pwaInstallBtn[hidden],
.pwaInstallBtn.is-hidden {
  display: none !important;
}

.pwaModal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pwaModal[hidden] {
  display: none !important;
}

.pwaModalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.pwaModalCard {
  position: relative;
  max-width: 400px;
  width: 100%;
  background: var(--surface);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.pwaModalCard h2 {
  color: var(--brand);
  font-family: geo_m, sans-serif;
  font-size: 1.25rem;
  margin: 0 0 16px;
}

.pwaModalIcon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin: 0 auto 16px;
  display: block;
}

.pwaModalSteps {
  text-align: left;
  margin: 0 0 20px;
  padding-left: 20px;
  color: var(--text-muted);
  line-height: 1.65;
}

.pwaModalSteps li {
  margin-bottom: 10px;
}

.pwaModalClose {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: #fff;
  font-family: geo_m, sans-serif;
  font-size: 1rem;
  cursor: pointer;
}

.pwaModalClose:hover {
  background: var(--brand-dark);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .section1,
  .contactSection {
    flex-direction: column;
    padding: 24px 18px;
  }

  .heroTitle,
  .landingHero h1 {
    font-size: 1.7rem;
  }

  .heroSubtitle {
    font-size: 1.1rem;
  }

  .headerBar {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 15px;
  }

  .headerNav,
  .headerNav--compact {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding-left: 0;
  }

  .headerActions {
    margin-left: auto;
  }

  .headerPhone span {
    display: none;
  }

  .headerPhone {
    padding: 10px 14px;
  }

  .navLink {
    padding: 8px 14px;
    font-size: 0.88rem;
  }

  .starterButtons {
    align-items: stretch;
    width: 100%;
  }

  .btn-call {
    width: 100%;
    text-align: center;
  }

  .trustBadges {
    justify-content: flex-start;
  }

  .floatActions {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }

  .floatBtn {
    width: 52px;
    height: 52px;
  }

  .whatsappFloat img {
    width: 28px;
    height: 28px;
  }

  .pwaInstallBtn img {
    width: 32px;
    height: 32px;
  }

  .serviceNameExtended {
    font-size: 1rem;
  }

  .sectionStarter {
    font-size: 1.55rem;
  }
}

@media (max-width: 480px) {
  .heroTitle,
  .landingHero h1 {
    font-size: 1.45rem;
  }

  .serviceCardExtended {
    padding: 16px;
  }

  .serviceLogoExtended {
    width: 42px;
    height: 42px;
  }

  .serviceNameExtended {
    font-size: 0.92rem;
  }

  .topSearchesGrid {
    grid-template-columns: 1fr;
  }

  .trustBadge {
    font-size: 0.82rem;
    padding: 7px 12px;
  }

  .btn-call {
    font-size: 1rem;
    padding: 14px 20px;
  }

  .districtBlock,
  .landingContent {
    padding: 22px 18px;
  }

  .headerPhone {
    font-size: 0;
    padding: 10px 12px;
    gap: 0;
  }

  .headerPhone img {
    width: 20px;
    height: 20px;
  }
}