:root {
  --black: #222222;
  --red: #c8102e;
  --silver: #c0c0c0;
  --white: #f8f8ff;

  --shadow: 0 14px 30px rgba(0, 0, 0, .16);
  --radius: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--white);
  color: var(--black);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Buttons */
.btn {

  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, filter .12s ease, border-color .12s ease;
  white-space: nowrap;
}



.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background-color: pink;
  color: #c8012e;
  border-color: black
}

.btn-primary:hover {
  filter: brightness(.95);
}

.btn-outline {
  background: transparent;
  border-color: rgba(34, 34, 34, .22);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-lg {
  padding: 12px 16px;
}

/* Topbar */






/* Navbar */




/* LOGO IMAGE */







/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(200, 16, 46, .10), rgba(192, 192, 192, .18)), var(--white);
  padding: 48px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 24px;
  align-items: start;
}

.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 34, 34, .06);
  border: 1px solid rgba(34, 34, 34, .10);
  font-weight: 900;
  margin: 0 0 14px;
}

.hero-content h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -.6px;
}

.hero-content h2 {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(34, 34, 34, .78);
  font-weight: 900;
}

.hero-text {
  margin: 0 0 18px;
  line-height: 1.65;
  color: rgba(34, 34, 34, .85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.info-card {
  background: rgba(248, 248, 255, .65);
  border: 1px solid rgba(34, 34, 34, .10);
  border-radius: 16px;
  padding: 12px;
}

.info-card strong {
  display: block;
  margin-bottom: 4px;
}

.info-card span {
  color: rgba(34, 34, 34, .78);
  font-weight: 700;
}

/* Quote card */
.quote-card {
  background: var(--white);
  border: 1px solid rgba(34, 34, 34, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.quote-card h3 {
  margin: 0 0 6px;
}

.quote-card p {
  margin: 0 0 14px;
  color: rgba(34, 34, 34, .75);
}

.form {
  display: grid;
  gap: 10px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 900;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(34, 34, 34, .18);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(200, 16, 46, .55);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, .12);
}

.small {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(34, 34, 34, .7);
}

.small a {
  color: var(--red);
  font-weight: 950;
}

/* Sections / footer */
.section {
  padding: 52px 0;
}

.section h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.3vw, 30px);
}

.section p {
  margin: 0;
  line-height: 1.7;
  color: rgba(34, 34, 34, .80);
  max-width: 70ch;
}

.alt {
  background: rgba(192, 192, 192, .22);
  border-top: 1px solid rgba(34, 34, 34, .07);
  border-bottom: 1px solid rgba(34, 34, 34, .07);
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 18px 0;
}

/* Hide Instagram and TikTok footer items and the footer email link site-wide */
.social-link[aria-label="Instagram"],
.social-link[aria-label="TikTok"] {
  display: none !important;
}

/* Hide any footer contact list item that contains a mailto link. Uses :has when available, with a fallback that hides mailto anchors. */
.footer .footer-list li:has(a[href^="mailto:"]) {
  display: none !important;
}

.footer .footer-list a[href^="mailto:"] {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 900;
  opacity: .95;
}

.footer-links a:hover {
  color: var(--silver);
}

.footer-links span {
  opacity: .55;
  margin: 0 8px;
}

/* Responsive */
@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

/* Mobile menu (activate mobile layout at <=820px) */
@media (max-width: 820px) {

  /* Center topbar contents on phones/tablets */
  .topbar-inner {
    flex-direction: row;
    /* center items vertically so company name lines up with the button */
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    /* original top/bottom padding: 10px; increase bottom by 30px (10 + 30 = 40) */
    padding: 10px 0 40px;
  }

  .topbar-brand {
    flex: 0 1 auto;
    min-width: 0;
    text-align: center;
    display: flex;
    align-items: center;
  }

  .company-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
  }

  .topbar-actions {
    flex: 0 0 auto;
    width: auto;
    justify-content: center;
  }

  /* Keep full nav inline and centered at <=820px; hide hamburger */
  .hamburger {
    display: none;
  }

  .nav-inner {
    justify-content: center;
    gap: 12px;
  }

  .navlinks {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin: 0 auto;
  }

  .navlinks.open {
    display: flex;
  }

  .nav-cta {
    /* hide the schedule CTA in the nav at <=820px */
    display: none;
    padding-top: 0;
  }

  /* Restore dropdown behavior similar to desktop so submenus appear under buttons */
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    padding: 10px;
    background: var(--white);
    border: 1px solid rgba(34, 34, 34, .12);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
  }

  .dropdown.open .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    background: transparent;
  }

  /* Show a centered logo between topbar and nav on small screens */
  .mobile-logo {
    display: flex;
    justify-content: center;
    /* remove bottom padding and pull container up so its bottom is raised */
    padding: 8px 0 0;
    margin-bottom: -70px;
    /* raises the bottom border by 70px total */
    position: relative;
    overflow: visible;
    /* allow the larger logo to overflow its container */
  }

  /* Hide the logo inside the nav on small screens (we show the mobile-logo instead) */
  .nav-inner .logo {
    display: none;
  }

  /* Make the mobile logo larger, centered, and slightly overlapping adjacent bars */
  .mobile-logo .logo-img {
    position: relative;
    height: 210px;
    /* slightly larger */
    width: auto;
    transform: translateY(-42px);
    /* increase upward overlap proportionally */
    z-index: 101;
    /* sit above the nav (nav uses z-index:100) */
    display: block;
    margin: 0 auto;
  }
}



/* === Footer upgrade (3-column) === */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 34px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.footer h3 {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: .2px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  color: var(--silver);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(248, 248, 255, .18);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-small {
  opacity: .92;
  font-weight: 800;
  text-align: center;
  flex-basis: 100%;
}

.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  opacity: .95;
}

.social-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

/* =========================
   Mobile NAV (<=680px)
   - Red navbar background
   - Replace links with hamburger toggle
   - Slide-down panel + animated hamburger
   ========================= */

.mobile-toggle {
  display: none;
  /* shown only on small screens */
  align-items: center;
  gap: 10px;
  background: rgba(34, 34, 34, .92);
  color: var(--white);
  border: 1px solid rgba(248, 248, 255, .18);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
}

.mobile-toggle:active {
  transform: translateY(1px);
}

.hamburger {
  width: 22px;
  height: 16px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform .18s ease, opacity .18s ease;
}

/* Animated hamburger -> X when open */
.mobile-toggle.is-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}



/* Dropdown menus flow inside panel on mobile */
.dropdown-menu {
  position: static;
  min-width: 0;
  box-shadow: none;
  border: none;
  padding: 6px 0 0;
}

.dropdown-menu a {
  border-radius: 12px;
  padding: 10px 12px;
}

/* Show Schedule Now inside the panel on mobile */
.nav-cta {
  display: block;
  padding-top: 6px;
}

/* Keep legacy mobile menu elements hidden */
.mobile-menu-bar,
.mobile-menu-panel {
  display: none !important;
}


.topbar {
  background-color: #222222;
  text-align: right;
  padding: 20px 80px 20px 20px;
  font-size: 30px;
  color: white;
}

.call-now-button {
  display: inline-block;
  text-decoration: none;
  color: #c8012e;
  padding-left: 10px;
  padding-right: 10px;
  transition: transform 0.15s ease;
}

.call-now-button:hover {
  transform: scale(1.1);
}

.fa-brands,
.fa-square-facebook {
  color: #1877F2;
}

.follow-us-button {
  display: inline-block;
  text-decoration: none;
  color: #c8012e;
  padding: 10px;
  transition: transform 0.15s ease;
  background-color: pink;
  border-radius: 10px;
}

.follow-us-button:hover {
  transform: scale(1.1);
}

#navigation-bar {
  border-top: 2px solid #c8012e;
  border-bottom: 2px solid #c8012e;
  height: 100px;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 220px;
  width: 220px;
  display: inline-block;
  margin-left: 30px;
}

.navbar {
  overflow: hidden;
  margin-left: auto;
  padding-right: 80px;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  /* Important for vertical align on mobile phones */
  margin: 0;
  /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover,
.dropdown:hover .dropbtn {
  background-color: #c8012e;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

@media (max-width: 1200px) {
  .navbar {
    padding: 0;
  }
}

@media (max-width: 1033px) {
  .topbar {
    text-align: center;
    padding: 20px;
  }

  #topbar-company-name {
    display: none;
  }

  .follow-us-button {
    padding: 10px;
  }
}

@media (max-width: 1030px) {
  .call-now-button {
    padding-bottom: 10px;
  }

  #navigation-bar {
    flex-direction: column;
    height: 250px;
    position: relative;
  }



  .logo-img {
    margin: 0px;
    position: relative;
    margin-top: -20px;
    margin-bottom: -20px;
  }

  .navbar {
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
  }
}

/* --- Mobile hamburger menu (added) --- */
.hamburger {
  display: none;
  /* shown at <=600px */
  background: none;
  border: none;
  cursor: pointer;
  font-size: 32px;
  padding: 10px 16px;
}

.mobile-menu {
  display: none;
  /* toggled with .open at <=600px */
}

@media (max-width: 825px) {

  /* Hide the desktop nav links */
  .navbar {
    display: none;
  }

  /* Show the hamburger */
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c8012e;
    margin-top: 20px;
  }

  /* Make room and allow the dropdown to position under the nav bar */
  #navigation-bar {
    position: relative;
    padding-right: 0;
  }

  /* Dropdown panel */
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-top: 2px solid #c8012e;
    border-bottom: 2px solid #c8012e;
    z-index: 1000;
  }

  .mobile-menu.open {
    display: block;
  }

  .mobile-menu a,
  .mobile-menu summary {
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    color: black;
    font-size: 16px;
    cursor: pointer;
    border-top: 3px solid #eee;
  }

  .mobile-menu a:hover,
  .mobile-menu summary:hover {
    background-color: #ddd;
  }



  .mobile-submenu a {
    padding-left: 32px;
  }
}

* {
  box-sizing: border-box
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

.text {
  font-size: 25px;
  font-weight: bold;
  background-color: black;
  width: fit-content;
}

/*Reviews Section*/
:root {
  --card-gap: 20px;
  --arrow-enabled: #000000;
  --arrow-disabled: #cccccc;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 50px;
  /* Space for arrows */
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
  gap: var(--card-gap);
  padding: 20px 0;
}

.carousel-container::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome/Safari */
}

.review-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  /* Rounded corners */
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
  flex: 0 0 100%;
  /* Mobile: 1 card */
  box-sizing: border-box;
  min-height: 200px;
}

@media (min-width: 768px) {
  .review-card {
    /* Desktop: 3 cards minus the gaps */
    flex: 0 0 calc((100% / 3) - (var(--card-gap) * 2 / 3));
  }
}

.nav-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s;
  user-select: none;
}

.prev-btn {
  left: 0;
  color: var(--arrow-disabled);
}

.next-btn {
  right: 0;
  color: var(--arrow-enabled);
}

.review-text {
  font-style: italic;
  margin-bottom: 15px;
}

.reviewer-name {
  font-weight: bold;
  color: #333;
}

.star-rating {
    color: #fbbc04; /* Google's star gold color */
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    gap: 2px;
}

.star-rating .inactive {
    color: #ddd; /* Light grey for empty stars */
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.profile-photo {
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Makes the photo round */
    object-fit: cover; /* Prevents stretching */
    background-color: #eee; /* Placeholder color while image loads */
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: bold;
    color: #333;
    font-size: 1rem;
    margin: 0;
}

.star-rating {
    color: #fbbc04;
    font-size: 0.9rem;
    display: flex;
    gap: 1px;
}

profile-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #4285F4; /* Google Blue */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.review-title{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: bold;
}