/**/.hamburgerButton{display:block;background-color:transparent;border:0;padding:0;margin:0}.hamburgerButton,.hamburgerButton svg{width:100%;height:100%}/**/.imageWidget{position:relative}.imageWidget a,.imageWidget span.image-caption{font-style:italic;text-align:center}.imageWidget a[data-caption]::after,.imageWidget span[data-caption]::after{content:attr(data-caption);display:block;line-height:100%}
.imageWidget.with-caption a::after,.imageWidget.with-caption span.image-caption::after{margin-top:12px}.imageWidget img[width][height]{height:auto}[data-flex-site] #fcontainer .imageWidget:after,[data-flex-site] #flex-footer .imageWidget:after,[data-flex-site] #flex-header .imageWidget:after{content:none}
[data-flex-site] #fcontainer .imageWidget:before,[data-flex-site] #flex-footer .imageWidget:before,[data-flex-site] #flex-header .imageWidget:before{font-size:80px;transform:none}.imageWidget.hover img.hover-image,.imageWidget:hover img.hover-image{display:initial}
.imageWidget.hover.hasHover img:not(.hover-image),.imageWidget:hover.hasHover img:not(.hover-image){display:none!important}.imageWidget img.hover-image,.imageWidget img.logo-on-scroll{display:none}
/* Custom Widgets Styles */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
/* Global Box Sizing for Widget */
.revw-widget *,
.revw-widget *::before,
.revw-widget *::after {
  box-sizing: border-box;
}

/* Reviews Widget Container */
.revw-widget {
  width: 100%; /* Full width */
  height: 30vh; /* Relative height using viewport height */
  position: relative; /* Allows for overlay to be positioned absolutely */
  background: url("https://magnetic-service-images.s3.eu-north-1.amazonaws.com/reviews-hero-image.webp") no-repeat center center; /* Replace with your desired background image */
  background-size: cover; /* Scale background image to cover container */
  margin: 0; /* Remove default margins */
  padding: 0; /* Remove default padding */
}

/* Dark overlay to make text pop */
.revw-widget .revw-overlay {
  position: absolute; /* Overlay sits on top of background image */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  margin: 0; /* Ensure no margins */
  padding: 0; /* Ensure no padding */
}

/* White text styling */
.revw-widget h1 {
  position: absolute; /* Allows text to appear above overlay */
  top: 50%; /* Vertically center text within the widget */
  left: 50%; /* Horizontally center text within the widget */
  transform: translate(-50%, -50%); /* Achieve perfect centering */
  z-index: 1; /* Ensure text is above overlay */
  color: #ffffff !important; /* White text that contrasts well over dark overlay */
  text-align: center; /* Center the text horizontally */
  font-size: 3vh; /* Relative sizing based on viewport height */
  margin: 0; /* Remove default margins */
  font-family: "Inter", sans-serif; /* Consistent font family */
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
.reviews-section {
  font-family: "Poppins", sans-serif;
  padding: 0 2rem 2rem 2rem;
  background-color: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.reviews-title {
  font-size: clamp(1.2rem, 3.2vw, 1.6rem);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 3rem 0;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  width: 100%;
  padding-top: 0;
}

.reviews-content {
  width: 80%;
  margin: 0 auto;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  margin-top: 0rem;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.google-logo {
  height: 30px;
  width: auto;
}

.rating-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.rating-text {
  display: flex;
  flex-direction: column;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.review-count {
  font-size: 1rem;
  color: #666;
  margin-left: 0.5rem;
}

.stars-container {
  position: relative;
  display: inline-block;
  text-align: left;
}

.stars-background,
.stars-fill {
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -1px;
}

.stars-background {
  color: #e7e7e7;
}

.stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  color: #FBC02D;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3em;
  max-height: 3em;
  width: 100%;
}

.review-text {
  color: #333;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  min-height: 10.5em;
  max-height: 10.5em;
}

.review-stars-container {
  position: relative;
  display: inline-block;
  text-align: left;
  margin: 1rem 0;
}

.review-stars-background,
.review-stars-fill {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -1px;
}

.review-stars-background {
  color: #e7e7e7;
}

.review-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  color: #FBC02D;
}

.review-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.875rem;
  margin-top: auto;
}

.google-icon {
  width: 16px;
  height: 16px;
}

/* Tablet */
@media (max-width: 1024px) {
  .reviews-content {
    width: 90%;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile */
@media (max-width: 768px) {
  .reviews-content {
    width: 100%;
  }
  .reviews-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 2rem;
  }
  .reviews-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .rating-container {
    flex-direction: column;
    gap: 1rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background-color: #151C31;
  color: #ffffff;
  padding: 4rem 2rem 2rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.footer-content {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h2,
.footer-column h3 {
  color: #ffffff !important;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-column h2 {
  font-size: 1.5rem;
}

.footer-column p {
  color: #B0B7C3;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #B0B7C3;
}

.footer-column ul li i {
  margin-top: 0.25rem;
}

.footer-column a {
  color: #B0B7C3;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #B0B7C3;
  font-size: 1.25rem;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #ffffff;
}

address {
  font-style: normal;
  color: #B0B7C3;
}

.quick-links li {
  margin-bottom: 0.75rem;
}

.business-hours span {
  color: #B0B7C3;
}

.emergency-service {
  color: #FFD700 !important;
}

.footer-bottom {
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #B0B7C3;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #B0B7C3;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.legal-links {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
/* Global Box Sizing for Widget */
.cont-contact-cards *,
.cont-contact-cards *::before,
.cont-contact-cards *::after {
  box-sizing: border-box;
}

/* Contact Cards Container */
.cont-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  font-family: "Inter", sans-serif;
  border-radius: 20px;
  background: transparent;
}

/* Section Title */
.cont-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
  grid-column: 1/-1; /* Span all grid columns */
  text-align: center;
}

/* Individual Contact Card */
.cont-card {
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Icon Wrapper */
.cont-icon-wrapper {
  background-color: #f0f5ff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cont-icon-wrapper i {
  color: #4169e1;
  font-size: 1.25rem;
}

/* Card Title */
.cont-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.75rem 0;
  font-family: "Inter", sans-serif;
  width: 100%;
}

/* Card Description */
.cont-card p {
  font-size: 1rem;
  color: #666666;
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
  width: 100%;
}

/* Action Link */
.cont-action-link {
  color: #3266E3;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  margin-top: auto;
  transition: color 0.2s;
}

.cont-action-link:hover {
  color: #2d4ba0;
}

.cont-action-link i {
  font-size: 0.875rem;
  color: #3266E3;
}

/* Phone Link */
.cont-phone-link {
  color: #4169e1;
  font-size: 1.125rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.cont-phone-link:hover {
  color: #2d4ba0;
}

/* Icon Background */
.cont-icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Design */
/* Tablets and Below (max-width: 1024px) */
@media (max-width: 1024px) {
  .cont-contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .cont-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}
/* Mobile Devices (max-width: 640px) */
@media (max-width: 640px) {
  .cont-contact-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  .cont-card {
    padding: 1.5rem;
  }
  .cont-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
