:root {
  --navy: #061d38;
  --navy-2: #0b315e;
  --blue: #0e4f8f;
  --gold: #f6a900;
  --gold-2: #ffbe19;
  --ink: #16202b;
  --muted: #637083;
  --line: #d9e2ef;
  --soft: #f4f7fb;
  --white: #ffffff;
  --whatsapp: #25d366;
  --shadow: 0 18px 45px rgba(6, 29, 56, 0.13);
  --shadow-strong: 0 30px 80px rgba(6, 29, 56, 0.24);
  --radius: 8px;
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 46px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

img {
  display: block;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(246, 169, 0, 0.78);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 86px 0;
}

.section--soft {
  background: var(--soft);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.area-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.18;
}

.section-heading p:last-child,
.about-content > p,
.area-grid > p {
  margin: 14px 0 0;
  color: var(--muted);
}

.top-strip {
  color: #eaf2fb;
  background: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.top-strip__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.top-strip span + span::before {
  content: "•";
  margin-right: 18px;
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(217, 226, 239, 0.95);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(6, 29, 56, 0.1);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: min(268px, 44vw);
}

.logo img {
  width: 100%;
  height: clamp(40px, 4.4vw, 56px);
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: #26384e;
  font-size: 0.82rem;
  font-weight: 900;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: #edf4fc;
}

.header-call {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--gold);
  font-size: 0.86rem;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(246, 169, 0, 0.25);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.icon {
  width: 1.1em;
  height: 1.1em;
  display: inline-flex;
  flex: 0 0 auto;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.hero {
  position: relative;
  min-height: 710px;
  display: flex;
  align-items: center;
  padding: 76px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 29, 56, 0.96), rgba(6, 29, 56, 0.84) 48%, rgba(6, 29, 56, 0.5)),
    url("img/hero-bg.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 48px;
}

.hero .section-kicker {
  color: var(--gold-2);
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.15rem, 4.2vw, 4.25rem);
  line-height: 1.06;
}

.hero__text {
  max-width: 660px;
  margin: 22px 0 0;
  color: #e5edf6;
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
}

.hero__actions,
.cta-strip__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions {
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  text-align: center;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 30px rgba(246, 169, 0, 0.25);
}

.btn--whatsapp {
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #eef5fc;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero__visual {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(6, 29, 56, 0.86);
  backdrop-filter: blur(10px);
}

.hero__visual strong {
  font-size: 1.24rem;
}

.trust-band {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-band__grid div {
  display: grid;
  gap: 4px;
  padding: 22px;
  background: var(--white);
}

.trust-band strong {
  color: var(--navy);
  font-size: 1.03rem;
}

.trust-band span {
  color: var(--muted);
  font-size: 0.94rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.process-grid article,
.contact-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 29, 56, 0.08);
}

.service-card {
  padding: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 169, 0, 0.65);
  box-shadow: var(--shadow);
}

.service-card__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--navy);
  background: #fff4cf;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3,
.process-grid h3,
.contact-card h3,
.map-card h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 1.07rem;
  line-height: 1.25;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.about-media {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #2b3746;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px #fff4cf;
}

.legal-note {
  margin: 26px 0 0;
  padding: 16px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  color: var(--navy);
  background: #fff8e4;
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  position: relative;
  padding: 24px;
}

.process-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-weight: 950;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(6, 29, 56, 0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 29, 56, 0), rgba(6, 29, 56, 0.86));
}

.gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 16px;
  font-weight: 900;
  text-align: left;
}

.gallery-item:hover img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.05);
}

.reference-card {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  margin: 26px 0 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 29, 56, 0.08);
}

.reference-card__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4f7fb;
}

.reference-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.reference-card figcaption {
  display: grid;
  gap: 8px;
}

.reference-card strong {
  color: var(--navy);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.2;
}

.reference-card span {
  max-width: 560px;
  color: var(--muted);
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: start;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.cta-strip {
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 29, 56, 0.98), rgba(11, 49, 94, 0.95)),
    url("img/generated/buzdolabi-servisi.webp") center / cover no-repeat;
}

.cta-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.cta-strip .section-kicker {
  color: var(--gold);
}

.cta-strip h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.16;
}

.cta-strip p {
  margin: 12px 0 0;
  color: #e5edf6;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.map-card {
  padding: 28px;
}

.contact-card h3,
.map-card h3 {
  margin-top: 0;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.contact-list .icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--navy);
  background: #fff4cf;
}

.contact-list .icon svg {
  width: 20px;
  height: 20px;
}

.contact-list strong,
.contact-list span,
.contact-list a {
  display: block;
}

.contact-list strong {
  color: var(--navy);
}

.contact-list span {
  color: var(--muted);
}

.contact-list a {
  color: var(--blue);
  font-weight: 900;
}

.contact-actions {
  margin-top: 24px;
}

.map-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.map-link {
  display: inline-flex;
  width: fit-content;
  padding: 11px 14px;
  border-radius: var(--radius);
  color: var(--navy);
  background: #fff4cf;
  font-weight: 900;
}

.location-panel {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 244, 207, 0.82), rgba(244, 247, 251, 0.96));
}

.location-panel img {
  width: min(260px, 100%);
  height: 58px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 8px;
  padding: 6px;
  border-radius: var(--radius);
  background: var(--white);
}

.location-panel strong {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.3;
}

.location-panel span {
  color: var(--muted);
}

.location-panel small {
  width: fit-content;
  margin-top: 6px;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(246, 169, 0, 0.24);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 18px 38px rgba(6, 29, 56, 0.26);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

.mobile-contact-bar {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 13, 26, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  width: min(100%, 980px);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--navy);
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  padding: 56px 0 24px;
  color: #e8f0fa;
  background: var(--navy);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(170px, 0.65fr) minmax(190px, 0.7fr);
  gap: 34px;
}

.footer-brand img {
  width: min(260px, 70vw);
  height: 58px;
  object-fit: contain;
  object-position: left center;
  padding: 7px;
  border-radius: var(--radius);
  background: var(--white);
}

.footer-brand p {
  max-width: 520px;
  margin: 18px 0 0;
  color: #c8d6e7;
}

.footer-disclaimer {
  padding: 12px;
  border: 1px solid rgba(246, 169, 0, 0.34);
  border-radius: var(--radius);
  background: rgba(246, 169, 0, 0.08);
}

.footer-column h3 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 1rem;
}

.footer-column ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: #c8d6e7;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #c8d6e7;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .header-call {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .top-strip__inner {
    flex-wrap: wrap;
    gap: 4px 12px;
    padding: 8px 0;
  }

  .top-strip span + span::before {
    margin-right: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .about-grid,
  .area-grid,
  .contact-grid,
  .cta-strip__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    max-width: 620px;
  }

  .trust-band__grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  body {
    padding-bottom: 76px;
  }

  .section {
    padding: 62px 0;
  }

  .top-strip {
    font-size: 0.8rem;
  }

  .top-strip__inner {
    justify-content: flex-start;
    text-align: left;
  }

  .top-strip span + span::before {
    content: "";
    margin: 0;
  }

  .logo {
    width: min(214px, 62vw);
  }

  .logo img {
    height: 44px;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero__actions,
  .cta-strip__actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
  }

  .hero__visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .trust-band {
    margin-top: -20px;
  }

  .trust-band__grid,
  .service-grid,
  .process-grid,
  .gallery-grid,
  .reference-card,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-grid article,
  .contact-card,
  .map-card {
    padding: 22px;
  }

  .gallery-item {
    min-height: 210px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(6, 29, 56, 0.12);
    backdrop-filter: blur(12px);
  }

  .mobile-contact-bar a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--gold);
    font-weight: 950;
  }

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