* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Barlow", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}
* ::-moz-selection {
  background-color: #000;
  color: #fff;
}
* ::selection {
  background-color: #000;
  color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #9e9e9e;
}

::-webkit-scrollbar-thumb {
  background: #0d7e83;
  border-radius: 5px;
}

.line {
  width: 40%;
  height: 0.3em;
  background-color: #13293d;
  margin-bottom: 2em;
}

.navbar {
  position: fixed;
  z-index: 999;
  box-shadow: -7px -2px 15px #000;
  padding: 20px 150px;
  width: 100vw;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.8s ease-in-out;
  background-color: #0d7e83;
}
@media only screen and (max-width: 992px) {
  .navbar {
    padding: 0px 30px;
  }
}
.navbar .logo-holder {
  width: 15%;
}
@media only screen and (max-width: 992px) {
  .navbar .logo-holder {
    width: 20%;
  }
}
@media only screen and (max-width: 768px) {
  .navbar .logo-holder {
    width: 40%;
  }
}
.navbar .logo-holder img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 80%;
  height: auto;
}
@media only screen and (max-width: 992px) {
  .navbar .logo-holder img {
    width: 100%;
  }
}
.navbar .nav-list {
  list-style: none;
  display: flex;
  align-self: conter;
  height: 70px;
  width: 70%;
  color: #fff;
}
.navbar .nav-list .nav-item {
  align-self: center;
  line-height: 35px;
  padding: 5px;
  transition: all 0.3s ease-in-out;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1em;
  border-left: 5px solid rgba(0, 0, 0, 0);
}
.navbar .nav-list .nav-item:last-of-type {
  border-right: 5px solid rgba(0, 0, 0, 0);
}
.navbar .nav-list .nav-item:hover {
  background-color: #fff;
}
.navbar .nav-list .nav-item:hover .nav-link {
  color: #0d7e83;
}
.navbar .nav-list .nav-item:hover:last-child {
  background-color: rgba(255, 255, 255, 0);
}
.navbar .nav-list .nav-item.active.nav-link {
  color: #0d7e83;
  background-color: #fff;
}
.navbar .nav-list .nav-item.active.contact-btn {
  background-color: #0d7e83;
}
.navbar .nav-list .nav-item .nav-link {
  text-decoration: none;
  padding: 5px;
  color: #fff;
  display: block;
  width: 100%;
  padding: 12px;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-list .nav-item .contact-btn {
  text-decoration: none;
  padding: 5px;
  border-radius: 0.5em;
  color: #fff;
  background-color: #13293d;
  display: block;
  width: 100%;
  padding: 12px;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-list .nav-item .contact-btn:hover {
  background-color: #6ac1b8;
}
.navbar .nav-list .nav-item-drop {
  align-self: center;
  position: relative;
  line-height: 35px;
  padding: 7px;
  transition: all 0.3s ease-in-out;
  display: block;
  width: 100%;
  text-align: center;
}
.navbar .nav-list .nav-item-drop:hover {
  background-color: #fff;
}
.navbar .nav-list .nav-item-drop:hover span {
  color: #0d7e83;
}
.navbar .nav-list .nav-item-drop .nav-dropdown {
  text-decoration: none;
  padding: 5px;
  position: relative;
  color: #fff;
  font-size: 1em;
  display: inline-block;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.navbar .nav-list .nav-item-drop .nav-dropdown:hover {
  color: #0d7e83;
}
.navbar .nav-list .nav-item-drop .nav-dropdown i {
  margin-left: 12px;
}
.navbar .nav-list .nav-item-drop .dropmenu-item {
  width: 100%;
}
.navbar .nav-list .nav-item-drop .dropmenu-item:hover {
  background-color: #0d7e83;
}
.navbar .nav-list .nav-item-drop .dropmenu-item:hover a {
  color: #fff;
}
.navbar .nav-list .nav-item-drop .dropmenu-item a {
  color: #000;
  display: block;
  text-decoration: none;
  width: 100%;
}
.navbar .nav-list .nav-item-drop .dropmenu {
  display: none;
  max-height: 45vh;
  overflow-y: scroll;
}
.navbar .nav-list .nav-item-drop .dropmenu.active {
  display: block;
  background-color: #fff;
  width: 10rem;
  text-align: center;
  position: absolute;
  left: 0px;
  top: 69px;
  list-style: none;
}
@media only screen and (max-width: 992px) {
  .navbar .nav-list .nav-item-drop .dropmenu.active {
    top: 0rem;
    left: 0rem;
    z-index: 1;
  }
}
@media only screen and (max-width: 992px) {
  .navbar .nav-list {
    position: fixed;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    justify-content: center;
    padding: 40px 0;
    width: 100vw;
    height: 100vh;
    right: 0;
    top: -100vh;
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }
  .navbar .nav-list.active {
    top: 70px;
    opacity: 1;
  }
  .navbar .nav-list .nav-item {
    width: 100%;
    text-align: center;
    line-height: 20px;
    height: 60px;
  }
  .navbar .nav-list .nav-item .nav-link {
    color: #0d7e83;
  }
  .navbar .nav-list .nav-item:hover {
    background-color: #0d7e83;
  }
  .navbar .nav-list .nav-item:hover .nav-link {
    color: #fff;
  }
  .navbar .nav-list .nav-item-drop .nav-dropdown {
    color: #0d7e83;
  }
  .navbar .nav-list a {
    width: 100%;
  }
}
.navbar .hamburger {
  display: none;
  cursor: pointer;
  width: 50px;
  text-align: center;
  line-height: 15px;
}
@media only screen and (max-width: 992px) {
  .navbar .hamburger {
    display: block;
  }
}
.navbar .hamburger .bar {
  display: inline-block;
  padding: 0;
  width: 90%;
  height: 5px;
  border-radius: 5px;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
}
.navbar .hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.navbar .hamburger.active .bar:first-child {
  transform: translateY(6px) rotate(-45deg);
}
.navbar .hamburger.active .bar:last-child {
  transform: translateY(-23px) rotate(45deg);
}

.hero-section {
  padding: 80px 150px;
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("/dist/assets/hero.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 992px) {
  .hero-section {
    padding: 80px 45px;
    background-position: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .hero-section {
    padding: 80px 35px;
  }
}
.hero-section .content {
  width: 90%;
  height: 100%;
  padding: 180px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 992px) {
  .hero-section .content {
    padding: 40px;
    width: 100%;
    align-items: center;
    background: linear-gradient(to right, #000, rgba(14, 14, 14, 0.4941176471));
  }
}
.hero-section .content .hero-title {
  font-size: 3em;
  margin-bottom: 0.7em;
  z-index: 2;
  color: #0d7e83;
  -webkit-animation: showtitle 2s 0.3s alternate linear both;
  animation: showtitle 2s 0.3s alternate linear both;
}
@media only screen and (max-width: 992px) {
  .hero-section .content .hero-title {
    font-size: 2.2em;
  }
}
@-webkit-keyframes showtitle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showtitle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section .content .hero-title {
    color: #fff;
  }
}
.hero-section .content .hero-desc {
  margin-bottom: 1.3em;
  font-size: 1.4em;
  line-height: 1.5em;
  width: 50%;
  color: #fff;
  font-size: 1.5em;
  line-height: 30px;
  z-index: 2;
  -webkit-animation: showdesc 1.5s 0.5s linear both;
  animation: showdesc 1.5s 0.5s linear both;
}
@media only screen and (max-width: 992px) {
  .hero-section .content .hero-desc {
    font-size: 1.2em;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section .content .hero-desc {
    width: 100%;
    color: #fff;
  }
}
@-webkit-keyframes showdesc {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showdesc {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero-section .content .btns {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .hero-section .content .btns {
    flex-direction: column;
  }
}
.hero-section .content .btns .phone {
  text-decoration: none;
  text-align: center;
  padding: 0.5em;
  font-size: 30px;
  color: #fff;
  margin-right: 1em;
  background-color: #0d7e83;
  border-radius: 2em;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  -webkit-animation: showtel 1s 1s linear both;
  animation: showtel 1s 1s linear both;
  color: #fff;
}
@-webkit-keyframes showtel {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes showtel {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section .content .btns .phone {
    width: 80%;
    margin: 1em;
  }
}
@media only screen and (max-width: 768px) {
  .hero-section .content .btns .phone {
    font-size: 25px;
    width: 80%;
  }
}
.hero-section .content .btns .phone:hover {
  background-color: #6ac1b8;
  color: #000;
}
.hero-section .content .btns .btn {
  text-decoration: none;
  text-align: center;
  padding: 0.5em;
  font-size: 30px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 2em;
  border: 3px solid #0d7e83;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  -webkit-animation: showtel 1s 1s linear both;
  animation: showtel 1s 1s linear both;
}
@keyframes showtel {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.hero-section .content .btns .btn:hover {
  background-color: #6ac1b8;
  color: #000;
  border: 3px solid #6ac1b8;
}
@media only screen and (max-width: 992px) {
  .hero-section .content .btns .btn {
    width: 80%;
    border: 3px solid #fff;
    color: #fff;
  }
}
@media only screen and (max-width: 768px) {
  .hero-section .content .btns .btn {
    font-size: 25px;
    width: 80%;
  }
}

.section {
  position: relative;
  padding: 60px 160px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-content: center;
  gap: 40px;
  height: auto;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .section {
    padding: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .section {
    padding: 35px;
  }
}
@media only screen and (max-width: 992px) {
  .section {
    grid-template-columns: 1fr;
  }
}
.section .section-content .section-title {
  font-size: 3em;
  margin-bottom: 0.7em;
  color: #0d7e83;
}
@media only screen and (max-width: 992px) {
  .section .section-content .section-title {
    font-size: 2.2em;
  }
}
.section .section-content .section-desc {
  margin-bottom: 1.3em;
  font-size: 1.4em;
  line-height: 1.5em;
}
@media only screen and (max-width: 992px) {
  .section .section-content .section-desc {
    font-size: 1.2em;
  }
}
.section .section-img-holder {
  overflow: hidden;
  width: 100%;
  align-self: center;
}
.section .section-img-holder img {
  max-width: 100%;
  height: auto;
}

.section-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-content: center;
  gap: 40px;
  height: auto;
  width: 100%;
  padding: 60px 160px;
  position: relative;
  background-color: #eee;
}
@media only screen and (max-width: 992px) {
  .section-1 {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 992px) {
  .section-1 {
    padding: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .section-1 {
    padding: 35px;
  }
}
.section-1 .section-1-content .section-1-title {
  font-size: 3em;
  margin-bottom: 0.7em;
  color: #0d7e83;
}
@media only screen and (max-width: 992px) {
  .section-1 .section-1-content .section-1-title {
    font-size: 2.2em;
  }
}
.section-1 .section-1-content .desc {
  margin-bottom: 1.3em;
  font-size: 1.4em;
  line-height: 1.5em;
}
@media only screen and (max-width: 992px) {
  .section-1 .section-1-content .desc {
    font-size: 1.2em;
  }
}
.section-1 .section-1-img-holder {
  overflow: hidden;
  width: 100%;
  align-self: center;
}
.section-1 .section-1-img-holder img {
  max-width: 100%;
  height: auto;
}
.section-1 .overlay {
  -webkit-clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
  background-color: #0d7e83;
  position: absolute;
  width: 60%;
  height: 100%;
  right: 0;
  z-index: -1;
}

.cars-slider {
  width: 100%;
  height: 200px;
  padding: 20px 0;
}
.cars-slider .marquee {
  white-space: nowrap;
  height: 100%;
  overflow: hidden;
  -webkit-animation: marquee 50s linear infinite alternate;
  animation: marquee 50s linear infinite alternate;
}
.cars-slider .marquee:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
@-webkit-keyframes marquee {
  0% {
    text-indent: 27.5em;
  }
  100% {
    text-indent: -225em;
  }
}
@keyframes marquee {
  0% {
    text-indent: 27.5em;
  }
  100% {
    text-indent: -225em;
  }
}
.cars-slider .marquee img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 200px;
  height: 80px;
  margin: 25px;
}
@media only screen and (max-width: 768px) {
  .cars-slider .marquee img {
    margin: 15px;
  }
}

.section-discount {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-content: center;
  gap: 40px;
  height: auto;
  width: 100%;
  padding: 60px 160px;
  position: relative;
  background-color: #eee;
}
@media only screen and (max-width: 992px) {
  .section-discount {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 992px) {
  .section-discount {
    padding: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .section-discount {
    padding: 35px;
  }
}
.section-discount .section-discount-content .title {
  font-size: 3em;
  margin-bottom: 0.7em;
  color: #0d7e83;
}
@media only screen and (max-width: 992px) {
  .section-discount .section-discount-content .title {
    font-size: 2.2em;
  }
}
.section-discount .section-discount-content .desc {
  margin-bottom: 1.3em;
  font-size: 1.4em;
  line-height: 1.5em;
}
@media only screen and (max-width: 992px) {
  .section-discount .section-discount-content .desc {
    font-size: 1.2em;
  }
}
.section-discount .section-discount-img-holder {
  overflow: hidden;
  width: 100%;
  cursor: pointer;
  position: relative;
}
.section-discount .section-discount-img-holder img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.section-discount .coupon-holder {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: rgba(29, 29, 29, 0.596);
  cursor: pointer;
}
.section-discount .coupon-holder .img {
  border-radius: 5px;
  border: 1px solid #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 40%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 992px) {
  .section-discount .coupon-holder .img {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .section-discount .coupon-holder .img {
    width: 100%;
  }
}

.about-us {
  padding: 60px 160px;
  background-color: #282828;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  align-content: center;
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .about-us {
    padding: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .about-us {
    padding: 35px;
  }
}
.about-us ::-moz-selection {
  color: #0d7e83;
  background-color: #fff;
}
.about-us ::selection {
  color: #0d7e83;
  background-color: #fff;
}
@media only screen and (max-width: 992px) {
  .about-us {
    grid-template-columns: 1fr;
    gap: 5em;
  }
}
.about-us .about-us-info .logo-holder {
  width: 50%;
}
.about-us .about-us-info .logo-holder img {
  max-width: 80%;
  height: auto;
}
.about-us .about-us-info .title {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.5em;
  margin-bottom: 1em;
}
.about-us .about-us-info span {
  color: #999999;
  width: 80%;
}
.about-us .about-us-info .zipcodes {
  display: flex;
  flex-direction: column;
}
.about-us .about-us-info .zipcodes h3 {
  color: #fff;
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 1.5em;
  margin-bottom: 1em;
}
.about-us .about-us-info .zipcodes div {
  color: #fff;
  line-height: 30px;
  font-size: 1.1em;
}
.about-us .details {
  display: flex;
  flex-direction: column;
  font-size: 1.2em;
}
.about-us .details .title {
  color: #fff;
  margin-bottom: 40px;
  font-size: 1.5em;
  margin-bottom: 1em;
}
.about-us .details .bn {
  color: #0d7e83;
  font-size: 1.5em;
  font-weight: 600;
}
.about-us .details div {
  color: #fff;
  margin-bottom: 1.6em;
}
@media only screen and (max-width: 992px) {
  .about-us .details div {
    font-size: 0.8em;
  }
}
.about-us .details div i {
  margin-right: 1em;
  color: #fff;
}
@media only screen and (max-width: 992px) {
  .about-us .details div i {
    font-size: 1em;
  }
}
.about-us .details div span {
  margin-bottom: 2em;
}
.about-us .details div a {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  color: #fff;
}
.about-us .details .section-about-us-holder .list-holder .item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
  width: 100%;
}
.about-us .details .section-about-us-holder .list-holder .item i {
  font-size: 2em;
  color: #0d7e83;
  margin-right: 25px;
}
@media only screen and (max-width: 768px) {
  .about-us .details .section-about-us-holder .list-holder .item i {
    font-size: 2.5em;
  }
}
.about-us .details .section-about-us-holder .list-holder .item .title {
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.about-us .details .section-about-us-holder .list-holder .item .desc {
  font-size: 14px;
  color: #9e9e9e;
}
.about-us .service-location .service-title {
  font-size: 3em;
  margin-bottom: 0.7em;
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 992px) {
  .about-us .service-location .service-title {
    font-size: 2.2em;
  }
}
.about-us .service-location .location {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.about-us .service-location .location li {
  font-size: 1.2em;
  margin: 10px 5px;
}
.about-us .service-location .location li a {
  text-decoration: none;
  padding: 5px;
  background-color: #fff;
  color: #000;
  border-radius: 3px;
  width: 100px;
  transition: all 0.2s ease-in-out;
}
.about-us .service-location .location li a:hover {
  background-color: #0d7e83;
  color: #fff;
}

.footer {
  padding: 10px 150px;
  background-color: rgb(17, 17, 17);
  text-align: center;
  color: #fff;
}
.footer ::-moz-selection {
  color: #0d7e83;
  background-color: #fff;
}
.footer ::selection {
  color: #0d7e83;
  background-color: #fff;
}
@media only screen and (max-width: 992px) {
  .footer {
    padding: 10px 45px;
  }
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 10px 35px;
  }
}
.footer .copyright {
  margin-bottom: 1rem;
}
.footer i {
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.footer i:hover {
  color: #f39c12;
}

/* .fixed {
  position: fixed;
  background-color: $mainColor;
  left: -1.3em;
  text-align: center;
  top: 40%;
  transform: rotate(-90deg) translateY(0-2em);
  padding: 1em;
  font-size: 1em;
  border-radius: 5px;
  a {
    color: #fff;
    text-decoration: none;
  }
  font-weight: bold;
  @media only screen and (max-width: 992px) {
    display: none;
  }
} */
.scroll-btn {
  font-size: 2.5em;
  color: #0d7e83;
  display: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: fixed;
  z-index: 900;
  bottom: 0.5em;
  left: 0.2em;
  width: 2.5rem;
  transition: all 0.3s ease-in-out;
}

.g-recaptcha {
  max-width: 100%;
  margin-top: 20px;
}

.g-recaptcha * {
  transform: scale(1);
  margin-bottom: 15px;
}
@media only screen and (max-width: 576px) {
  .g-recaptcha * {
    transform: scale(0.92);
    margin-left: -12px;
  }
} /*# sourceMappingURL=main.css.map */

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* FORM WRAPPER */
form.CUS {
  max-width: 900px;
  width: 100%;
  margin: 20px auto;
  padding: 20px;
  background: #f9fafb;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: system-ui, sans-serif;
}

/* FLEX FIELDSET */
form.CUS fieldset {
  display: flex;
  flex-wrap: wrap;
  border: none;
  padding: 0;
  margin: 0;
}

/* BASE BLOCK STYLE */
form.CUS fieldset > p {
  width: 100%;
  padding: 10px;
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

/* Universal input/select styling */
form.CUS input,
form.CUS select,
form.CUS textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
  width: 33.333%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
  width: 33.333%;
}

/* ===============================
   SERVICE NEEDED TEXTAREA
=============================== */
form.CUS fieldset > p:nth-of-type(7) {
  width: 100%;
}

/* ===============================
   SERVICE DATE (Month, Day, Year)
   → ALL 3 IN ONE ROW
=============================== */

/* Make the 8th <p> (Service Date block) a flex row */
form.CUS fieldset > p:nth-of-type(8) {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: flex-start;
}

/* Month, Day, Year = 3 equal flex columns */
form.CUS fieldset > p:nth-of-type(8) select#service_date,
form.CUS fieldset > p:nth-of-type(8) select#service_day,
form.CUS fieldset > p:nth-of-type(8) input#service_year {
  flex: 1 1 0;
  width: auto; /* flex handles width */
  margin-top: 6px;
}

/* ===============================
   SERVICE TIME (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(9) {
  width: 100%;
}

/* ===============================
   SUBMIT BUTTON (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(10) {
  width: 100%;
}

form.CUS input[type="submit"] {
  width: 100%;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

form.CUS input[type="submit"]:hover {
  background: #1d4ed8;
}

/* Hide honeypot */
form.CUS input.subject {
  display: none;
}

/* ===============================
   MOBILE RESPONSIVE (stack fields)
=============================== */
@media (max-width: 600px) {
  form.CUS fieldset > p {
    width: 100%;
    padding: 6px 0;
  }

  /* Month, Day, Year full width stacked on mobile */
  form.CUS fieldset > p:nth-of-type(8) {
    flex-direction: column;
    gap: 6px;
  }

  form.CUS fieldset > p:nth-of-type(8) select#service_date,
  form.CUS fieldset > p:nth-of-type(8) select#service_day,
  form.CUS fieldset > p:nth-of-type(8) input#service_year {
    flex: none;
    width: 100% !important;
  }
  /* ===============================
   ROW 1: Name, Phone, Address
=============================== */
  form.CUS fieldset > p:nth-of-type(1),
  form.CUS fieldset > p:nth-of-type(2),
  form.CUS fieldset > p:nth-of-type(3) {
    width: 100%;
  }

  /* ===============================
   ROW 2: City, State, Zip Code
=============================== */
  form.CUS fieldset > p:nth-of-type(4),
  form.CUS fieldset > p:nth-of-type(5),
  form.CUS fieldset > p:nth-of-type(6) {
    width: 100%;
  }
}
