/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --dark: #3d3f3f;
  --near-black: #222426;
  --yellow: #ffed08;
  --orange: #f27f28;
  --orange-text: #9b3c00;
  --amber: #ffae0b;
  --brown: #aa5d00;
  --white: #ffffff;
  --light-bg: #f5f5f5;
  --card-bg: #fafafa;
  --text: #333;
  --text-light: #444444;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, .12);
  --transition: all .3s ease;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', 'Roboto', sans-serif;
  line-height: 1.25
}

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

a {
  color: var(--orange-text);
  text-decoration: none;
  transition: var(--transition)
}

a:hover {
  color: var(--brown)
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-orange {
  background: linear-gradient(180deg, #faa242 0%, #e06d12 100%) !important;
  color: #fff !important;
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(224, 109, 18, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.4);
  border: none !important;
}

.btn-orange:hover {
  background: linear-gradient(180deg, #fba143 0%, #cf630e 100%) !important;
  box-shadow: 0 6px 18px rgba(224, 109, 18, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--near-black);
  color: #fff
}

.btn-dark:hover {
  background: var(--dark);
  color: var(--yellow);
  transform: translateY(-2px)
}

.btn-yellow {
  background: var(--amber);
  color: var(--near-black)
}

.btn-yellow:hover {
  background: var(--yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow)
}

.btn-sm {
  padding: 10px 22px;
  font-size: .85rem
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--near-black);
  color: #ccc;
  font-size: .82rem;
  padding: 6px 0;
  text-align: center;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px
}

.top-bar-phone {
  color: var(--amber);
  font-weight: 700;
  white-space: nowrap
}

.top-bar-phone:hover {
  color: var(--yellow)
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .12)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  /* Removed vertical padding */
  height: 80px;
  /* Fixed height to lock header size */
}

.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  z-index: 10;
}

.nav-logo img {
  height: auto;
  max-height: 120px;
  /* Default large size, can overflow 80px container */
  width: auto;
  transition: var(--transition);
  /* Use transform to ensure perfect centering if it overflows */
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px
}

/* Dropdown Menu Styling */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.dropdown-menu a {
  padding: 8px 20px !important;
  font-weight: 500 !important;
  color: var(--dark) !important;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}

.dropdown-menu a::after {
  display: none;
  /* Hide hover underline in dropdown */
}

.dropdown-menu a:hover {
  background-color: #fff4ec;
  color: var(--orange-text) !important;
}

/* Mobile dropdown — inline expand instead of absolute */
@media (max-width: 768px) {
  .dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 0;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--orange);
    padding: 0;
    border-radius: 0;
    background: #f9f9f9;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
    padding: 6px 0;
    transform: none;
  }

  .dropdown-menu a {
    padding: 10px 16px !important;
    font-size: 0.9rem !important;
  }
}

.nav-links a {
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .3s ease;
}

.nav-links a:hover {
  color: var(--orange-text)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  background: linear-gradient(180deg, #faa242 0%, #e06d12 100%) !important;
  color: #fff !important;
  font-weight: 800 !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
  box-shadow: 0 4px 15px rgba(224, 109, 18, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.4) !important;
  border: none !important;
}

.nav-cta::after {
  display: none !important
}

.nav-cta:hover {
  background: linear-gradient(180deg, #fba143 0%, #cf630e 100%) !important;
  box-shadow: 0 6px 18px rgba(224, 109, 18, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.4) !important;
  transform: scale(1.03);
}

.nav-phone-btn {
  background: var(--near-black) !important;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}

.nav-phone-btn::after {
  display: none !important
}

.nav-phone-btn:hover {
  background: var(--dark) !important;
  color: var(--amber) !important
}

.nav-mobile-cta {
  display: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition)
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px)
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px)
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #fbfaf8 0%, #f0ece4 50%, #e8e3d9 100%);
  position: relative;
  overflow: visible;
  padding: 60px 0 120px;
}

/* Grungy texture overlay for light background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  z-index: 5;
  pointer-events: none;
}

.hero-bg-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 375px;
  z-index: 1;
}

.hero-bg-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  padding-bottom: 20px;
}

.hero-text h1 {
  font-size: 3.2rem;
  color: var(--near-black);
  margin-bottom: 12px;
  line-height: 1.15;
  font-weight: 800;
}

.hero-text h1 .highlight {
  color: var(--orange-text);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  font-size: .95rem;
  color: var(--dark);
  font-weight: 500;
}

.badge-row {
  display: flex;
  gap: 24px;
  align-items: center;
}

.badge-row .chk {
  color: var(--orange-text);
  font-weight: bold;
}

.badge-row .stars {
  color: var(--amber);
}

.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 44px;
}

.btn-glow {
  background: linear-gradient(180deg, #f58d3d 0%, #e2701b 100%);
  color: #fff;
  border: 1px solid var(--amber);
  box-shadow: 0 6px 20px rgba(242, 127, 40, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2);
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-glow:hover {
  background: linear-gradient(180deg, #e2701b 0%, #cc6012 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 127, 40, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-call {
  background: var(--near-black);
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  text-align: center;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #3d3f3f;
  transition: var(--transition);
}

.btn-call small {
  font-size: .8rem;
  color: #ccc;
  font-weight: 400;
}

.btn-call:hover {
  background: var(--dark);
  border-color: #555;
  transform: translateY(-2px);
  color: var(--yellow);
}

.hero-image {
  flex: 0 0 365px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 520px;
  z-index: 2;
}

.hero-mascot {
  /*max-width:450px;*/
  width: 590px;
  max-width: none;
  height: auto;
  position: absolute;
  right: -65px;
  z-index: 2;
  bottom: -80px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .2));
  /*animation:heroFloat 4s ease-in-out infinite;*/
}

.hero-badge-logo {
  position: absolute;
  bottom: 0px;
  right: -30px;
  max-width: 250px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 5px 20px rgba(0, 0, 0, .4));
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.quote-form-section {
  background: var(--white);
  padding: 10px 0 10px;
  margin: -35px auto 0;
  scroll-margin-top: 120px;
  position: relative;
  width: 80%;
  z-index: 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.quote-form {
  display: flex;
  gap: 0;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #eee;
}

.quote-form input,
.quote-form select {
  flex: 1;
  padding: 18px 20px;
  border: none;
  border-right: 1px solid #eee;
  font-size: .95rem;
  font-family: 'Roboto', sans-serif;
  outline: none;
  background: transparent;
  min-width: 0;
}

.quote-form select {
  cursor: pointer;
  color: var(--text-light)
}

.quote-form input:focus,
.quote-form select:focus {
  background: #fffbf0
}

.quote-form .btn {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  white-space: nowrap;
  padding: 18px 30px
}

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: .85rem;
  color: var(--text-light)
}

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--near-black);
  margin-bottom: 10px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--orange), var(--amber));
  border-radius: 4px;
  margin: 12px auto 0;
}

.section-subtitle,
.section-intro {
  text-align: center;
  color: var(--text-light);
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1.02rem;
}

/* ===== SERVICES ===== */
.services {
  padding: 80px 0;
  background: var(--light-bg)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-card-content {
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.service-card.featured {
  border-top-color: var(--orange-text)
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 14px
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--near-black)
}

.service-card p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6
}

.service-card .btn {
  margin-top: auto;
  align-self: center;
}

/* ===== DETAIL SECTIONS ===== */
.detail-section {
  padding: 80px 0;
  background: var(--white)
}

.detail-section.alt {
  background: var(--light-bg)
}

.detail-inner {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.detail-inner.reverse {
  flex-direction: row-reverse;
  align-items: center;
}

.detail-inner.reverse .detail-image {
  flex: 0 0 420px;
  width: 490px;
  max-height: none;
}

.detail-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 490px;
  aspect-ratio: 4/3;
}

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

.detail-content {
  flex: 1
}

.detail-content h2 {
  font-size: 1.8rem;
  color: var(--near-black);
  margin-bottom: 16px
}

.detail-content h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin: 20px 0 12px
}

.detail-content p {
  margin-bottom: 14px;
  color: var(--text-light);
  line-height: 1.75
}

.check-list {
  list-style: none;
  margin: 0 0 20px
}

.check-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--text);
  font-size: .95rem;
}

.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--orange-text);
  font-weight: 700;
}

.financing-phone {
  box-shadow: none;
  background: transparent;
  max-width: 400px;
  flex: 0 0 400px;
}

.financing-phone img {
  object-fit: contain;
}

#financing .detail-content h2 {
  font-size: 1.5rem;
}

#financing .detail-content p,
#financing .check-list li {
  font-size: 0.85rem;
}

.financing-disclaimer {
  font-size: 0.78rem;
  color: #999;
  line-height: 1.6;
  margin-top: 20px;
  border-top: 1px solid #e5e5e5;
  padding-top: 16px;
}

/* ===== ABOUT US ===== */
.about-section {
  padding: 80px 0;
  background: var(--white)
}

.about-inner {
  display: flex;
  gap: 50px;
  align-items: center
}

.about-image {
  flex: 0 0 40%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /*aspect-ratio: 4/3;*/
  /*box-shadow:var(--shadow-lg)*/
}

.about-image img {
  width: 100%;
  height: auto
}

.about-content h2 {
  font-size: 2rem;
  color: var(--near-black);
  margin-bottom: 16px
}

.about-intro {
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 14px
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.75
}

.about-features {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 16px 20px;
  border-left: 4px solid var(--orange);
  transition: var(--transition);
}

.about-feature:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px)
}

.af-icon {
  font-size: 1.6rem;
  flex-shrink: 0
}

.about-feature strong {
  display: block;
  color: var(--near-black);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem
}

.about-feature span {
  font-size: .88rem;
  color: var(--text-light)
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap
}

.about-phone {
  color: var(--text-light);
  font-size: .95rem
}

.about-phone a {
  color: var(--orange-text)
}

.about-phone a:hover {
  color: var(--brown)
}

/* ===== TRUST BADGES ===== */
.trust-section {
  padding: 80px 0;
  background: var(--light-bg)
}

.trust-layout {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 30px;
}

.trust-photo {
  flex: 0 0 38%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.trust-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid #e8ecf0;
  transition: var(--transition);
}

.trust-card:hover {
  border-color: var(--orange-text);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.trust-card img {
  height: 80px;
  width: auto;
  margin: 0 auto 16px;
  object-fit: contain
}

.trust-card strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  color: var(--near-black);
  font-size: 1rem;
  margin-bottom: 4px
}

.trust-label {
  font-size: .85rem;
  color: var(--orange-text);
  font-weight: 600
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 30px;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  font-size: .95rem;
}

/* ===== WHY LOCAL ===== */
.why-local {
  padding: 80px 0;
  background: var(--white)
}

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

.why-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--orange-text)
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 12px
}

.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: var(--near-black);
  margin-bottom: 10px
}

.why-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.65
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 80px 0;
  background: var(--light-bg)
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg)
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition)
}

.gallery-item:hover img {
  transform: scale(1.05)
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .75));
  padding: 30px 16px 14px;
  color: #fff;
}

.gallery-caption strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem
}

.gallery-caption span {
  font-size: .8rem;
  opacity: .85
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 80px 0;
  background: var(--white)
}

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

.review-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--amber);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.review-stars {
  margin-bottom: 10px;
  font-size: 1.1rem
}

.review-card p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic
}

.review-author strong {
  display: block;
  color: var(--near-black);
  font-family: 'Outfit', sans-serif
}

.review-author span {
  font-size: .82rem;
  color: var(--text-light)
}

/* ======================== MAP & CONTACT SECTION ======================== */
.contact-section {
  padding: 80px 0;
  background: var(--light-bg);
  scroll-margin-top: 120px;
  position: relative;
  z-index: 5;
}

.contact-split {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 40px;
  flex-direction: row;
}

/* Left Side - Info */
.contact-info-block {
  flex: 1;
  padding: 40px;
  background: var(--near-black);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.map-wrapper {
  width: 100%;
  height: 260px;
  margin-bottom: 24px;
  display: block;
}

.map-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  border-radius: 8px;
}

.contact-info-block .info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-block .info-row .icon {
  width: 24px;
  height: 24px;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-block .info-row strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #fff;
}

.contact-info-block .info-row p,
.contact-info-block .info-row a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-block .info-row a:hover {
  color: var(--yellow);
}

.hours-list-light {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #ccc;
  font-size: 0.95rem;
  margin-top: 8px;
}

.hours-list-light li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  padding-bottom: 4px;
}

.hours-list-light li span:last-child {
  color: var(--yellow);
  font-weight: 500;
}

/* Right Side - Form */
.contact-form-block {
  flex: 1.2;
  padding: 40px;
  background: var(--white);
  scroll-margin-top: 120px;
}

.contact-form-block h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--near-black);
}

.full-quote-form .form-group {
  margin-bottom: 20px;
}

.full-quote-form .form-row {
  display: flex;
  gap: 20px;
}

.full-quote-form .form-row .half {
  flex: 1;
}

.full-quote-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.full-quote-form input,
.full-quote-form select,
.full-quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background: #fcfcfc;
  transition: var(--transition);
}

.full-quote-form textarea {
  resize: vertical;
}

.full-quote-form input:focus,
.full-quote-form select:focus,
.full-quote-form textarea:focus {
  outline: none;
  border-color: var(--orange-text);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(242, 127, 40, 0.1);
}

.contact-form-block .form-note {
  text-align: center;
  font-size: 0.85rem;
  color: #000000;
  margin-top: 16px;
}

/* ===== SERVICE AREA ===== */
.service-area {
  padding: 80px 0;
  background: var(--light-bg)
}

.service-area .section-intro {
  text-align: left;
  max-width: none;
  margin-bottom: 30px
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.area-column h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--orange-text);
  font-size: 1rem;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 6px;
}

.area-column ul {
  list-style: none
}

.area-column li {
  font-size: .85rem;
  color: var(--text);
  padding: 3px 0;
  border-bottom: 1px solid #eee;
  transition: var(--transition);
}

.area-column li:hover {
  color: var(--orange-text);
  padding-left: 6px
}

.area-note {
  text-align: center;
  color: var(--text-light);
  font-size: .95rem;
  margin-top: 10px
}

.area-note a {
  font-weight: 700
}

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 0;
  background: var(--white)
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.faq-item {
  background: var(--light-bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #eee;
}

.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: var(--orange-text)
}

.faq-item summary {
  padding: 18px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--near-black);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary::after {
  content: '＋';
  font-size: 1.3rem;
  color: var(--orange-text);
  transition: var(--transition)
}

.faq-item[open] summary::after {
  content: '−'
}

.faq-item summary:hover {
  background: rgba(242, 127, 40, .05)
}

.faq-answer {
  padding: 0 24px 20px;
  line-height: 1.75
}

.faq-answer p {
  color: var(--text-light);
  font-size: .95rem
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--near-black);
  color: #ccc;
  padding: 50px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-bg-texture {
  position: absolute;
  inset: 0;
  background-size: 400px;
  opacity: 0.7;
  mix-blend-mode: overlay;
  z-index: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
  align-items: center;
}

.footer-col-left {
  max-width: 440px;
}

.footer-col-left h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.footer-col-left h3 .highlight-yellow {
  color: #ffcc00;
}

.footer-col-left p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.btn-yellow-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffcc00;
  color: #111;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.15rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

.btn-yellow-arrow:hover {
  background: #ffdb4d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

.icon-arrow {
  width: 20px;
  height: 20px;
}

.footer-col-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.map-wrapper {
  /*width:140px;*/
  height: auto;
  position: relative;
}

.mn-map-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.map-dot-glow {
  transform-origin: 65px 85px;
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
}

.footer-divider {
  width: 2px;
  height: 140px;
  background: linear-gradient(to bottom, transparent, #ffcc00, transparent);
  opacity: 0.7;
}

.footer-col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-logo {
  max-width: 220px;
  margin-bottom: 24px;
}

.footer-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffcc00;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.footer-phone-big:hover {
  color: #ffdb4d;
}

.icon-phone {
  width: 24px;
  height: 24px;
}

.footer-address-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bbb;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.icon-map-pin {
  width: 18px;
  height: 18px;
  color: #888;
  flex-shrink: 0;
}

.footer-hours {
  margin-bottom: 24px;
}

.footer-hours h4 {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  color: #bbb;
  font-size: 0.9rem;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
  padding-bottom: 4px;
}

.hours-list li span:last-child {
  color: #ffcc00;
  font-weight: 500;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #ccc;
  transition: var(--transition);
}

.social-icon img {
  max-width: 18px;
  max-height: 18px;
  object-fit: contain;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background: #ffcc00;
  color: #111;
  transform: translateY(-2px);
}

.designed-by {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 0.7rem;
  color: #777;
  text-align: left;
  line-height: 1.2;
}

.design-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #555;
  font-size: 14px;
  font-family: monospace;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.4);
  padding: 16px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner p {
  font-size: 0.82rem;
  color: #888;
  margin: 0;
}

/* ===== SERVICE AREA TABLE ===== */
.area-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  margin-bottom: 20px;
}

.area-table th {
  text-align: left;
  padding: 0 15px 12px 0;
  border-bottom: 2px solid var(--orange-text);
  color: var(--orange-text);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.area-table td {
  padding: 0px 15px 10px 0;
  color: var(--text);
  font-size: 0.9rem;
  vertical-align: top;
}

/* Make table scrollable on small screens */
.service-area .container {
  overflow-x: auto;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .hero-text h1 {
    font-size: 2.5rem
  }

  .hero-image {
    flex: 0 0 315px
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust-layout {
    flex-direction: column;
    align-items: stretch
  }

  .trust-photo {
    width: 100%;
    max-width: none
  }

  .trust-photo img {
    position: static;
    height: auto;
    max-height: 570px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .area-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .detail-inner,
  .detail-inner.reverse,
  .contact-split {
    flex-direction: column
  }

  .detail-image {
    flex: 0 0 auto;
    width: 100%;
    max-height: 490px;
    display: ruby;
  }

  .detail-inner.reverse .detail-image {
    flex: 0 0 auto;
    width: 100%;
    max-height: 490px;
  }

  .about-inner {
    flex-direction: column
  }

  .about-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto
  }
}

@media (min-width:769px) and (max-width:780px) {
  .nav-links a {
    font-size: 0.65rem;
  }
}

@media (min-width:781px) and (max-width:910px) {
  .nav-links a {
    font-size: 0.7rem;
  }
}

@media (min-width:769px) and (max-width:1024px) {

  /* Додайте свої стилі для планшетів (769px - 1024px) сюди */
  .hero-mascot {
    max-width: 450px;
    bottom: 0px;
  }

  .hero-badge-logo {
    display: none;
  }
}

@media(max-width:768px) {
  .hero-text {
    padding-bottom: 0;
  }

  .hero-mascot {
    position: relative;
    width: 100%;
    right: auto;
  }

  .top-bar-inner {
    justify-content: center;
    text-align: center
  }

  .top-bar-inner span {
    display: none
  }

  .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    /*margin-left: auto;*/
    margin-right: 15px;
    background: linear-gradient(180deg, #faa242 0%, #e06d12 100%) !important;
    color: #fff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 50px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 10px rgba(224, 109, 18, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.4);
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s;
  }

  .nav-mobile-cta:active {
    transform: scale(0.96);
  }

  .nav-toggle {
    display: flex
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    gap: 14px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex
  }

  .hero {
    padding: 40px 0 60px
  }

  .hero::before {
    display: none
  }

  .hero-inner {
    flex-direction: column;
    text-align: center
  }

  .hero-text h1 {
    font-size: 2rem
  }

  .hero-sub {
    margin: 0 auto 20px
  }

  .hero-badges {
    justify-content: center
  }

  .hero-btns {
    justify-content: center
  }

  .hero-image {
    flex: 0 0 auto;
    /*order:-1;*/
    height: auto;
  }

  .hero-image img {
    /*max-height:280px;*/
    margin: 0 auto;
    bottom: 0px;
  }

  .hero-badge-logo {
    display: none;
  }

  .quote-form {
    flex-direction: column;
    border-radius: var(--radius-lg)
  }

  .quote-form input,
  .quote-form select {
    border-right: none;
    border-bottom: 1px solid #eee
  }

  .quote-form .btn {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    width: 100%
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  .gallery-item img {
    height: 220px
  }

  .reviews-grid {
    grid-template-columns: 1fr
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-col-left {
    max-width: 100%;
  }

  .footer-col-left p br {
    display: none;
  }

  .btn-yellow-arrow {
    justify-content: center;
    width: 100%;
  }

  .footer-divider {
    display: none;
  }

  .footer-col-right {
    align-items: center;
  }

  .footer-phone-big {
    justify-content: center;
  }

  .footer-address-bar {
    justify-content: center;
  }

  .footer-social-row {
    justify-content: center;
  }

  .designed-by {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    text-align: left;
  }

  .about-actions {
    justify-content: center;
    text-align: center
  }

  .section-title {
    font-size: 1.8rem
  }
}

@media(max-width:480px) {
  .hero-text h1 {
    font-size: 1.7rem
  }

  .hero-btns {
    flex-direction: column;
    width: 100%
  }

  .hero-btns .btn {
    width: 100%
  }

  .area-grid {
    grid-template-columns: 1fr
  }

  .trust-grid {
    grid-template-columns: 1fr
  }
}

/* Floating Call Button for Mobile */
.floating-call-btn {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: var(--orange);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(242, 127, 40, 0.4);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  animation: floating-pulse 2s infinite;
  text-decoration: none;
}

@keyframes floating-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 127, 40, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(242, 127, 40, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(242, 127, 40, 0);
  }
}

.floating-call-btn:hover {
  transform: scale(1.1);
  color: white;
}

.floating-call-btn svg {
  width: 32px;
  height: 32px;
}

@media (max-width:768px) {
  .floating-call-btn {
    display: flex;
  }
}

/* Visually hide element for accessibility (screen readers only) */
.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;
}

/* ===== LOCATIONS SECTION ===== */
.locations-section {
  padding: 80px 0;
  background: var(--near-black);
  position: relative;
  overflow: hidden;
}

.locations-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(242, 127, 40, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.locations-section .section-title {
  color: #fff;
}

.locations-section .section-title::after {
  background: linear-gradient(to right, var(--orange), var(--amber));
}

.locations-section .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242, 127, 40, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 127, 40, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(242, 127, 40, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.location-card:hover::before {
  opacity: 1;
}

.location-pin-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(242, 127, 40, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover .location-pin-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(242, 127, 40, 0.55);
}

.location-pin-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.location-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.location-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.location-link-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.location-card:hover .location-link-label {
  color: var(--amber);
}

@media (max-width: 900px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

.loc-btn-quote {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 0 0 var(--radius-lg) 0;
}

.loc-btn-quote:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

@media (max-width: 900px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== LOCATIONS CTA ROW (below cards) ===== */
.loc-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.loc-cta-call,
.loc-cta-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
}

.loc-cta-call {
  background: linear-gradient(135deg, var(--orange), #e07020);
  color: #fff;
  box-shadow: 0 6px 20px rgba(242, 127, 40, 0.4);
}

.loc-cta-call:hover {
  box-shadow: 0 10px 28px rgba(242, 127, 40, 0.6);
  transform: translateY(-2px);
}

.loc-cta-quote {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.loc-cta-quote:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 500px) {
  .loc-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .loc-cta-call,
  .loc-cta-quote {
    justify-content: center;
  }
}