:root {
  --font-size-base: 16px;
  --font-size-large: 24px;
  --font-family-title: "Lilita One", sans-serif;
  --font-family-text: "Montserrat", sans-serif;
  --font-color-primary: #333333;
  --font-color-secondary: #555555;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family-text);
  padding-bottom: 14px;
  padding-top: 8px;
  text-align: center;
}

.banner p {
  margin: 4px 0px;
}

.hero-section {
  width: 98%;
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 24px;
  background-image: url(images/hero-background.png);
  background-position: 50% 50%;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
  overflow: hidden;
}

.max-image {
  position: absolute;
  width: 500px;
  height: 600px;
  margin-top: 260px;
  margin-left: 700px;
  overflow: hidden;
  opacity: 0;
  animation: fadeInSlide 1.2s ease-out 0.3s forwards;
  will-change: opacity, transform;
}

.max-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: translateX(50px) translateY(0);
  animation: slideIn 1.2s ease-out 0.3s forwards,
             float 3s ease-in-out 1.5s infinite;
  will-change: transform;
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: translateX(50px) translateY(0);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

/* Subtle floating animation for the image */
@keyframes float {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(0) translateY(-10px);
  }
}

/* Reduced floating animation for mobile */
@keyframes floatMobile {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(0) translateY(-5px);
  }
}

/* .hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background-color: rgba(0, 0, 0, 0.582);
  z-index: 0;
} */

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  width: 100%;
}

.nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  z-index: 1;
}

.navbar-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.phone-number {
  text-decoration: none;
  color: white;
}

.phone-container {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-family-text);
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.phone-container:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.phone-icon {
  width: 20px;
  height: 20px;
  fill: white;
}

.phone-number-mobile {
  display: none;
  text-decoration: none;
  color: white;
  margin-bottom: 20px;
}

.phone-container-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 20px;
  font-family: var(--font-family-text);
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  width: fit-content;
  margin: 0 auto;
}

.phone-container-mobile:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.phone-icon-mobile {
  width: 20px;
  height: 20px;
  fill: white;
}

.phone-number-mobile-nav {
  display: none;
}

.hamburger-menu {
  display: none;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  margin-right: 10px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 8px;
  padding: 16px;
  min-width: 150px;
  z-index: 1000;
}

.mobile-menu-item {
  display: block;
  color: white;
  text-decoration: none;
  font-family: var(--font-family-text);
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-item:last-child {
  border-bottom: none;
}

.mobile-menu-item:hover {
  color: #ccc;
}

.navbar {
  display: flex;
  background-color: white;
  border-radius: 24px;
  gap: 12px;
}

.nav-item {
  all: unset;
  font-family: var(--font-family-text);
  font-size: var(--font-size-base);
  cursor: pointer;
  padding: 16px 24px;
  border-radius: 24px;
}

.nav-item:hover {
  background-color: rgb(201, 201, 201);
}

.logo {
  cursor: pointer;
  margin-right: auto;
  margin-left: 12px;
}
.logo-img {
  max-width: 200px;
  min-width: 150px;
  width: 100%;
  height: auto;
}

.sweep-n-go {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  margin-left: auto;
  margin-right: 12px;
}

.client-login {
  all: unset;
  font-family: var(--font-family-text);
  font-size: var(--font-size-base);
  color: white;
  cursor: pointer;
  position: absolute;
  margin-top: -120px;
}

.free-quote {
  all: unset;
  font-family: var(--font-family-title);
  font-size: 20px;
  color: white;
  padding: 12px 32px;
  border-radius: 24px;
  background-color: rgb(186, 12, 12);
  cursor: pointer;
  min-width: 90px;
}

.free-quote:hover {
  background-color: rgb(151, 10, 10);
}

.hero-stack {
  display: flex;
  flex-direction: column;
  width: 95%;
  align-items: start;
  justify-content: center;
  z-index: 1;
  padding-bottom: 100px;
}

.hero-name {
  font-size: 32px;
  color: white;
  font-family: var(--font-family-text);
  font-weight: 500;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 70px;
  font-family: var(--font-family-title);
  color: rgb(255, 255, 255);
  letter-spacing: 0.1ch;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.686);
  margin: 0px;
  max-width: 600px;
  line-height: 75px;
}

.hero-subtitle {
  color: white;
  font-family: var(--font-family-text);
  font-size: 20px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 400px;
}

@media (min-width: 801px) {
  .quote-form {
    flex-direction: row;
    gap: 0;
    max-width: 500px;
    position: relative;
  }
}

.zip-input {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-family: var(--font-family-text);
  font-size: 16px;
  text-align: left;
  background-color: white;
  color: #333;
  box-sizing: border-box;
}

@media (min-width: 801px) {
  .zip-input {
    border-radius: 25px 0 0 25px;
    flex: 0 0 auto;
    width: auto;
    max-width: 200px;
    padding-right: 50px;
    margin-right: -20px;
    z-index: 1;
  }
}

.zip-input::placeholder {
  color: #333;
  font-family: var(--font-family-text);
}

.zip-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(186, 12, 12, 0.3);
}

.instant-quote {
  all: unset;
  font-family: var(--font-family-title);
  font-size: 20px;
  color: white;
  padding: 12px 32px;
  border-radius: 24px;
  background-color: rgb(186, 12, 12);
  cursor: pointer;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 801px) {
  .instant-quote {
    border-radius: 25px;
    flex: 0 0 auto;
    width: auto;
    min-width: 200px;
    white-space: nowrap;
    z-index: 2;
  }
}

.instant-quote:hover {
  background-color: rgb(151, 10, 10);
}

.see-our-services {
  all: unset;
  color: white;
  font-family: var(--font-family-text);
  font-size: 18px;
  margin-top: 32px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.hero-arrow {
  width: 18px;
  height: auto;
  fill: white;
}

.promo {
  padding-left: 8px;
  padding-right: 8px;
}

.key-benefits-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.benefits-title {
  font-family: var(--font-family-title);
  font-size: 48px;
  color: rgba(0, 0, 0, 0.855);
}

.cards-container {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 12px;
}

.card {
  width: 33%;
  padding: 12px 24px;
  transition: all 0.3s ease; /* Smooth transition for the hover effect */
  border: 2px solid transparent; /* Invisible border initially */
  box-shadow: none; /* No shadow by default */
  border-radius: 12px;
}

.card svg {
  width: 64px;
  height: auto;
}

.card-title {
  font-family: var(--font-family-title);
  font-size: 24px;
  color: rgba(0, 0, 0, 0.855);
}

.card-content {
  font-size: 16px;
  font-family: var(--font-family-text);
  max-width: 400px;
  line-height: 22px;
}

.card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Shadow effect for levitating look */
  transform: translateY(
    -5px
  ); /* Slight upward movement for levitation effect */
}

.services {
  /* background-color: rgb(238, 238, 238); */
  width: 100%;
  margin-top: 24px;
  padding-bottom: 50px;
}

.services-header {
  font-family: var(--font-family-title);
  font-size: 48px;
  color: rgba(0, 0, 0, 0.855);
  text-align: center;
  margin-bottom: 32px;
}
.services-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.service-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1440px;
}

.service-card {
  padding: 24px;
  border: 1px solid rgb(156, 156, 156);
  border-radius: 12px;
  background-color: rgb(238, 238, 238);
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  margin: 10px;
}

.service-card-title {
  font-size: 20px;
  font-family: var(--font-family-text);
  text-align: center;
}

.service-card-subtitle {
  font-size: 14px;
  font-family: var(--font-family-text);
}

.service-card-list {
  display: flex;
  flex-direction: column;
  margin-left: -10px;
  gap: 12px;
}
.service-card-li {
  font-size: 14px;
  font-family: var(--font-family-text);
}
.card-svg {
  width: 45px;
  height: auto;
}

.list-container {
  background-color: white;
  border-radius: 12px;
  padding: 12px;
  margin-top: 24px;
}

.get-started-service-card {
  all: unset;
  border: 1px solid rgb(186, 12, 12);
  font-size: 14px;
  font-family: var(--font-family-text);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  /* letter-spacing: 0.15ch; */
  padding: 12px;
  border-radius: 8px;
  color: black;
  cursor: pointer;
  width: 100%;
  opacity: 0%;
  margin-bottom: -50px;
  transition: opacity 0.2s ease, margin-bottom 0.2s ease;
}

.service-bg-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: auto;
  /* margin-right: 100px; */
  margin-bottom: -190px;
  opacity: 50%;
  z-index: -1;
}

.service-card:hover .get-started-service-card {
  opacity: 100%;
  margin-bottom: 0px;
}

.get-started-service-card svg {
  fill: black;
  width: 12px;
  height: auto;
}

.get-started-service-card:hover {
  background-color: #799351;
}

.get-started-service-card-emphasized svg {
  fill: white;
  width: 12px;
  height: auto;
}

.get-started-service-card-emphasized {
  all: unset;
  background-color: rgb(186, 12, 12);
  font-size: 14px;
  font-family: var(--font-family-text);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  /* letter-spacing: 0.15ch; */
  padding: 12px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  width: 100%;
}

.get-started-service-card-emphasized:hover {
  background-color: rgb(151, 10, 10);
}

.emphasized {
  background-image: url(images/hero-background.png);
  background-position: center;
  color: white;
}

.services-subheading {
  font-family: var(--font-family-text);
  font-size: 24px;
}

.subheading-wrapper {
  margin-top: -30px;
  margin-bottom: 50px;
}

.sub {
  font-size: 18px;
}

.reviews {
  margin-top: 50px;
  background-color: #799351;
  background-image: url(images/grass.svg);
  background-position: bottom center;
  background-repeat: repeat-x;
  background-size: auto;
  width: 98%;
  padding-top: 100px;
  padding-bottom: 100px;
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.reviews-title {
  font-family: var(--font-family-title);
  font-size: 48px;
  color: black;
  z-index: 2;
  margin-top: 0px;
  margin-bottom: 50px;
  text-align: center;
}

.es-review-author-name,
.es-review-content-text {
  font-family: var(--font-family-text);
}

.reviews-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-wrapper {
  max-width: 100%;
}

.map {
  max-width: 600px;
  max-height: 600px;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  border: none;
}

.service-area {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.service-area-wrapper {
  display: flex;
  justify-content: center;
  gap: 48px;
  max-width: 1440px;
  width: 100%;
}

.service-area-title {
  font-family: var(--font-family-title);
  font-size: 48px;
}

.service-title-above {
  font-family: var(--font-family-text);
  font-size: 16px;
  color: rgb(186, 12, 12);
  margin-bottom: -30px;
  font-weight: bold;
}
.service-area-text-container {
  border: 1px solid rgb(156, 156, 156);
  background-color: rgb(238, 238, 238);
  border-radius: 24px;
  padding-left: 32px;
  padding-right: 32px;
  max-width: 600px;
  padding-bottom: 50px;
  padding-top: 50px;
}

.service-area-text {
  font-family: var(--font-family-text);
  font-size: 18px;
  margin-top: -20px;
  margin-bottom: 32px;
}

.text-bottom-service {
  margin-bottom: 48px;
}

.about {
  width: 98%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 75px;
  padding-bottom: 75px;
  border-radius: 24px;
  background-image: url(images/hero-background.png);
}

.about-wrapper {
  max-width: 1400px;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 48px;
}

.about-text-container {
  margin-top: -50px;
  padding: 32px;
  background-color: rgb(238, 238, 238);
  border-radius: 24px;
  max-width: 1150px;
}

.about-title {
  font-family: var(--font-family-title);
  font-size: 48px;
  margin-bottom: 0px;
}

.about-content {
  font-family: var(--font-family-text);
  font-size: 18px;
  max-width: 1200px;
  width: 100%;
}

.about-text-above {
  font-family: var(--font-family-text);
  color: rgb(186, 12, 12);
  font-weight: bold;
  font-size: 16px;
  margin-bottom: -30px;
}

.about-image {
  width: 100%;
  height: 550px;
  max-width: 550px;
  background-image: url(images/IMG_5921.jpg);
  background-position: top;
  background-size: cover;
  border-radius: 24px;
}

.footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #799351;
  padding-top: 24px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1350px;
  width: 100%;
}

.footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-left img {
  width: 200px;
  height: auto;
}

.support-email {
  font-family: var(--font-family-text);
  font-size: 16px;
  color: white;
  margin-top: 12px;
  margin-bottom: 0;
  padding-bottom: 12px;
  display: inline-block;
  text-decoration: none;
}

.support-email:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}

.footer-menu li {
  all: unset;
  font-family: var(--font-family-text);
  font-size: 16px;
  font-weight: 600;
}

.li-1 {
  font-size: 14px !important;
  color: rgb(65, 65, 65) !important;
}

.footer-menu a {
  all: unset;
  cursor: pointer;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-quote {
  height: auto;
  margin-right: 20px;
  min-height: 25px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.267);
  width: 100%;
}

.copyright {
  font-family: var(--font-family-text);
  font-size: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.faq{
  width:100%;
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction:column;
}
.faq-title {
  font-family: var(--font-family-title);
  font-size: 48px;
  text-align: center;
}

.faq-wrapper{
  max-width:1000px;
  width:100%;
  display:flex;
  justify-content: center;
  align-items:start;
  flex-direction:column;
}


.block {
  background-color: rgb(238, 238, 238);
  padding: 12px 24px;
  padding-bottom: 12px;
  border-radius: 8px;
  max-width: 900px;
  display: flex;
  align-items: start;
  cursor:pointer;
  width:100%;
}

.faq-svg {
  width: 18px;
  margin-top: 19px;
  margin-right: 16px;
  cursor: pointer;
}

.question {
  font-family: var(--font-family-text);
  font-size: 18px;
  font-weight: bold;
}

.answer {
  font-family: var(--font-family-text);
  opacity: 0;
  line-height:2.3ch;
  display:none;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 75px;
}

@media (max-width: 1400px) {
  .service-card {
    width: 25%;
  }

  .copyright {
    margin-left: 20px;
  }
}

@media (max-width: 1150px) {
  .service-area-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .map {
    height: 400px;
    max-width: 650px;
    width: 100%;
  }

  .about-wrapper {
    flex-direction: column;
  }
  .about {
    padding: 0px;
  }

  .about-text-container {
    margin: 24px;
  }
}

@media (max-width: 820px) {
  .service-card {
    width: 40%;
  }
}

@media (max-width: 800px) {
  .navbar {
    display: none;
  }

  .sweep-n-go {
    display: none;
  }

  .hamburger-menu {
    display: block;
    position: relative;
  }

  .phone-container {
    display: none;
  }

  .phone-number-mobile {
    display: none;
  }

  .nav-wrapper {
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .logo-img {
    max-width: 120px;
    min-width: 100px;
  }

  .navbar-container {
    display: none;
  }

  .phone-number-mobile-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 15px;
    font-family: var(--font-family-text);
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-right:40px;
  }

  .phone-number-mobile-nav:hover {
    background-color: rgba(0, 0, 0, 0.6);
  }

  .phone-icon-mobile-nav {
    width: 16px;
    height: 16px;
    fill: white;
  }

  .hero-stack {
    align-items: flex-start;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .hero-title {
    text-align: left;
    font-size: 50px;
    line-height: 55px;
  }

  .hero-subtitle {
    text-align: left;
    max-width: 100%;
  }

  .answer{
    max-width:80vw;
  }
}

@media (max-width: 720px) {
  .service-card {
    width: 35%;
  }
}

@media (max-width: 650px) {
  .service-card {
    width: 80%;
  }

  .service-bg-img {
    display: none;
  }

  .footer-menu {
    display: none;
  }
  .footer-top {
    flex-direction: column;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .support-email {
    padding-bottom: 24px;
  }

  .footer-quote {
    margin-right: 0px;
    margin-bottom: 24px;
    margin-top: 0px;
    height: auto;
    min-height: 25px;
  }

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

  .copyright {
    margin-left: 0px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    justify-content: start;
    height: 100vh;
    padding-bottom: 0px;
  }

  .max-image {
    margin-left: 0px;
    margin-top: 420px;
  }

  /* Reduce animation intensity on mobile for better performance */
  .max-image img {
    animation: slideIn 1s ease-out 0.2s forwards,
               floatMobile 4s ease-in-out 1.2s infinite;
  }

  .hero-stack {
    align-items: left;
  }

  .hero-title {
    font-size: 42px;
    line-height: 42px;
    text-align: left;
  }

  .hero-name {
    text-align: center;
    font-size: 24px;
  }

  .hero-subtitle {
    text-align: left;
    font-size: 18px;
    max-width: 400px;
  }

  .quote-form {
    max-width: 100%;
    width: 100%;
  }

  .zip-input {
    font-size: 16px;
    padding: 14px 20px;
  }

  .instant-quote {
    font-size: 18px;
    padding: 14px 32px;
  }

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

  .phone-container-mobile {
    font-size: 18px;
    padding: 8px 14px;
  }

  .phone-icon-mobile {
    width: 16px;
    height: 16px;
  }

  .cards-container {
    flex-direction: column;
  }
  .card {
    width: 95%;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 24px;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .card svg {
    width: 32px;
    height: auto;
    margin-bottom: -15px;
  }
  .card-content {
    margin-top: -10px;
  }
  .benefits-title {
    font-size: 32px;
    text-align: center;
  }

  .services-header {
    font-size: 32px;
  }

  .services {
    margin-top: 24px;
  }

  .reviews-title {
    font-size: 32px;
  }

  .service-area-title {
    font-size: 32px;
    margin-top: 38px;
    margin-bottom: 48px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-text-above {
    margin-bottom: -20px;
  }

  .about-text-container {
    padding-right: 12px;
    margin: 10px;
  }

  .question{
    max-width:75vw;
  }

  .answer{
    margin-right:40px;
  }
}

/* Quote Page Styles */
.quote-hero-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-radius: 24px;
  background-image: url(images/hero-background.png);
  background-position: 50% 50%;
  background-size: auto;
  background-repeat: repeat;
  padding: 20px 20px 40px 20px;
  margin: 0;
}

.quote-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 100%;
}

.quote-logo {
  margin-bottom: 10px;
}

.quote-logo .logo-img {
  max-width: 200px;
  min-width: 150px;
  width: 100%;
  height: auto;
}

.quote-form-container {
  background-color: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-title {
  font-family: var(--font-family-title);
  font-size: 48px;
  color: var(--font-color-primary);
  text-align: center;
  margin-bottom: 30px;
}

.claim-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #799351;
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 30px;
  font-family: var(--font-family-text);
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #6b7d47;
}

.lightning-icon {
  width: 24px;
  height: 24px;
  fill: white;
}

.quote-form-container .quote-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote-form-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-form-container .form-label {
  font-family: var(--font-family-text);
  font-size: 16px;
  font-weight: 600;
  color: var(--font-color-primary);
  text-align: left;
}

.quote-form-container .form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-family-text);
  font-size: 16px;
  background-color: #f9f9f9;
  box-sizing: border-box;
}

.quote-form-container .form-input:focus {
  outline: none;
  border-color: #799351;
  background-color: white;
}

.quote-form-container .form-input[readonly] {
  background-color: #e9e9e9;
  color: #666;
}

.quote-form-container .slider-container {
  position: relative;
  margin: 20px 0;
}

.quote-form-container .slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #ddd;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.quote-form-container .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url('images/dogs-slider.png') no-repeat center;
  background-size: cover;
  background-color: transparent;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.quote-form-container .slider::-moz-range-thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url('images/dogs-slider.png') no-repeat center;
  background-size: cover;
  background-color: transparent;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.quote-form-container .slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--font-family-text);
  font-size: 14px;
  color: var(--font-color-secondary);
}

/* Frequency slider specific styling */
.quote-form-container #frequency::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url('images/frequency-slider.png') no-repeat center;
  background-size: cover;
  background-color: transparent;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.quote-form-container #frequency::-moz-range-thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url('images/frequency-slider.png') no-repeat center;
  background-size: cover;
  background-color: transparent;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.quote-form-container .slider-value {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #799351;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: var(--font-family-text);
  font-size: 14px;
  font-weight: 600;
}

.quote-form-container .frequency-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.quote-form-container .frequency-option {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-form-container .frequency-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #799351;
}

.quote-form-container .frequency-option label {
  font-family: var(--font-family-text);
  font-size: 16px;
  color: var(--font-color-primary);
  cursor: pointer;
}

.quote-form-container .disclaimers {
  margin: 10px 0 10px 0;
}

.quote-form-container .disclaimer {
  font-family: var(--font-family-text);
  font-size: 12px;
  color: var(--font-color-secondary);
  line-height: 1.4;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.quote-form-container .checkmark-icon {
  width: 16px;
  height: 16px;
  color: #799351;
  flex-shrink: 0;
  margin-top: 1px;
}

.quote-form-container .privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0;
}

.quote-form-container .privacy-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #799351;
  margin-top: 2px;
}

.quote-form-container .privacy-checkbox label {
  font-family: var(--font-family-text);
  font-size: 14px;
  color: var(--font-color-primary);
  line-height: 1.4;
  cursor: pointer;
}

.quote-form-container .privacy-checkbox a {
  color: #799351;
  text-decoration: underline;
}

.quote-form-container .privacy-checkbox a:hover {
  color: #6b7d47;
}

.quote-form-container .submit-button {
  width: 100%;
  padding: 16px 32px;
  background-color: rgb(186, 12, 12);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-family-title);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.quote-form-container .submit-button:hover {
  background-color: rgb(151, 10, 10);
}

/* Loading animation keyframes */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success Page Styles */
.success-hero-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background-image: url(images/hero-background.png);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: repeat;
  padding: 20px;
  margin: 0;
}

.success-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 100%;
  background-color: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 1;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

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

.success-logo {
  margin-bottom: 20px;
}

.success-logo .logo-img {
  max-width: 200px;
  min-width: 150px;
  width: 100%;
  height: auto;
}

.success-title {
  font-family: var(--font-family-title);
  font-size: 48px;
  color: var(--font-color-primary);
  margin-bottom: 30px;
  margin-top: -10px;
  line-height: 1.2;
}

.success-message {
  font-family: var(--font-family-text);
  font-size: 20px;
  color: var(--font-color-secondary);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* Mobile responsiveness for success page */
@media (max-width: 768px) {
  .success-hero-section {
    padding: 20px 10px;
  }
  
  .success-container {
    padding: 40px 24px;
  }
  
  .success-title {
    font-size: 36px;
  }
  
  .success-message {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .success-container {
    padding: 30px 20px;
  }
  
  .success-title {
    font-size: 32px;
  }
  
  .success-message {
    font-size: 16px;
  }
}

/* Mobile responsiveness for quote page */
@media (max-width: 768px) {
  .quote-hero-section {
    padding: 20px 10px;
  }
  
  .quote-form-container {
    padding: 24px;
  }
  
  .quote-title {
    font-size: 36px;
  }
  
  .claim-box {
    font-size: 16px;
    padding: 12px 20px;
  }
  
  .frequency-container {
    gap: 8px;
  }
  
  .quote-form-container .slider-value {
    top: -25px;
  }
}

/* Unsupported Page Styles */
.unsupported-box {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
}

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

.unsupported-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.unsupported-message {
  font-family: var(--font-family-text);
  font-size: 18px;
  color: var(--font-color-primary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-area-info {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  text-align: left;
}

.service-area-info h3 {
  font-family: var(--font-family-title);
  color: var(--font-color-primary);
  margin-bottom: 15px;
  font-size: 20px;
}

.service-area-info p {
  font-family: var(--font-family-text);
  color: var(--font-color-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-info {
  border-top: 1px solid #e9ecef;
  padding-top: 20px;
}

.contact-info h4 {
  font-family: var(--font-family-text);
  color: var(--font-color-primary);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.contact-info p {
  font-family: var(--font-family-text);
  color: var(--font-color-secondary);
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #799351;
  text-decoration: none;
  font-family: var(--font-family-text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: #6b7d47;
}

.email-icon {
  width: 18px;
  height: 18px;
}

.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.back-button, .call-button {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-family-text);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.back-button {
  background: #6c757d;
  color: white;
}

.back-button:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.call-button {
  background: #28a745;
  color: white;
}

.call-button:hover {
  background: #218838;
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .back-button, .call-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Zip Code Modal Styles */
.zip-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.zip-modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 0;
  border-radius: 24px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.zip-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px 20px 40px;
  border-bottom: 1px solid #e9ecef;
}

.zip-modal-title {
  font-family: var(--font-family-title);
  font-size: 32px;
  color: var(--font-color-primary);
  margin: 0;
}

.zip-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.zip-modal-close:hover {
  background-color: #f8f9fa;
  color: #333;
}

.zip-modal-body {
  padding: 30px 40px 40px 40px;
}

.zip-modal-subtitle {
  font-family: var(--font-family-text);
  font-size: 18px;
  color: var(--font-color-secondary);
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.5;
}

.zip-modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zip-modal-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-family: var(--font-family-text);
  font-size: 18px;
  text-align: center;
  background-color: #f9f9f9;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.zip-modal-input:focus {
  outline: none;
  border-color: #799351;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(121, 147, 81, 0.1);
}

.zip-modal-input::placeholder {
  color: #999;
  font-family: var(--font-family-text);
}

.zip-modal-submit {
  width: 100%;
  padding: 16px 32px;
  background-color: rgb(186, 12, 12);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-family-title);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.zip-modal-submit:hover {
  background-color: rgb(151, 10, 10);
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
  .zip-modal-content {
    margin: 20% auto;
    width: 95%;
  }
  
  .zip-modal-header {
    padding: 24px 24px 16px 24px;
  }
  
  .zip-modal-title {
    font-size: 28px;
  }
  
  .zip-modal-body {
    padding: 24px 24px 32px 24px;
  }
  
  .zip-modal-subtitle {
    font-size: 16px;
  }
  
  .zip-modal-input {
    font-size: 16px;
    padding: 14px 16px;
  }
  
  .zip-modal-submit {
    font-size: 18px;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .zip-modal-content {
    margin: 15% auto;
    width: 98%;
  }
  
  .zip-modal-header {
    padding: 20px 20px 12px 20px;
  }
  
  .zip-modal-title {
    font-size: 24px;
  }
  
  .zip-modal-body {
    padding: 20px 20px 28px 20px;
  }
  
  .zip-modal-subtitle {
    font-size: 15px;
  }
}
