body {
  margin: 0;
  font-family: 'Times New Roman', Times, serif, sans-serif;
  line-height: 1.6;
  color: #333;
  position: relative;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  background: #ffb300;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
}

.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-menu li {
  margin-left: 15px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.hero {
  background: #fff;
  padding: 40px 15px;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.hero-main {
  flex: 2;
  text-align: center;
  min-width: 280px;
}

.hero-main p {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.hero-main h1 {
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  color: #ffb300;
  margin-bottom: 10px;
}

.hero-main h2 {
  font-size: clamp(1.2rem, 4vw, 1.4rem);
  color: #333;
  margin-bottom: 15px;
}

.hero-image {
  flex: 1;
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

.cta-button {
  background: #ffb300;
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #a79877;
}

.section {
  padding: 50px 15px;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: clamp(1.5rem, 5vw, 1.8rem);
}

.image-text-section {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.image-side {
  flex: 1;
  min-width: 250px;
}

.section-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 5px;
}

.text-side {
  flex: 1;
  min-width: 250px;
}

.text-side ul {
  list-style: disc;
  padding-left: 20px;
}

.book-section {
  background: #83807b;
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 450px;
  margin: 0 auto;
}

.book-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.book-form input:focus {
  outline: none;
  border-color: #ffb300;
}

.social-section {
  background: #fff;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  text-decoration: none;
  font-size: 1.5rem;
  color: #333;
}

.social-icon i {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: #ffca28;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.1);
}

.social-icon .fa-whatsapp {
  color: #048132;
}

.review-section {
  background: #f9f9f9;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.review {
  background: #fff;
  padding: 12px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 280px;
  text-align: center;
}

.review span {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: #666;
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: #ffb300;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.25rem;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.floating-btn:hover {
  background: #817f79;
  transform: scale(1.1);
}

.call-btn i {
  color: #000;
}

.whatsapp-btn i {
  color: #25D366;
}

.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 15px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
}

.footer a:hover {
  text-decoration: underline;
}

.services-list, .vehicle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.service-item, .vehicle-item {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-item i, .vehicle-item i {
  font-size: 2rem;
  color: #ffb300;
  margin-bottom: 10px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  min-height: 100px;
  resize: vertical;
}

.contact-form textarea:focus {
  outline: none;
  border-color: #ffb300;
}

.contact-map {
  flex: 1;
  min-width: 280px;
}

.contact-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

.contact-info {
  margin-top: 20px;
  text-align: center;
}

.contact-info p {
  margin: 8px 0;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 15px;
  }

  .nav-menu li {
    margin: 8px 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    max-width: 100%;
  }

  .image-text-section {
    flex-direction: column;
  }

  .floating-buttons {
    bottom: 15px;
    right: 10px;
    gap: 10px;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .section {
    padding: 30px 10px;
  }

  .hero-main h1 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
  }

  .hero-main h2 {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }

  .section-image {
    max-width: 100%;
  }

  .contact-map iframe {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 50px;
  }

  .hero {
    padding: 20px 10px;
  }

  .book-form, .contact-form {
    max-width: 100%;
  }

  .service-item, .vehicle-item {
    min-width: 100%;
  }

  .floating-buttons {
    bottom: 10px;
    right: 8px;
  }

  .floating-btn {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}