/* ====== Reset & Base ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ====== Header ====== */
header {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #0099ff;
}

nav .btn {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* ====== Hero / Slider ====== */
.slide-container {
  width: 100%;
  height: 80vh;
  position: relative;
}

.slide-container img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.img-overlay {
  position: absolute;
  top: 40%;
  left: 10%;
  color: #fff;
}

.img-overlay h1 {
  font-size: 42px;
  font-weight: bold;
}

.img-overlay span {
  color: #ffcc00;
}

/* ====== About ====== */
#about {
  padding: 60px 20px;
  display: flex;
  align-items: center;
}

.about-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.agency-left-side {
  flex: 1;
}

.agency-right-side img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

.headings {
  font-size: 32px;
  margin: 10px 0;
}

.headings span {
  color: #0099ff;
}

.lead {
  margin: 15px 0;
  font-size: 16px;
}

/* ====== Tours Section ====== */
#choose-place {
  padding: 60px 20px;
  background: #f9fafc;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  margin-top: 20px;
}

.tour-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tour-card h3 {
  padding: 10px;
  font-size: 20px;
}

.tour-card p {
  padding: 0 10px 10px;
  color: #666;
}

.tour-card:hover {
  transform: translateY(-5px);
}

/* ====== Cars Section ====== */
#cars {
  padding: 60px 20px;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
  margin-top: 20px;
}

.car-card {
  background: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.car-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.car-card h3 {
  margin: 10px 0;
}

.car-card .button {
  display: inline-block;
  background: #0099ff;
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.car-card .button:hover {
  background: #0077cc;
}

/* ====== Enquiry Form ====== */
#enquiry {
  padding: 60px 20px;
  background: #f9fafc;
}

#enquiry h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
  color: #333;
}

.enquiry-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.enquiry-form .form-group {
  margin-bottom: 18px;
}

.enquiry-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #444;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: #0099ff;
  outline: none;
  box-shadow: 0 0 5px rgba(0,153,255,0.4);
}

.enquiry-form .btn {
  display: inline-block;
  background: #0099ff;
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.enquiry-form .btn:hover {
  background: #0077cc;
}

#priceBox {
  font-size: 20px;
  font-weight: bold;
  color: #0099ff;
}

/* ====== Footer ====== */
footer {
  background: #222;
  color: #ddd;
  padding: 40px 20px;
}

footer h3 {
  margin-bottom: 10px;
  color: #fff;
}

footer a {
  color: #ddd;
  text-decoration: none;
}

footer a:hover {
  color: #0099ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
}

.copyright {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 14px;
}