*,
*::before,
*::after {
  box-sizing: border-box;
  outline: 1px solid transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #000000;
}

h1 {
  font-size: 3rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #28A7E1;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #1a89bc;
}
a:focus-visible {
  outline: 1px solid #28A7E1;
  outline-offset: 4px;
  border-radius: 4px;
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

section {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}

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

a[href^="tel:"] {
  color: inherit;
  font-weight: 600;
  white-space: nowrap;
}
a[href^="tel:"]:hover {
  color: #28A7E1;
}

::selection {
  background-color: #28A7E1;
  color: #FFFFFF;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #28A7E1;
}

.text-secondary {
  color: #A0D470;
}

.text-dark {
  color: #000000;
}

.text-light {
  color: #FFFFFF;
}

.text-muted {
  color: gray;
}

.bg-primary {
  background-color: #28A7E1;
}

.bg-secondary {
  background-color: #A0D470;
}

.bg-dark {
  background-color: #000000;
}

.bg-light {
  background-color: #FFFFFF;
}

.bg-gradient {
  background: linear-gradient(135deg, #A0D470 0%, #79BF6C 100%);
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.py-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .py-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-inline-block {
  display: inline-block;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.w-100 {
  width: 100%;
}

.max-w-lg {
  max-width: 800px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.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;
}

.skip-link {
  position: absolute;
  top: -45px;
  left: 4px;
  background: #28A7E1;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  z-index: 1050;
  transition: top 0.3s;
}
.skip-link:focus-visible {
  top: 4px;
}

@media (max-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
.btn-primary-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  background-color: #28A7E1;
  border: 2px solid #28A7E1;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary-cta:hover {
  background-color: #1a89bc;
  border-color: #1a89bc;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn-primary-cta:focus-visible {
  outline: 3px solid rgba(40, 167, 225, 0.5);
  outline-offset: 2px;
}
.btn-primary-cta:active {
  transform: translateY(0);
}

.btn-secondary-cta {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px) saturate(180%) brightness(200%);
  -webkit-backdrop-filter: blur(30px) saturate(180%) brightness(200%);
  border: 3px solid transparent;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary-cta:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn-secondary-cta:focus-visible {
  outline: 3px solid rgba(40, 167, 225, 0.5);
  outline-offset: 2px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px) saturate(180%) brightness(200%);
  -webkit-backdrop-filter: blur(30px) saturate(180%) brightness(200%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.service-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(121, 191, 108, 0.2);
  border-radius: 50%;
  color: #79BF6C;
  font-size: 2rem;
}
.service-card .service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000000;
}
.service-card .service-description {
  color: #000000;
  margin-bottom: 1.5rem;
}
.service-card .service-features {
  text-align: left;
  padding-left: 1.5rem;
}
.service-card .service-features li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  color: #000000;
}
.service-card .service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background-color: #000000;
  border-radius: 50%;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading .section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000000;
}
.section-heading .section-subtitle {
  font-size: 1.125rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease;
}
.phone-link:hover {
  color: #28A7E1;
}
.phone-link .phone-icon {
  color: #28A7E1;
}

.experience-badge {
  display: inline-block;
  max-width: 200px;
}

[data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos-duration="400"] {
  transition-duration: 400ms;
}

[data-aos][data-aos-duration="600"] {
  transition-duration: 600ms;
}

[data-aos][data-aos-duration="800"] {
  transition-duration: 800ms;
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0 1.5rem;
  background: rgb(0, 0, 0);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgb(0, 0, 0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.site-header.scrolled .logo {
  max-width: 140px;
}
.site-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 1rem;
}
.site-header .header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header .logo {
  max-width: 180px;
  height: auto;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .site-header .logo {
    max-width: 70px !important;
  }
}
.site-header .nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-header .nav-menu .nav-cta {
  display: none;
}
@media (max-width: 992px) {
  .site-header .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background-color: #000000;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1001;
  }
  .site-header .nav-menu.active {
    display: flex;
  }
  .site-header .nav-menu .nav-cta {
    display: none;
  }
}
@media (max-width: 992px) and (max-width: 768px) {
  .site-header .nav-menu .nav-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
  }
}
.site-header .nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.site-header .nav-link:hover {
  color: #28A7E1;
}
.site-header .nav-link:focus-visible {
  outline: 1px solid #28A7E1;
  outline-offset: 4px;
  border-radius: 4px;
}
.site-header .nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 992px) {
  .site-header .nav-toggle {
    display: block;
  }
}
.site-header .nav-toggle .hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  position: relative;
  transition: all 0.3s ease;
  z-index: 1002;
}
.site-header .nav-toggle .hamburger::before, .site-header .nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}
.site-header .nav-toggle .hamburger::before {
  top: -8px;
  left: 0;
}
.site-header .nav-toggle .hamburger::after {
  bottom: -8px;
  left: 0;
}
.site-header .nav-toggle.active .hamburger {
  background-color: transparent;
}
.site-header .nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.site-header .nav-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.site-header .header-actions {
  display: none;
}
@media (min-width: 768px) {
  .site-header .header-actions {
    display: block;
  }
}
.site-header .header-actions.flip-card {
  perspective: 1000px;
  height: 44px;
  min-width: 200px;
}
.site-header .header-actions .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
.site-header .header-actions .flip-card-front,
.site-header .header-actions .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.site-header .header-actions .flip-card-back {
  transform: rotateX(180deg);
}
.site-header .header-actions .btn-header-cta {
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  white-space: nowrap;
}
.site-header.scrolled .header-actions .flip-card-inner {
  transform: rotateX(180deg);
}
.site-header .header-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-header .header-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #FFFFFF;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.site-header .header-social .social-link:hover {
  color: #28A7E1;
}
.site-header .header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #FFFFFF;
}
.site-header .header-phone:hover {
  color: #28A7E1;
}
.site-header .nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.site-header .nav-overlay.active {
  display: block;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1rem 4rem;
  overflow: hidden;
}
.hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  background-color: #79BF6C;
  background-image: linear-gradient(135deg, #79BF6C 0%, #A0D470 50%, #28A7E1 100%);
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: -1;
}
.hero-section .hero-content {
  max-width: 800px;
  color: #FFFFFF;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}
.hero-section .hero-tagline {
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #A0D470;
  margin-bottom: 1rem;
}
.hero-section .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 2.5rem;
  }
}
.hero-section .hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section .hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .hero-section .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }
}
.hero-section .hero-phone {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
}
.hero-section .hero-phone:hover {
  color: #A0D470;
}

.services-section {
  position: relative;
  overflow: hidden;
}
.services-section .services-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}
@media (max-width: 768px) {
  .services-section .services-background {
    background-attachment: scroll;
  }
}
.services-section .services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: saturate(180%);
  z-index: -1;
}
.services-section .section-heading .section-title,
.services-section .section-heading .section-subtitle {
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}
.services-section .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .services-section .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services-section .services-cta {
  text-align: center;
}

.service-area-section {
  padding-bottom: 10rem;
}
.service-area-section .map-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.service-area-section .map-container .map-iframe {
  width: 100%;
  height: 400px;
  border: none;
}
@media (max-width: 768px) {
  .service-area-section .map-container .map-iframe {
    height: 300px;
  }
}
.service-area-section .map-container .map-fallback {
  display: none;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .service-area-section .map-container .map-fallback {
    height: 300px;
  }
}
.service-area-section .map-container.map-error .map-iframe {
  display: none;
}
.service-area-section .map-container.map-error .map-fallback {
  display: block;
}
.service-area-section .service-area-text {
  text-align: center;
  font-size: 1.25rem;
  color: #28A7E1;
  font-weight: 600;
  margin-bottom: 2rem;
}
.service-area-section .service-area-cta {
  text-align: center;
}
.service-area-section .service-area-cta .btn-secondary-cta {
  background: rgba(40, 167, 225, 0.1);
  color: #28A7E1;
  border-color: #28A7E1;
  box-shadow: none;
  text-shadow: none;
}
.service-area-section .service-area-cta .btn-secondary-cta:hover {
  background: rgba(40, 167, 225, 0.2);
  color: #28A7E1;
  box-shadow: none;
}

.differentiators-section {
  background-color: rgba(160, 212, 112, 0.1);
  background: linear-gradient(0, rgba(160, 212, 112, 0.1) 20%, white 50%);
  text-align: center;
}
.differentiators-section .differentiators-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .differentiators-section .differentiators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .differentiators-section .differentiators-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.differentiators-section .differentiator-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.differentiators-section .differentiator-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(40, 167, 225, 0.1);
  border-radius: 50%;
  color: #28A7E1;
  font-size: 1.75rem;
}
.differentiators-section .differentiator-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #000000;
}
.differentiators-section .differentiator-description {
  color: #4d4d4d;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.about-section {
  background-color: rgba(121, 191, 108, 0.1);
  padding-top: 60px;
}
.about-section .about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.about-section .experience-badge-container {
  flex-shrink: 0;
}
.about-section .experience-badge-container .experience-badge {
  max-width: 200px;
  height: auto;
  top: -180px;
  position: absolute;
  left: calc(50% - 100px);
}
@media (max-width: 768px) {
  .about-section .experience-badge-container .experience-badge {
    top: -156px;
    left: calc(50% - 80px);
    max-width: 160px;
  }
}
.about-section .about-text .about-title {
  margin-bottom: 1rem;
}
.about-section .about-text .about-description {
  color: #4d4d4d;
  margin-bottom: 0;
}

.reviews-section {
  padding-top: 40px;
}
.reviews-section .reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .reviews-section .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.reviews-section .review-card {
  background-color: #FFFFFF;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.reviews-section .review-stars {
  color: #ffc107;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.reviews-section .review-stars i {
  margin: 0 2px;
}
.reviews-section .review-text {
  font-style: italic;
  color: #333333;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.reviews-section .review-author {
  font-weight: 600;
  color: #28A7E1;
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, #28A7E1 0%, #1a89bc 100%);
  text-align: center;
  color: #FFFFFF;
}
.cta-section .cta-title {
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.cta-section .cta-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .btn-primary-cta {
  background-color: #FFFFFF;
  color: #28A7E1;
  border-color: #FFFFFF;
}
.cta-section .btn-primary-cta:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #28A7E1;
}

.site-footer {
  background-color: #000000;
  color: #FFFFFF;
  padding: 3rem 0 1.5rem;
}
.site-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.site-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .site-footer .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.site-footer .footer-logo {
  max-width: 160px;
}
.site-footer .footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .site-footer .footer-social {
    justify-content: flex-start;
  }
}
.site-footer .footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}
.site-footer .footer-social .social-link:hover {
  background-color: #28A7E1;
  color: #FFFFFF;
}
.site-footer .footer-info .footer-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.5rem;
}
.site-footer .footer-info .footer-phone:hover {
  color: #A0D470;
}
.site-footer .footer-info .footer-service-area {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}
.site-footer .footer-info .footer-hours {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
.site-footer .footer-info .footer-hours i {
  margin-right: 0.5rem;
}
.site-footer .footer-tagline {
  color: #A0D470;
  font-style: italic;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

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