@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playball&family=Sen:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Niconne&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Dancing+Script:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Noticia+Text:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-font: "Open-Sans", sans-serif;
  --header-font: Montserrat, "Montserrat Fallback";
  --script-font: "Dancing Script", cursive;

  --primary-color: #ef4b56;

  --secondary-color: #d5980a;

  --primary-color2: #d5980a;

  --secondary-color2: #ffa500;

  --primary-grad: linear-gradient(
    45deg,
    var(--primary-color),
    var(--primary-color2)
  );
  --primary-grad-reverse: linear-gradient(
    45deg,
    var(--primary-color2),
    var(--primary-color)
  );
  --western-blue: #182026;
  --primary-dark: #8b690b;
  --ganesh-gray: #f5f3ed;
  --red-grad: linear-gradient(45deg, red, #aaa);

  --box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05),
    0 -1px 10px 0 rgba(0, 0, 0, 0.01);
  --text-color: #313131;
  --grey-color: #f0f2f7;

  --grey-grad: linear-gradient(45deg, #f0f2f7, #e0e3ea);

  --black-grad: linear-gradient(45deg, black, #484848);
  --black-grad-reverse: linear-gradient(45deg, #484848, #111);
}

html,
body {
  font-family: var(--primary-font);
  scroll-behavior: smooth;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
ul {
  list-style: none;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px;
}
header {
  box-shadow: var(--box-shadow);
}
.main-header__company-name a{
    color: #333;
}
.main-header__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  background: #fff;
}
.main-header__company-name h1 {
  font-size: 2rem;
  font-family: var(--header-font);
  text-align: center;
}

.main-header__logo {
}
.main-header__logo-img {
  width: 250px;
}
.main-header__main-phone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.main-header__main-phone a {
  color: var(--primary-color);
}
.main-header__main-phone i {
  font-size: 20px;
}
.main-header__main-phone i:hover {
  transform: scale(1.2);
}

.main-header__nav {
  text-align: center;
  padding: 5px;
}
.main-header__nav-items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.main-header__nav-item a {
  text-transform: uppercase;
  padding: 14px 11px;
  color: #686868;
  font-size: 15px;
}
/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
}
.mobile-header__nav-items {
  display: none;
}
.mobile-header__nav-items a {
  text-transform: uppercase;
  font-size: 15px;
  color: #555;
  text-align: center;
}

.mobile-header__nav-items.ham-active {
  display: block;
}

/* Main Banner */
.main-banner {
  background: url(../images/banner.png) no-repeat center center;
  background-size: cover;
  height: 688px;
  width: 100%;
  position: relative;
}
.main-banner::before {
  content: "";
  background: #00000087;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 111;
  position: absolute;
}
.main-banner__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  width: 70%;
  text-align: center;
}

.main-banner .company-name {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
}

.main-banner .red-text {
  font-size: 2.4rem;
  color: red;
  font-weight: 700;
}
.main-banner .yellow-text {
  font-size: 2.4rem;
  color: yellow;
  font-weight: 700;
}
.main-banner .white-text {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
}

.main-banner__reservation-button a {
  background: var(--red-grad);
  display: block;
  padding: 8px 15px;
  border-radius: 6px;
  color: #fff;
  width: 290px;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 20px;
  text-transform: uppercase;
}

.call-us {
  text-align: center;
}
.call-us__top-border {
  height: 3px;
  width: 100%;
  background: #313131;
  margin: 20px auto;
}
.call-us__text h2 {
  font-size: 3rem;
}
.call-us__text h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.call-us__text a {
  color: #000;
}
.call-us__phone {
  display: inline-flex;
  gap: 2rem;
  font-size: 2rem;
  font-weight: 700;
}

/* Services Section */
.services {
  padding: 20px 0;
}
.services-grid-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 20px;
}
.services-grid-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: space-between;
  gap: 1.5rem;
  background: #f8f9fc;
}
.service-img1 {
  background: url(../images/chevy.png) no-repeat center center;
  background-size: cover;
  height: 183px;
}
.service-img2 {
  background: url(../images/escalade25.png) no-repeat center center;
  background-size: cover;
  height: 183px;
}
.service-img3 {
  background: url(../images/navigator25.png) no-repeat center center;
  background-size: cover;
  height: 183px;
}
.our-service-img1 {
  background: url(../images/our-service3.webp) no-repeat center center;
  background-size: cover;
  height: 300px;
}
.our-service-img2 {
  background: url(../images/our-service2.webp) no-repeat center center;
  background-size: cover;
  height: 300px;
}
.our-service-img3 {
  background: url(../images/our-service1.webp) no-repeat center center;
  background-size: cover;
  height: 300px;
}
.services-text {
  padding: 5px 15px;
}
.services-text h2 {
  font-size: 1.5rem;
  font-family: Montserrat, "Montserrat Fallback";
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 8px;
}
.services-text p {
  font-family: Montserrat, "Montserrat Fallback";
  font-size: 1rem;
  line-height: 1;
  color: #555;
  margin-top: 5px;
}
.services-book-button a {
  display: block;
  background: #f05c66;
  color: #fff;
  border-radius: 50px;
  padding: 10px 25px;
  margin: 0 auto;
  text-align: center;
  width: 200px;
  font-size: 1.2rem;
}
.services__title .before-border {
  margin: 10px auto;
}
.services__title h2 {
  font-family: var(--header-font);
  margin: 0 auto;
  font-size: 2rem;
  text-align: center;
}
.services__description p {
  margin: 20px auto;
  text-align: center;
}

/* Google Review Section */
.google-review-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.google-review-items img {
  max-width: 330px;
}

/* Why Choose Us */
.why-choose-us {
  padding: 30px 0;
}
.why-choose-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.why-choose-us__grid-item {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto;
}
.why-choose-us__img1 {
  background: url(../images/banner.png) no-repeat center center;
  background-size: cover;
  height: 220px;
  width: 220px;
}
.why-choose-us__img2 {
  background: url(../images/service2.webp) no-repeat center center;
  background-size: cover;
  height: 220px;
  width: 220px;
}
.why-choose-us__text {
}
.why-choose-us__icon {
  width: 50%;
}
.why-choose-us__icon i {
  width: 120px;
  color: #777;
  border: 1px solid #777;
  border-radius: 50%;
  height: 120px;
  padding: 30px;
  font-size: 50px;
}
.why-choose-us__icon svg {
  width: 120px;
  color: #777;
  border: 1px solid #777;
  border-radius: 50%;
  height: 120px;
  padding: 25px;
  font-size: 50px;
}
/* Wide Banners */
.wide-banners {
  padding: 50px 0;
}
.wide-banners__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* About Section */
.about-section {
  padding: 20px 10px;
}
.about-section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.about-section-text {
  background: #f8f9fc;
  padding: 30px 20px;
}
.before-border {
  width: 120px;
  height: 2px;
  margin: 20px 0;
  background: var(--primary-color);
}
.about-section-text__title {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--header-font);
}
.about-section-text__description {
  font-size: 1rem;
  font-family: var(--header-font);
  color: #444;
}
.discount-text {
  color: var(--primary-color);
  margin: 20px 0;
  font-size: 1.3;
}

.quote-button a {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 20px 0;
}

/* Rate Card */
.rate-cards__item.card2 {
  border-top: 3px solid #ddd;
  transform: scale(1.1);
  background: #fff;
  box-shadow: var(--box-shadow);
}
.rate-cards__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.rate-cards__item {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  align-items: center;
  justify-content: center;
  font-family: var(--header-font);
  padding: 40px 0;
}
.rate-cards__item-title {
  font-size: 1.3rem;
  font-weight: 200;
}
.rate-cards__item-price {
  font-size: 2rem;
  font-weight: 700;
  color: #aaa;
}
.rate-cards__item-car {
  font-size: 17px;
  font-weight: 200;
  color: #888;
}
.rate-cards__item-border {
  height: 1px;
  width: 250px;
  background: #dddddd;
  margin: 15px auto;
}
.rate-cards__item-pax {
  font-size: 0.9rem;
  font-weight: 200;
  color: #444;
  margin-bottom: 20px;
}
.rate-cards .services-book-button a {
  font-size: 0.8rem;
  font-weight: 700;
}

/* Offers Section */

.offers {
  background: url(../images/offer-banner.webp) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 600px;
  width: 100%;
  position: relative;
}
.offer-box {
  position: absolute;
  top: 12%;
  right: 20%;
  padding: 10px 30px;
  background: #ffffffd9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 450px;
  z-index: 111;
  text-align: center;
  animation: slideInRight 1.5s ease forwards;
}

.offer-box__title {
  font-size: 2.3rem;
  color: #364957;
  font-family: var(--header-font);
  font-weight: 600;
  line-height: 1;
}

.offer-box__discount {
  color: var(--primary-color);
  font-size: 3.8rem;
  font-weight: 500;
  letter-spacing: 1;
}
.offer-box__promo {
  font-size: 1rem;
  font-weight: 200;
}
.offer-box__small-text {
  font-size: 0.6rem;
  color: #555;
  margin: 20px auto;
}

/* Footer */
.footer-form__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.footer-form__item.review img {
  /* max-width: 33.33%; */
}
.footer-form__item.contact {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.footer-form__item.contact a {
  display: block;
  color: var(--primary-color);
  font-size: 1.4rem;
}
.footer-form__item.form-box {
}

.footer-map {
  width: 100%;
}

.footer-form__form-control {
  color: #666;
  font-size: 0.9rem;
  font-weight: 300;
}
.footer-form_input-flex {
  display: inline-flex;
  gap: 1rem;
}
.footer-form__input {
  border: none;
  border-bottom: 1px solid var(--primary-color);
  width: 100%;
  height: 38px;
  margin-bottom: 13px;
}

.footer-form__submit-button {
  display: block;
  background: #f05c66;
  color: #fff;
  border-radius: 50px;
  padding: 10px 25px;
  margin: 0 auto;
  text-align: center;
  width: 200px;
  border: none;
  font-size: 17px;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-form__submit-button:hover{
    transform: scale(1.05);
}

/* Animation Keyframes */

@keyframes slideInRight {
  from {
    right: -100%; /* Position the box out of frame to the right */
    opacity: 0; /* Optional: Start with 0 opacity */
  }
  to {
    right: 20%; /* End at the desired position */
    opacity: 1; /* Optional: Fade in */
  }
}
/* Media Queries Start Here */
@media (max-width: 1400px) {
}
@media (max-width: 1200px) {
}

@media (max-width: 992px) {
  .main-header__top-row {
    flex-direction: column;
    gap: 1rem;
  }
  .main-banner .company-name,
  .main-banner .red-text,
  .main-banner .yellow-text,
  .main-banner .white-text {
    font-size: 1.5rem;
  }
  .main-header__company-name h1 {
    font-size: 1.5rem;
  }
  .services-grid-items {
    grid-template-columns: repeat(1, 1fr);
  }
  .why-choose-us__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .why-choose-us__grid-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
  }

  .main-header__nav-items {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .call-us__phone {
    flex-direction: column;
  }
  .footer-form__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .rate-cards__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .scale-img {
    transform: scale(1.6);
    margin: 50px auto;
  }
  .offer-box {
    max-width: 100%;
    margin: 0 auto;
    animation: none;
    right: 5%;
  }
  .about-section-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 576px) {
  .scale-img {
    transform: scale(1.8);
    margin: 70px auto;
  }
}
