body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: #fff;
  color: #222;
}

.top-header {
  width: 100%;
  background: #111;
  color: #fff;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 7px 5vw;
  border-bottom: none;
  min-height: 32px;
  box-sizing: border-box;
}

.top-header a {
  text-decoration: none;
  color: #fff;
}
.top-header .email,
.top-header .phone {
  margin-right: 18px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.top-header .social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 0;
}
.top-header .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111;
  margin-right: 0;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.top-header .social-icon svg {
  stroke: #f5a500;
  transition: stroke 0.2s;
}
.top-header .social-icon:hover {
  background: #f5a500;
  box-shadow: 0 4px 16px rgba(245, 165, 0, 0.08);
}
.top-header .social-icon:hover svg {
  stroke: #111;
}

.top-header .email,
.top-header .phone {
  margin-right: 18px;
  color: #fff;
}
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 5vw 25px 5vw;
  background: #fff;
  border-bottom: 2px solid #f5a500;
  font-size: 1.12rem;
  position: relative;
  z-index: 10;
}
.hamburger-btn {
  display: none;
}
@media (max-width: 700px) {
  .hamburger-btn {
    display: block;
    background: none;
    border: none;
    font-size: 2.1em;
    color: #222;
    margin-left: auto;
    cursor: pointer;
    z-index: 30;
    padding: 6px 12px;
  }
  .mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
    padding: 18px 0 18px 0;
    border-radius: 0 0 12px 12px;
    transition: max-height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
  }
  body.nav-open .mobile-nav {
    display: block;
    max-height: 320px;
    animation: slideDown 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mobile-nav ul {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
  }
  .mobile-nav li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  .mobile-nav a {
    font-size: 1.18em;
    color: #111;
    padding: 10px 0;
    border-radius: 6px;
    display: block;
    width: 100%;
  }
  @keyframes slideDown {
    from {
      max-height: 0;
      opacity: 0;
    }
    to {
      max-height: 320px;
      opacity: 1;
    }
  }
}

.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  display: flex;
  align-items: center;
}

.main-nav a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a:focus {
  background: #f5a500;
  color: #fff;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #f5a500;
  padding: 8px 22px;
  border-radius: 10px;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(245, 165, 0, 0.07);
}
.social-links {
  display: flex;
  gap: 18px;
}
.social-icon svg {
  display: block;
  transition: stroke 0.2s;
}
.social-icon:hover svg {
  stroke: #222;
}
.logo {
  font-size: 1rem;
  font-weight: 700;
  color: #f5a500;
  background: #222;
  padding: 6px 16px;
  border-radius: 8px;
  letter-spacing: 1px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-icon {
  text-decoration: none;
  font-size: 1.3rem;
  color: #222;
  transition: color 0.2s;
}
.social-icon:hover {
  color: #f5a500;
}

.hero-banner {
  background: linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.6) 60%,
      rgba(0, 0, 0, 0.3) 100%
    ),
    url("images/banner.jpg") center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.hero-content {
  text-align: center;
}
.hero-content h1 {
  margin: 0 0 12px 0;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 28px;
}
.cta-btn {
  background: #f5a500;
  color: #222;
  padding: 12px 34px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255, 224, 102, 0.15);
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: #222;
  color: #f5a500;
}

/* Happy Customers Section - Modern Redesign */
.happy-customers-section {
  background: #f9f9f9;
  padding: 80px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.happy-customers-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
  background: none;
  border-radius: 0;
  box-shadow: none;
  border: none;
  padding: 0;
}

.happy-customers-icon {
  font-size: 3.6rem;
  color: #f5a500;
  margin-bottom: 0;
  margin-right: 12px;
  text-shadow: none;
}
@media (max-width: 700px) {
  .happy-customers-icon {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.happy-customers-label {
  font-size: 1.3rem;
  color: #222;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 0;
  text-transform: uppercase;
  text-shadow: none;
}
@media (max-width: 700px) {
  .happy-customers-label {
    font-size: 1rem;
  }
}

#happy-customers-count {
  font-size: 5rem;
  color: #e99d01;
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0 12px;
  line-height: 1;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  display: inline-block;
  transition: color 0.2s;
}
.happy-customers-label {
  font-size: 1.5rem;
  color: #222;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 0;
  text-transform: uppercase;
  text-shadow: none;
}
@media (max-width: 700px) {
  #happy-customers-count {
    font-size: 2.2rem;
    margin: 0;
  }
}

#happy-customers-count::after {
  content: "";
}
@media (max-width: 700px) {
  .happy-customers-section {
    padding: 38px 0 38px 0;
  }
  .happy-customers-wrapper {
    padding: 28px 10px 28px 10px;
  }
  #happy-customers-count {
    font-size: 3rem;
    padding: 8px 18px;
  }
  .happy-customers-label {
    font-size: 1.2rem;
  }
  .happy-customers-icon {
    font-size: 2.1rem;
  }
}

/* About Section: Centered (Bottom) */
.about-section-centered {
  padding: 70px 24px 70px 24px;
  background: #fff;
  text-align: center;
}
.about-centered-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.about-centered-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #222;
  margin: 0 0 12px 0;
  line-height: 1.25;
}
.about-centered-text {
  font-size: 1.13rem;
  color: #444;
  margin-bottom: 0;
  line-height: 1.7;
  margin-top: 0;
  padding-left: 30px;
  padding-right: 30px;
}
.about-centered-content .cta-btn {
  margin-top: 10px;
}
@media (max-width: 700px) {
  .about-section-centered {
    padding: 38px 0 38px 0;
  }
  .about-centered-title {
    font-size: 1.2rem;
  }
  .about-centered-text {
    font-size: 1rem;
  }
}

/* About Section: Two Columns */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 970px;
  margin: 60px auto 80px;
  padding: 0 5vw;
}
@media (max-width: 700px) {
  .about-section {
    margin-bottom: 34px;
  }
}
.about-image img {
  width: 370px;
  max-width: 40vw;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 240px;
}
.about-subtitle {
  color: #f5a500;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-title {
  font-size: 2.35rem;
  color: #222;
  margin-bottom: 16px;
  margin-top: 0;
  font-weight: 700;
}
.about-text {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 28px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    gap: 28px;
    max-width: 98vw;
    padding: 0 2vw;
  }
  .about-image img {
    width: 100%;
    max-width: 98vw;
  }
  .about-content {
    align-items: center;
    text-align: center;
  }
}

/* Cars Section */
.cars-section {
  padding: 80px 0 40px 0;
  background: #fff;
  text-align: center;
}
.cars-title h2 {
  margin: 0 0 40px;
  font-size: 2rem;
  color: #222;
  font-weight: 700;
  letter-spacing: 1px;
}

.cars-title .smallText {
  font-size: 1.2rem;
  color: #222;
  font-weight: 600;
  letter-spacing: 1px;
}
.cars-title .bigText {
  font-size: 2.8rem;
  color: #222;
  font-weight: 700;
  letter-spacing: 1px;
}

.cars-title h3 {
  margin: 10px 0 30px 0;
  font-size: 1.2rem;
  color: #f5a500;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.cars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.car-btn {
  background: #eeecec;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 22px 0;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(245, 165, 0, 0.09);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  width: 100%;
  text-decoration: none;
}
.car-btn:hover {
  background: #f5a500;
  color: #111;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 900px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .main-header {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between;
    gap: 0;
    padding: 12px 3vw 10px 3vw;
  }
  .logo {
    margin-bottom: 0;
    display: none;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-banner {
    height: 35vh;
  }
  .cta-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
  .cars-grid {
    grid-template-columns: 1fr;
  }
  .cars-section {
    padding: 30px 24px 0;

  }
  .cars-grid{
    padding: 0 20px;
  }
  .cars-title .smallText {
    font-size: 0.5em;
  }
  .cars-title .bigText {
    font-size: 1em;
  }
  .cars-title h2 {
    margin: 0 0 29px;
  }
  .car-btn {
    padding: 12px 0;
    font-size: 0.98rem;
  }
}

/* Service Caption */
.service-caption {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  text-align: center;
  font-size: 2rem;
  color: #fff;
  background: #111;
  padding: 80px 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 0;
  max-width: none;
  box-shadow: none;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .service-caption {
    font-size: 1.1rem;
    padding: 36px 4vw;
  }
}

/* Features Section: 4 Columns */
.features-section {
  background: #fff;
  padding: 60px 0 60px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}
.feature-item {
  background: #f9f9f9;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
  padding: 34px 22px 32px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s;
}
.feature-item:hover {
  box-shadow: 0 4px 32px rgba(245, 165, 0, 0.12);
}
.feature-img {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
}
.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .feature-title {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.feature-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.5;
}
.feature-btn {
  background: #f5a500;
  color: #000;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(245, 165, 0, 0.1);
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}
.feature-btn:hover {
  background: #222;
  color: #f5a500;
}


@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-item {
    padding: 24px 10px 22px 10px;
  }
}

/* Book Now Fullscreen Section */
.booknow-section {
  position: relative;
  min-height: 400px;
  width: 100vw;
  background: url("images/banner.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin: 0;
  padding: 0;
}
.booknow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.booknow-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.booknow-label {
  color: #f5a500;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.booknow-phone {
  color: #fff;
  font-size: 3.5rem;
  font-weight: bold;
  padding: 18px 36px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.22);
  transition: background 0.2s, color 0.2s;
  margin-top: 8px;
  display: inline-block;
  cursor: pointer;
}
.booknow-phone:hover {
  /* color: #f5a500; */
  text-decoration: underline;
}
@media (max-width: 700px) {
  .booknow-section {
    min-height: unset;
    height: 225px;
    padding: 0;
  }
  .booknow-phone {
    font-size: 2rem;
    padding: 14px 8vw;
  }
  .booknow-label {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .booknow-label {
    font-size: 1rem;
  }
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  background: #000;
  color: #fff;
  padding: 48px 0 36px 0;
  font-size: 1rem;
}
.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  margin-top: 0;
  line-height: 1.25;
}
.footer-menu-list,
.footer-services-list {
  display: block;
  padding: 0;
  list-style: none;
}
.footer-menu-list li,
.footer-services-list li {
  display: block;
  margin-bottom: 18px;
}
.footer-menu-list li a,
.footer-services-list li a {
  color: #fff;
  text-decoration: none;
  padding: 6px 10px 6px 0px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.footer-menu-list li a:hover,
.footer-services-list li a:hover {
  background: #f5a500;
  color: #000;
}
.footer-cols-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 54px;
  max-width: 1213px;
  width: 100%;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .footer-cols-wrapper {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
    padding: 0 6vw;
  }
}
@media (max-width: 700px) {
  .footer-cols-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: center;
    padding: 0 3vw;
  }
  .footer-col {
    align-items: center;
    text-align: center;
  }
  .footer-contact-link {
    font-size: 1.15em;
    gap: 14px;
    padding: 10px 0;
    margin-bottom: 18px;
    justify-content: center;
  }
  .footer-contact-link i {
    font-size: 1.4em;
  }
  .footer-menu-list li,
  .footer-services-list li {
    margin-bottom: 15px;
    font-size: 1.13em;
  }
  .footer-social {
    justify-content: center;
  }
  footer {
    padding-bottom: 90px;
  }
  .top-header-contact .contact-text {
    display: none;
  }
  .top-header-contact i {
    font-size: 1.5em;
    margin-right: 0;
  }
  .top-header-contact {
    padding: 0 4px;
  }
  .top-header-contact:first-of-type {
    display: none;
  }
}
.footer-col {
  min-width: 0;
  width: 100%;
  align-items: flex-start;
}
.footer-social {
  margin: 8px 0;
}
