/* [project]/src/app/globals.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

a:hover {
  text-decoration: none;
}

main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero {
  margin-top: 0;
  padding: 0;
  position: relative;
}

.hero-image-wrapper {
  width: 100%;
  height: calc(100vh - 68px);
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

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

.hero-overlay {
  z-index: 1;
  background: linear-gradient(#00000073, #00000040);
  position: absolute;
  inset: 0;
}

.hero-content {
  z-index: 2;
  color: #fff;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content h1 {
  color: #fff;
  max-width: 18ch;
}

.hero-content p {
  color: #ffffffe6;
  max-width: 56ch;
}

.hero-content .btn-outline {
  color: #fff;
  border-color: #fff;
}

.hero-content .btn-outline:hover {
  background: #ffffff26;
}

@media (max-width: 768px) {
  .hero-image-wrapper {
    height: 80vh;
    min-height: 420px;
  }

  .hero-content {
    text-align: left;
    padding: 0 1rem;
  }
}

:root {
  --bg: #f6f3ef;
  --card: #fff;
  --text: #2f2f2f;
  --muted: #6b6b6b;
  --border: #00000014;
  --brand: #e53935;
  --brand-soft: #e539351a;
  --radius: 12px;
}

html {
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif;
  font-size: 17px;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}

.main {
  min-height: calc(100vh - 68px);
  margin-top: 300px;
}

section {
  margin-top: 6%;
  margin-bottom: 6%;
}

h1, h2, h3 {
  letter-spacing: -.01em;
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.4rem, 2.1vw, 1.75rem);
  font-weight: 900;
}

h3 {
  font-size: 1.05rem;
  font-weight: 900;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.section-lead {
  max-width: 74ch;
  margin-top: .55rem;
  font-size: 1rem;
}

a:focus-visible, .btn:focus-visible {
  outline-offset: 3px;
  border-radius: 12px;
  outline: 3px solid #e5393538;
}

section + section {
  margin-top: 1.15rem;
}

.header {
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #0000001a;
  position: sticky;
  top: 0;
}

.header:after {
  content: "";
  background: linear-gradient(to right, #0000, #e5393540, #0000);
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.header-inner {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.header-adv {
  height: 80px;
}

.desktop-only {
  display: inline-flex;
}

.burger {
  border: 1px solid var(--border);
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  display: none;
}

.burger img {
  color: #1f1f1f;
  width: 20px;
  height: 20px;
}

.burger span {
  background: var(--text);
  width: 18px;
  height: 2px;
  transition: transform .2s, opacity .2s;
  display: block;
}

.mobile-menu {
  border-top: 1px solid var(--border);
  background: #fff;
  gap: .75rem;
  padding: 1rem;
  display: grid;
}

.mobile-link {
  text-align: left;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: 0;
  justify-content: center;
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 900;
  display: grid;
}

.mobile-link:hover {
  color: var(--brand);
}

.mobile-phone {
  color: var(--brand);
  background: var(--brand-soft);
  text-align: center;
  border-radius: 12px;
  margin-top: .5rem;
  padding: .85rem;
  font-weight: 950;
  text-decoration: none;
}

.brand-logo {
  object-fit: contain;
  object-position: left center;
  transform: translateY(1px);
  width: 200px !important;
  height: 200px !important;
}

.brand-name {
  letter-spacing: -.01em;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 950;
}

.brand-sub {
  color: #e53935d9;
  margin-top: .15rem;
  font-size: .95rem;
  font-weight: 850;
}

@media (max-width: 520px) {
  .brand-logo {
    width: 130px !important;
    height: 130px !important;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .brand-sub {
    font-size: .88rem;
  }
}

.brand-link {
  cursor: pointer;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
}

.brand-adv {
  align-items: center;
  gap: .7rem;
  display: inline-flex;
}

.brand-text {
  flex-direction: column;
  line-height: 1.05;
  display: flex;
}

.brand-text strong {
  font-weight: 950;
}

.transportation {
  color: #e53835cc;
  font-size: larger;
  font-weight: 900;
}

.brand-adv strong {
  color: var(--text);
  font-weight: 950;
}

.brand-adv span {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 650;
}

.nav-adv {
  align-items: center;
  gap: 1.2rem;
  display: flex;
}

.nav-adv-link {
  cursor: pointer;
  color: var(--muted);
  letter-spacing: .01em;
  background: none;
  border: 0;
  border-bottom: 2px solid #0000;
  padding: .25rem 0;
  font-size: .95rem;
  font-weight: 800;
  transition: color .14s, border-color .14s;
}

.nav-adv-link:hover {
  color: var(--text);
  border-bottom-color: #0000001a;
}

.nav-adv-link.is-active {
  color: var(--brand);
  border-bottom-color: #e5393599;
}

.phone {
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid #e539352e;
  border-radius: 12px;
  padding: .42rem .7rem;
  font-weight: 900;
  text-decoration: none;
}

.phone:hover {
  border-color: #e5393559;
}

.phone-adv {
  background: var(--brand-soft);
  border: 1px solid #e5393540;
}

@media (max-width: 860px) {
  .nav-adv {
    display: none;
  }

  .phone-adv {
    width: 95px;
    height: 70px;
    display: none;
  }

  .brand-adv span {
    display: none;
  }
}

.btn {
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: .55rem;
  height: 48px;
  padding: 0 1.35rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .12s, box-shadow .12s, background .12s, color .12s, border-color .12s;
  display: inline-flex;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border: 1px solid #00000014;
  box-shadow: 0 10px 20px #e539352e;
}

.btn-primary:hover {
  background-color: #851f00;
  box-shadow: 0 14px 26px #e5393538;
}

.btn-outline {
  border: 2px solid var(--brand);
  color: var(--brand);
  background: none;
}

.btn-outline:hover {
  background: var(--brand-soft);
}

.hero {
  padding: 0;
}

.prices, .services, .contact {
  background: none;
  padding: 3rem 0;
}

.hero h1 {
  width: 145%;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 900;
}

@media (max-width: 720px) {
  .hero h1 {
    width: 550px;
  }

  .container.hero-content {
    text-align: left;
    align-items: flex-start;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.menu-backdrop {
  z-index: 18;
  background: #00000059;
  position: fixed;
  inset: 0;
}

.mobile-menu {
  z-index: 19;
  position: relative;
}

.hero p {
  max-width: 60ch;
  margin-top: .9rem;
  font-size: 1rem;
}

.price-card, .service-card, .contact-simple {
  background: var(--card);
  border: 1.5px solid #00000059;
  border-radius: 8px;
  transition: transform .16s, box-shadow .16s, border-color .16s;
  box-shadow: 0 2px 4px #0000000f, 0 10px 22px #0000001a;
}

.price-card:hover, .service-card:hover {
  border-color: #000;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px #0000001a, 0 20px 40px #0000001a;
}

.hero {
  margin: 0 !important;
  padding: 0 !important;
}

.hero-image-wrapper {
  width: 100%;
  margin: 0;
  position: relative;
}

#prices {
  scroll-margin-top: 90px;
}

.services-grid-2 {
  text-align: left;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
}

.footer-map {
  background: #fff;
  width: 100vw;
  margin: 0 -50vw;
  padding: 0;
  position: relative;
  left: 50%;
  right: 50%;
}

.footer-map iframe {
  border: none;
  width: 100%;
  height: 450px;
  display: block;
}

.services-grid-2 h2 {
  align-items: flex-start;
  gap: 5px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  display: flex;
}

.services-grid-2 h2:before {
  content: "–";
  opacity: .7;
  font-weight: 900;
  transform: translateY(-1px);
}

.services-extra {
  text-align: center;
  background: #fff;
  border: 1px solid #0000001f;
  border-radius: 12px;
  max-width: 760px;
  margin: 3rem auto 0;
  padding: 28px 32px;
}

.services-extra .services-h1 {
  letter-spacing: .6px;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 900;
}

.services-extra h2 {
  margin: 10px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width: 600px) {
  .services-extra {
    padding: 20px 18px;
  }

  .services-extra .services-h1 {
    font-size: 18px;
  }

  .services-extra h2 {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  .services-extra {
    padding: 20px 18px;
  }

  .services-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-grid-2 h2 {
    font-size: 15px;
  }
}

h4.reveal {
  --d: 0s;
  justify-content: center;
  font-size: 190%;
  display: flex;
}

.hero-overlay {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.hero-actions {
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.5rem;
  display: flex;
}

.service-image {
  border-bottom: 1px solid #0000001f;
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.service-image img {
  object-fit: cover;
}

.service-body {
  padding: 1.25rem;
}

.services-extra {
  max-width: 760px;
  margin-top: 3rem;
}

.services-extra h3 {
  margin-bottom: 1rem;
  font-weight: 900;
}

.services-extra ul {
  color: var(--muted);
  gap: .45rem;
  padding-left: 1.1rem;
  display: grid;
}

.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.6rem;
  display: grid;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border: 1px solid #00000040;
  padding: 1.6rem;
}

.price {
  align-items: baseline;
  gap: .5rem;
  margin: .75rem 0;
  display: flex;
}

.price-eur {
  color: var(--brand);
  font-size: 1.6rem;
  font-weight: 900;
}

.price-bgn {
  color: var(--muted);
  font-size: .85rem;
}

.services {
  padding: 3rem 0;
}

.services-grid {
  align-items: stretch;
  gap: 1.6rem;
}

.service-card {
  flex-direction: column;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.service-image {
  background: #f2f2f2;
  border-bottom: 1px solid #0000001f;
  width: 100%;
  height: 190px;
  position: relative;
  overflow: hidden;
}

.service-image img {
  object-fit: cover;
  transform: scale(1.02);
}

.service-body {
  flex-direction: column;
  flex: auto;
  gap: .65rem;
  padding: 1.2rem 1.25rem 1.25rem;
  display: flex;
}

.service-title {
  font-size: 1.05rem;
  line-height: 1.25;
}

.service-desc {
  min-height: 76px;
  line-height: 1.6;
}

.service-meta {
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: auto;
  padding-top: .6rem;
  display: flex;
}

.badge {
  background: #ffffffa6;
  border: 1px solid #00000038;
}

.services-extra {
  background: #fff;
  border: 1.5px solid #00000040;
  border-radius: 8px;
  max-width: 920px;
  margin-top: 2.2rem;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 8px 18px #0000000f;
}

.services-extra h3 {
  letter-spacing: -.01em;
  margin-bottom: .9rem;
  font-weight: 950;
}

.services-extra ul {
  color: var(--muted);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem 1.6rem;
  padding-left: 1.1rem;
  display: grid;
}

@media (max-width: 700px) {
  .services-extra ul {
    grid-template-columns: 1fr;
  }

  .footer-adv {
    justify-content: center;
    display: grid;
  }
}

.services h2 {
  margin-bottom: 1rem;
}

.service-image img {
  transition: transform .22s;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.services-grid {
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 1.5rem;
  display: grid;
}

.service-card {
  flex-direction: column;
  min-height: 180px;
  padding: 1.25rem;
  display: flex;
}

.service-title {
  align-items: center;
  gap: .7rem;
  font-size: 1.05rem;
  font-weight: 950;
  display: flex;
}

.service-icon {
  background: var(--brand-soft);
  width: 40px;
  height: 40px;
  color: var(--brand);
  border-radius: 10px;
  flex: none;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  display: inline-flex;
}

.service-desc {
  color: var(--muted);
  flex: auto;
  margin-top: .65rem;
  line-height: 1.5;
}

.service-meta .badge {
  color: var(--text);
  background: #0000000a;
  border: 1px solid #00000040;
  border-radius: 999px;
  align-items: center;
  padding: .3rem .6rem;
  font-size: .8rem;
  font-weight: 850;
  display: inline-flex;
}

.badge {
  border: 1px solid var(--border);
  color: var(--muted);
  background: none;
  border-radius: 999px;
  align-items: center;
  gap: .4rem;
  padding: .3rem .55rem;
  font-size: .85rem;
  font-weight: 750;
  display: inline-flex;
}

.service-meta {
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .9rem;
  display: flex;
}

.contact-simple {
  background: var(--card);
  border: 1.5px solid #00000073;
  border-radius: 8px;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  box-shadow: 0 4px 12px #00000024, 0 18px 36px #00000029;
}

.contact-lead {
  color: var(--muted);
  margin-top: .55rem;
}

.contact-lead strong {
  color: var(--text);
  font-weight: 900;
}

.contact-phone {
  color: var(--text);
  background: #fff;
  border: 2px solid #e5393573;
  border-radius: 8px;
  margin-top: 1.25rem;
  padding: 1.25rem;
  text-decoration: none;
  transition: transform .16s, box-shadow .16s, border-color .16s;
  display: block;
}

.contact-phone:hover {
  border-color: #e53935bf;
  box-shadow: 0 6px 14px #0000001a, 0 20px 40px #0000001f;
}

.contact-phone-label {
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: .25rem .55rem;
  font-size: .85rem;
  font-weight: 900;
  display: inline-block;
}

.contact-phone-number {
  color: var(--brand);
  letter-spacing: -.01em;
  margin-top: .55rem;
  font-size: 2rem;
  font-weight: 950;
  display: block;
}

.contact-phone-sub {
  color: var(--muted);
  margin-top: .35rem;
  font-size: .95rem;
  font-weight: 750;
  display: block;
}

.contact-quick {
  background: #ffffffb3;
  border: 1.25px solid #0003;
  border-radius: 8px;
  margin-top: 1rem;
  padding: 1rem;
}

.contact-quick-title {
  margin-bottom: .55rem;
  font-weight: 950;
}

.contact-quick-list {
  color: var(--muted);
  gap: .35rem;
  margin-left: 1.1rem;
  display: grid;
}

.contact-note {
  color: var(--muted);
  margin-top: 1rem;
  font-size: .95rem;
}

.contact-note a {
  color: var(--brand);
  font-weight: 950;
  text-decoration: none;
}

.contact-note a:hover {
  opacity: .9;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(6px);
}

.page-loaded .reveal {
  animation: .3s ease-out forwards fadeUp;
  animation-delay: var(--d, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .page-loaded .reveal {
    animation: none;
  }

  .btn {
    transition: none;
  }
}

.footer-adv {
  color: #e5e5e5;
  background: #1f1f1f;
  margin-top: 3rem;
  padding: 3rem 0 1.75rem;
  box-shadow: inset 0 1px #ffffff0a;
}

.footer-adv * {
  color: inherit;
}

.footer-top {
  grid-template-columns: 1.3fr .8fr .9fr;
  align-items: start;
  gap: 2rem;
  display: grid;
}

.footer-col {
  gap: .6rem;
  display: grid;
}

.footer-title, .footer-heading {
  color: #fff;
  font-weight: 950;
}

.footer-text {
  color: #bdbdbd;
  max-width: 48ch;
}

.footer-links {
  gap: .35rem;
  display: grid;
}

.footer-link-btn {
  cursor: pointer;
  color: #e5e5e5;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  font-weight: 800;
}

.footer-link-btn:hover {
  color: #fff;
  text-underline-offset: 3px;
  text-decoration: underline;
}

.footer-contact {
  gap: .35rem;
  display: grid;
}

.footer-link {
  color: #e5e5e5;
  font-weight: 850;
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
  text-underline-offset: 3px;
  text-decoration: underline;
}

.footer-muted {
  color: #bdbdbd;
  font-size: .95rem;
  font-weight: 650;
}

.footer-bottom-adv {
  color: #bdbdbd;
  border-top: 1px solid #ffffff1f;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 1.25rem;
  font-size: .95rem;
  font-weight: 650;
  display: grid;
}

@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

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

@media (max-width: 600px) {
  .services-grid, .price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  html {
    font-size: 16px;
  }

  .hero, .prices, .services, .contact {
    padding: 2.5rem 0;
  }

  .nav-adv, .desktop-only {
    display: none;
  }

  .burger {
    background-color: var(--brand);
    display: inline-flex;
  }

  .brand-adv span {
    display: none;
  }

  .contact-simple {
    padding: 1.5rem;
  }

  .contact-phone-number {
    font-size: 1.7rem;
  }
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-text {
    max-width: 64ch;
  }
}

.srv-wrapper {
  color: #333;
  background-color: #f9fafb;
  padding-top: 60px;
  padding-bottom: 60px;
  font-family: system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

.srv-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.srv-hero {
  text-align: center;
  margin-bottom: 60px;
  animation: 1s ease-out fadeInUp;
}

.srv-title {
  color: #111827;
  margin-bottom: 20px;
  padding-top: 15%;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.srv-subtitle {
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.6;
}

.srv-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  display: grid;
}

.srv-card {
  opacity: 0;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 30px;
  transition: transform .3s, box-shadow .3s;
  animation: .8s ease-out forwards fadeInUp;
  box-shadow: 0 4px 20px #0000000d;
}

.srv-card:first-child {
  animation-delay: .2s;
}

.srv-card:nth-child(2) {
  animation-delay: .4s;
}

.srv-card:nth-child(3) {
  animation-delay: .6s;
}

.srv-card:hover {
  border-color: #fee2e2;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px #d9302526;
}

.srv-icon {
  color: #d93025;
  background: #fef2f2;
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 15px;
  font-size: 2.5rem;
  display: inline-block;
}

.srv-card-title {
  color: #111827;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 700;
}

.srv-card-text {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.6;
}

.srv-content-block {
  opacity: 0;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px;
  animation: 1s ease-out .5s forwards fadeInUp;
  box-shadow: 0 4px 20px #0000000d;
}

.srv-h2 {
  color: #111827;
  border-bottom: 3px solid #d93025;
  margin-bottom: 25px;
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
}

.srv-text {
  color: #374151;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.srv-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.srv-list li {
  color: #374151;
  margin-bottom: 15px;
  padding-left: 35px;
  font-size: 1.1rem;
  position: relative;
}

.srv-list li:before {
  content: "✓";
  color: #d93025;
  background: #fee2e2;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.srv-cta {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #f3463a 0%, #b91c1c 100%);
  border-radius: 16px;
  margin-top: 40px;
  padding: 40px 20px;
}

.fb-icon-link {
  transition: transform .2s;
}

.fb-icon-link:hover {
  transform: scale(1.15);
}

.srv-cta h3 {
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 800;
}

.srv-phones {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
  display: flex;
}

.srv-phone-btn {
  color: #d93025;
  background: #fff;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform .2s;
  display: inline-block;
  box-shadow: 0 4px 15px #0003;
}

.srv-phone-btn:hover {
  transform: scale(1.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .srv-title {
    font-size: 2.2rem;
  }

  .srv-h2 {
    font-size: 1.6rem;
  }

  .srv-content-block {
    padding: 25px;
  }
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/