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

/* Header Base */
.site-header {
  background-color: #003366;
  color: white;
  padding: 15px 0;
}

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

  body {
    background-color: #111;
    font-family: 'Segoe UI', sans-serif;
    color: #eee;
    margin: 0;
    padding: 0;
  }
  header {
    background: #000;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  }
  header .logo {
    font-size: 28px;
    font-weight: bold;
    color: gold;
  }
  nav a {
    color: #eee;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  nav a:hover {
    color: #0ae44f;
  }
  .cta-btn {
    background: gold;
    color: #000;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
  }


.hero-slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 450px;
}

.slider-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  max-width: 90%;
  text-align: center;
  z-index: 3;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* dark transparent background */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.slide-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 28px;
  }
  .slide-content p {
    font-size: 16px;
  }
}


.slider-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
}

.slider-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #ffffff88;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
  background-color: white;
}



.featured-tours-new {
  padding: 60px 20px;
  background: #fdfdfd;
}

.btn {
  background-color: #e60000;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #c40000;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}


.tour-card-new {
  width: 100%;
  max-width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}

.tour-image {
  position: relative;
}

.tour-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  padding: 5px 8px;
  border-radius: 20px;
  font-size: 18px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.tour-content {
  padding: 16px;
}

.tour-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.badge {
  background: #e7f34f;
  color: #333;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.info-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.price-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.price-block .current {
  font-size: 20px;
  color: #003366;
  font-weight: bold;
}

.price-block .original {
  font-size: 14px;
  color: #aaa;
  text-decoration: line-through;
}

.price-block .save {
  font-size: 13px;
  color: #e60000;
}

.compare-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff6f00;      /* Deep orange */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.compare-btn:hover {
  background-color: #e65100;      /* Darker orange on hover */
  transform: translateY(-2px);
}

.category-tabs {
  margin-bottom: 30px;
  text-align: center;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.category-col {
  padding: 12px;
  background-color: #f0f0f0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #003366;
  transition: 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.category-col:hover {
  background-color: #e6f2ff;
  border-color: #3399ff;
}

.category-col.active {
  background-color: #003366;
  color: white;
  border-color: #003366;
}


.tour-card h3 {
  margin-top: 10px;
}

.testimonials div {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.site-footer {
  background-color: #222;
  color: #ccc;
  padding: 40px 0;
  font-size: 15px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-columns div {
  flex: 1;
  min-width: 200px;
}

.footer-columns h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-columns ul li {
  margin-bottom: 8px;
}

.footer-columns ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-columns ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  margin-top: 20px;
}

.tour-details h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.tour-details h3 {
  margin-top: 30px;
  color: #003366;
}

.tour-details ul {
  margin-left: 20px;
  line-height: 1.6;
}
.book-section input, .book-section select {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}


.booking-form label {
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  color: #333;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="number"],
.booking-form input[type="date"],
.booking-form select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.booking-form input[readonly] {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.booking-form .btn {
  background-color: #e60000;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.booking-form .btn:hover {
  background-color: #c40000;
}

/* Responsive layout for form + tour summary */
.book-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.book-section .container > div {
  flex: 1;
  min-width: 300px;
}
.contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.contact-form label {
  font-weight: 600;
  color: #003366;
  margin-bottom: 5px;
  display: block;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 15px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #006d69;
  outline: none;
  background-color: #fff;
}

.contact-form .btn {
  background-color: #e60000;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #c40000;
}


.intro-section {
  background: #ffffff; /* white background */
  padding: 40px;
  border-radius: 12px;
  margin: 20px auto;
  max-width: 1000px;
  color: #333; /* dark text for readability */
}

.intro-section h2,
.intro-section h3 {
  color: #111; /* darker heading for contrast */
}

.intro-section p {
  line-height: 1.6;
  margin-bottom: 16px;
}

.solutions-section {
  padding: 40px;
  background: #f5f5f5;
  color: #222;
}

.solutions-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.solutions-section .box {
  flex: 1 1 200px;
  min-width: 220px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  color: #333;
}
