/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

/* ===== Header ===== */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
}

.logo img {
  height: 55px;
  width: auto;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu ul li a:hover {
  color: #ff5722;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 5px;
  transition: 0.3s;
}

/* ===== Hero Section ===== */
.hero {
  margin-top: 80px;
  position: relative;
  text-align: center;
  color: white;
}
.hero-image img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.hero-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  background: #ff5722;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.hero-button.secondary {
  background: white;
  color: #ff5722;
  border: 2px solid #ff5722;
}
.hero-button:hover {
  background: #e64a19;
  color: white;
}

/* ===== Destinations ===== */
.destination {
  padding: 70px 50px;
  text-align: center;
}
.destination h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}
.desti {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #ff5722;
}
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.destination-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.destination-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.destination-item:hover img {
  transform: scale(1.1);
}
.destination-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  opacity: 0;
  transition: 0.4s;
}
.destination-item:hover .destination-overlay {
  opacity: 1;
}
.explore-btn {
  margin-top: 10px;
  padding: 8px 20px;
  border: 2px solid white;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.explore-btn:hover {
  background: #ff5722;
  border-color: #ff5722;
}

/* ===== Features ===== */
.features {
  padding: 70px 50px;
  text-align: center;
  background: #f9f9f9;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.feature-item {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.feature-item img {
  width: 100%;
  height: 180px;
  border-radius: 15px;
  object-fit: cover;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.learn-more {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #ff5722;
  font-weight: 600;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 70px 50px;
  text-align: center;
}
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.testimonial {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.testimonial-content p {
  font-style: italic;
  margin-bottom: 15px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* ===== Footer ===== */
footer {
  background: #222;
  color: #ccc;
  padding: 50px 20px 20px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}
.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin: 8px 0;
  font-size: 14px;
}
.footer-section ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}
.footer-section ul li a:hover {
  color: #ff5722;
}
.social-icons a {
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #ff5722;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 14px;
}

/* ===== Responsive Media Queries ===== */

/* Tablets */
@media (max-width: 991px) {
  header {
    padding: 10px 20px;
  }
  .nav-menu ul {
    position: fixed;
    top: 70px;
    right: -100%;
    background: #fff;
    flex-direction: column;
    gap: 15px;
    width: 220px;
    height: 100vh;
    padding: 30px;
    transition: 0.3s;
  }
  .nav-menu ul.active {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-image img {
    height: 60vh;
  }
}
/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

/* ===== Header ===== */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
}

.logo img {
  height: 55px;
  width: auto;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu ul li a:hover {
  color: #ff5722;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 5px;
  transition: 0.3s;
}

/* ===== Hero Section ===== */
.hero {
  margin-top: 80px;
  position: relative;
  text-align: center;
  color: white;
}
.hero-image img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.hero-button {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 30px;
  border-radius: 30px;
  background: #ff5722;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.hero-button.secondary {
  background: white;
  color: #ff5722;
  border: 2px solid #ff5722;
}
.hero-button:hover {
  background: #e64a19;
  color: white;
}

/* ===== Destinations ===== */
.destination {
  padding: 70px 50px;
  text-align: center;
}
.destination h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}
.desti {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #ff5722;
}
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.destination-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.destination-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.destination h3{
    color:#fff;
}
.destination-item:hover img {
  transform: scale(1.1);
}
.destination-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  opacity: 0;
  transition: 0.4s;
}
.destination-item:hover .destination-overlay {
  opacity: 1;
}
.explore-btn {
  margin-top: 10px;
  padding: 8px 20px;
  border: 2px solid white;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.explore-btn:hover {
  background: #ff5722;
  border-color: #ff5722;
}

/* ===== Features ===== */
.features {
  padding: 70px 50px;
  text-align: center;
  background: #f9f9f9;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.feature-item {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.feature-item img {
  width: 100%;
  height: 180px;
  border-radius: 15px;
  object-fit: cover;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.learn-more {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #ff5722;
  font-weight: 600;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 70px 50px;
  text-align: center;
}
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.testimonial {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.testimonial-content p {
  font-style: italic;
  margin-bottom: 15px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* ===== Footer ===== */
footer {
  background: #222;
  color: #ccc;
  padding: 50px 20px 20px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}
.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin: 8px 0;
  font-size: 14px;
}
.footer-section ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}
.footer-section ul li a:hover {
  color: #ff5722;
}
.social-icons a {
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #ff5722;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 14px;
}

/* ===== Responsive Media Queries ===== */

/* Tablets */
@media (max-width: 991px) {
  header {
    padding: 10px 20px;
  }
  .nav-menu ul {
    position: fixed;
    top: 70px;
    right: -100%;
    background: #fff;
    flex-direction: column;
    gap: 15px;
    width: 220px;
    height: 100vh;
    padding: 30px;
    transition: 0.3s;
  }
  .nav-menu ul.active {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-image img {
    height: 60vh;
  }
}
/* ========== ABOUT PAGE CSS ========== */

/* Hero Section */
.about-hero {
  position: relative;
  text-align: center;
  color: white;
  margin-top: 80px;
}
.about-hero-image img {
  width: 100%;
  height: 65vh;
  object-fit: cover;
}
.about-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}
.about-hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 700px;
  padding: 20px;
}
.about-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.about-hero-content p {
  font-size: 1.1rem;
}

/* About Sections */
.about-us {
  padding: 70px 50px;
}
.about-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.about-section {
  display: flex;
  align-items: center;
  gap: 40px;
}
.about-section.reverse {
  flex-direction: row-reverse;
}
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.about-content {
  flex: 1;
}
.about-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ff5722;
}
.about-content p {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
}

/* Core Values Section */
.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
.value-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.value-item i {
  font-size: 30px;
  color: #ff5722;
  margin-bottom: 10px;
}
.value-item h3 {
  margin-bottom: 8px;
  color: #222;
}
.value-item:hover {
  transform: translateY(-5px);
}

/* Why Choose Us Section */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
.benefit-item {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.benefit-item i {
  font-size: 30px;
  color: #ff5722;
  margin-bottom: 10px;
}
.benefit-item h3 {
  margin-bottom: 8px;
  color: #222;
}
.benefit-item:hover {
  transform: translateY(-5px);
}

/* Founder Section (if enabled) */
.founder-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 50px 0;
}
.founder-image img {
  width: 280px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.founder-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ff5722;
}
.founder-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #222;
}
.founder-content p {
  margin-bottom: 15px;
  color: #555;
}
.founder-social a {
  font-size: 20px;
  color: #ff5722;
  margin-right: 12px;
  transition: 0.3s;
}
.founder-social a:hover {
  color: #e64a19;
}

/* Team Section (if enabled) */
.team-section {
  padding: 70px 50px;
  text-align: center;
}
.team-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.team-member {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.team-member img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 12px;
}
.team-member h3 {
  margin-bottom: 5px;
  color: #222;
}
.team-member p {
  font-size: 14px;
  color: #555;
}
.team-social a {
  font-size: 18px;
  color: #ff5722;
  margin: 0 5px;
  transition: 0.3s;
}
.team-member:hover {
  transform: translateY(-5px);
}

/* ===== Responsive Media Queries ===== */
@media (max-width: 1024px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }
  .about-section.reverse {
    flex-direction: column;
  }
  .about-image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2rem;
  }
  .about-hero-content p {
    font-size: 1rem;
  }
  .about-us {
    padding: 50px 20px;
  }
}

@media (max-width: 480px) {
  .about-hero-image img {
    height: 50vh;
  }
  .about-hero-content h1 {
    font-size: 1.6rem;
  }
  .about-hero-content p {
    font-size: 0.9rem;
  }
}
/* ===== Tours Page Styling ===== */

/* Hero Section */
.tours-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.tours-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tours-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.tours-hero-content {
  position: absolute;
  z-index: 2;
  padding: 20px;
}
.tours-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.tours-hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* Filter Section */
.tours-filter {
  background: #f9f9f9;
  padding: 30px 20px;
}
.filter-container {
  max-width: 1100px;
  margin: auto;
}
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
}
.filter-group {
  flex: 1;
  min-width: 200px;
}
.filter-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.filter-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.filter-button {
  background: #0077cc;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.filter-button:hover {
  background: #005fa3;
}

/* Tour Packages */
.tour-packages {
  padding: 60px 20px;
  text-align: center;
}
.tour-packages h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
}
.tour-category {
  margin-bottom: 50px;
}
.tour-category h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0077cc;
}
.tour-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.tour-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-6px);
}
.tour-image {
  position: relative;
}
.tour-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff6600;
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 6px;
}
.tour-content {
  padding: 20px;
  text-align: left;
}
.tour-content h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 12px;
}
.tour-meta i {
  color: #0077cc;
  margin-right: 5px;
}
.tour-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #333;
}
.tour-actions {
  display: flex;
  gap: 12px;
}
.tour-button {
  flex: 1;
  text-align: center;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.3s;
}
.tour-button {
  background: #0077cc;
  color: #fff;
}
.tour-button:hover {
  background: #005fa3;
}
.tour-button.outline {
  background: transparent;
  border: 2px solid #0077cc;
  color: #0077cc;
}
.tour-button.outline:hover {
  background: #0077cc;
  color: #fff;
}

/* CTA Section */
.tour-cta {
  background: linear-gradient(to right, #0077cc, #005fa3);
  padding: 60px 20px;
  text-align: center;
  color: white;
}
.cta-container h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.cta-container p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.cta-button {
  display: inline-block;
  background: white;
  color: #0077cc;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.cta-button:hover {
  background: #f1f1f1;
}

/* Benefits Section */
.tour-benefits {
  padding: 60px 20px;
  text-align: center;
}
.tour-benefits h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}
.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
}
.benefit-card i {
  font-size: 2rem;
  color: #0077cc;
  margin-bottom: 15px;
}
.benefit-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.95rem;
  color: #555;
}

/* ===== Responsive Media Queries ===== */

/* Tablets & Medium Screens (1024px) */
@media (max-width: 1024px) {
  .tours-hero-content h1 {
    font-size: 2.2rem;
  }
  .tours-hero-content p {
    font-size: 1rem;
  }
  .tour-meta {
    gap: 10px;
  }
}

/* Tablets (768px) */
@media (max-width: 768px) {
  .filter-options {
    flex-direction: column;
  }
  .tour-actions {
    flex-direction: column;
  }
  .tours-hero {
    height: 60vh;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  .tours-hero-content h1 {
    font-size: 1.6rem;
  }
  .tours-hero-content p {
    font-size: 0.9rem;
  }
  .tour-packages h2 {
    font-size: 1.6rem;
  }
  .tour-category h3 {
    font-size: 1.3rem;
  }
}
/* ===== Visa Page Styling ===== */

/* Hero Section */
.visa-hero {
  position: relative;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.visa-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visa-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.visa-hero-content {
  position: absolute;
  z-index: 2;
  padding: 20px;
}
.visa-hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}
.visa-hero-content p {
  font-size: 1.1rem;
}

/* Visa Services Section */
.visa-services {
  padding: 60px 20px;
  text-align: center;
}
.visa-services h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-icon {
  font-size: 2rem;
  color: #0077cc;
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}
.service-features {
  text-align: left;
  margin-bottom: 15px;
}
.service-features li {
  font-size: 0.9rem;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}
.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0077cc;
}
.service-button {
  display: inline-block;
  padding: 10px 18px;
  background: #0077cc;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.service-button:hover {
  background: #005fa3;
}

/* Visa Countries Section */
.visa-countries {
  padding: 60px 20px;
  text-align: center;
}
.visa-countries h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.tab-button {
  padding: 10px 20px;
  border-radius: 6px;
  border: 2px solid #0077cc;
  background: transparent;
  color: #0077cc;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.tab-button.active,
.tab-button:hover {
  background: #0077cc;
  color: #fff;
}
.tab-content .tab-pane {
  display: none;
}
.tab-content .tab-pane.active {
  display: block;
}
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.country-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.country-card:hover {
  transform: translateY(-6px);
}
.country-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.country-card h4 {
  font-size: 1.3rem;
  margin: 12px 0 6px;
}
.country-card p {
  font-size: 0.9rem;
  color: #555;
}
.country-button {
  display: inline-block;
  margin: 12px 0;
  padding: 8px 16px;
  background: #0077cc;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.country-button:hover {
  background: #005fa3;
}

/* Visa Process */
.visa-process {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}
.visa-process h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}
.process-steps {
  max-width: 900px;
  margin: auto;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}
.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #0077cc;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.95rem;
  color: #555;
}

/* FAQ Section */
.visa-faq {
  padding: 60px 20px;
}
.visa-faq h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
}
.faq-container {
  max-width: 800px;
  margin: auto;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 0.95rem;
  color: #555;
}

/* CTA Section */
.visa-cta {
  background: linear-gradient(to right, #0077cc, #005fa3);
  padding: 60px 20px;
  text-align: center;
  color: white;
}
.cta-container h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta-container p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.cta-button {
  background: white;
  color: #0077cc;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.cta-button:hover {
  background: #f1f1f1;
}

/* Payment Section */
.payment-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}
.payment-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.payment-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.payment-method img {
  width: 80px;
  height: auto;
  object-fit: contain;
}
.payment-form {
  text-align: left;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.payment-form h3 {
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}
.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.payment-option {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  flex: 1;
  min-width: 120px;
  text-align: center;
  cursor: pointer;
}
.payment-option img {
  width: 40px;
  height: auto;
  margin-bottom: 6px;
}
.payment-button {
  background: #0077cc;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.payment-button:hover {
  background: #005fa3;
}

/* ===== Responsive Media Queries ===== */

/* 1024px */
@media (max-width: 1024px) {
  .visa-hero-content h1 {
    font-size: 2.2rem;
  }
  .payment-container {
    grid-template-columns: 1fr;
  }
}

/* 768px */
@media (max-width: 768px) {
  .step {
    flex-direction: column;
    align-items: flex-start;
  }
  .payment-options {
    flex-direction: column;
  }
}

/* 480px */
@media (max-width: 480px) {
  .visa-hero {
    height: 50vh;
  }
  .visa-hero-content h1 {
    font-size: 1.6rem;
  }
  .visa-hero-content p {
    font-size: 0.9rem;
  }
  .visa-services h2,
  .visa-countries h2,
  .visa-process h2,
  .visa-faq h2,
  .payment-section h2 {
    font-size: 1.6rem;
  }
}
/* ===== Contact Page Styling ===== */

/* Hero Section */
.contact-hero {
  position: relative;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.contact-hero-image img {
  width: 10000px;
  height: 100%;
  object-fit: cover;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.contact-hero-content {
  position: absolute;
  z-index: 2;
  padding: 20px;
}
.contact-hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}
.contact-hero-content p {
  font-size: 1.1rem;
}

/* Contact Info Section */
.contact-info {
  padding: 60px 20px;
  background: #f9f9f9;
}
.info-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  text-align: center;
}
.info-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  transition: transform 0.3s ease;
}
.info-card:hover {
  transform: translateY(-6px);
}
.info-icon {
  font-size: 2rem;
  color: #0077cc;
  margin-bottom: 12px;
}
.info-card h3 {
  margin-bottom: 10px;
}
.info-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Contact Form Section */
.contact-form-section {
  padding: 60px 20px;
}
.form-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}
.form-content {
  flex: 1;
}
.form-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.form-content p {
  margin-bottom: 25px;
  color: #555;
}
.contact-form .form-group {
  margin-bottom: 15px;
}
.contact-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}
.submit-button {
  background: #0077cc;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.submit-button:hover {
  background: #005fa3;
}
.form-image {
  flex: 1;
}
.form-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Map Section */
.contact-map {
  padding: 60px 20px;
  text-align: center;
}
.contact-map h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Customer Reviews */
.customer-reviews {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.customer-reviews h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.reviews-container {
  max-width: 900px;
  margin: auto;
  position: relative;
}
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin: auto;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.reviewer-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.reviewer-info h4 {
  margin-bottom: 6px;
}
.review-rating i {
  color: #ffc107;
}
.review-content {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
}
.review-date {
  font-size: 0.85rem;
  color: #777;
}
.review-actions {
  margin-top: 20px;
}
.review-nav {
  background: #0077cc;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 6px;
  transition: 0.3s;
}
.review-nav:hover {
  background: #005fa3;
}

/* Review Form Section */
.review-form-section {
  padding: 60px 20px;
}
.review-form-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}
.review-form-image {
  flex: 1;
}
.review-form-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.review-form-content {
  flex: 1;
}
.review-form-content h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.review-form-content p {
  margin-bottom: 20px;
  color: #555;
}
.review-form .form-group {
  margin-bottom: 15px;
}
.review-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.review-form input,
.review-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}
.rating-stars {
  display: flex;
  gap: 5px;
}
.rating-stars i {
  font-size: 1.4rem;
  color: #ffc107;
  cursor: pointer;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  padding: 40px 20px 20px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.footer-section {
  flex: 1;
  min-width: 220px;
}
.footer-logo {
  width: 140px;
  margin-bottom: 12px;
}
.footer-section h3 {
  margin-bottom: 12px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.footer-section ul li i {
  margin-right: 8px;
  color: #0077cc;
}
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #0077cc;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 0.9rem;
}

/* ===== Responsive Media Queries ===== */

/* 1024px */
@media (max-width: 1024px) {
  .form-container,
  .review-form-container {
    flex-direction: column;
  }
  .contact-hero-content h1 {
    font-size: 2.2rem;
  }
}

/* 768px */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    align-items: center;
  }
  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 480px */
@media (max-width: 480px) {
  .contact-hero {
    height: 50vh;
  }
  .contact-hero-content h1 {
    font-size: 1.6rem;
  }
  .contact-hero-content p {
    font-size: 0.9rem;
  }
  .customer-reviews h2,
  .review-form-content h2,
  .contact-map h2 {
    font-size: 1.6rem;
  }
}
/* ===== Thailand Tour Package Page Styling ===== */

/* Hero Section */
.destination-hero {
  position: relative;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  text-align: center;
}
.destination-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.destination-hero-content {
  position: absolute;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}
.destination-hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.destination-hero-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.hero-meta span {
  margin: 0 12px;
  font-size: 0.95rem;
}
.hero-meta i {
  margin-right: 6px;
  color: #ffc107;
}

/* Overview Section */
.destination-overview {
  padding: 60px 20px;
}
.destination-overview .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.overview-content {
  flex: 1;
}
.overview-content h2 {
  margin-bottom: 15px;
}
.highlights h3 {
  margin: 20px 0 12px;
}
.highlights ul {
  list-style: none;
  padding: 0;
}
.highlights li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.highlights i {
  color: #0077cc;
  margin-right: 8px;
}
.overview-image {
  flex: 1;
}
.overview-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Itinerary Section */
.itinerary-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.itinerary-container {
  max-width: 1100px;
  margin: auto;
}
.itinerary-day {
  margin-bottom: 35px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}
.day-header {
  background: #0077cc;
  color: #fff;
  padding: 14px 20px;
}
.day-content {
  display: flex;
  flex-wrap: wrap;
}
.day-content img {
  flex: 1;
  min-width: 260px;
  object-fit: cover;
  height: 220px;
}
.day-description {
  flex: 2;
  padding: 20px;
}
.day-description p {
  margin-bottom: 12px;
}
.inclusions h4 {
  margin-bottom: 8px;
}
.inclusions ul {
  list-style: none;
  padding: 0;
}
.inclusions li {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.inclusions i {
  color: #28a745;
  margin-right: 6px;
}

/* Hotels Section */
.hotel-section {
  padding: 60px 20px;
}
.hotel-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 25px;
  overflow: hidden;
}
.hotel-card img {
  width: 280px;
  object-fit: cover;
}
.hotel-info {
  padding: 20px;
}
.hotel-rating i {
  color: #ffc107;
}
.hotel-rating span {
  margin-left: 6px;
  font-size: 0.9rem;
  color: #555;
}

/* Price Section */
.price-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.price-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.price-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  flex: 1;
  min-width: 280px;
  max-width: 330px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  text-align: center;
}
.price-card .price-amount {
  font-size: 1.8rem;
  color: #0077cc;
  font-weight: bold;
}
.price-card .price-per {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #555;
}
.price-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}
.price-features li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.price-features i.fa-check {
  color: #28a745;
  margin-right: 6px;
}
.price-features i.fa-times {
  color: #dc3545;
  margin-right: 6px;
}
.price-button {
  display: inline-block;
  background: #0077cc;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.price-button:hover {
  background: #005fa3;
}
.featured {
  border: 2px solid #0077cc;
}
.popular-tag {
  position: absolute;
  top: -12px;
  right: 12px;
  background: #0077cc;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 6px;
}

/* Gallery Section */
.gallery-section {
  padding: 60px 20px;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}

/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.faq-container {
  max-width: 900px;
  margin: auto;
}
.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-weight: 600;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question i {
  transition: transform 0.3s ease;
}
.faq-answer {
  display: none;
  padding: 0 14px 14px;
  font-size: 0.95rem;
  color: #555;
}

/* CTA Section */
.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0077cc, #005fa3);
  color: #fff;
  text-align: center;
}
.cta-container h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}
.cta-buttons {
  margin-top: 20px;
}
.cta-button {
  background: #fff;
  color: #0077cc;
  padding: 10px 18px;
  border-radius: 6px;
  margin: 0 8px;
  display: inline-block;
  transition: 0.3s;
  text-decoration: none;
  font-weight: 600;
}
.cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cta-button:hover {
  background: #ffc107;
  color: #222;
}

/* ===== Responsive Media Queries ===== */

/* 1024px */
@media (max-width: 1024px) {
  .destination-hero-content h1 {
    font-size: 2.2rem;
  }
  .overview-content, .overview-image {
    flex: 100%;
  }
  .day-content {
    flex-direction: column;
  }
  .hotel-card {
    flex-direction: column;
  }
}

/* 768px */
@media (max-width: 768px) {
  .price-container {
    flex-direction: column;
    align-items: center;
  }
  .gallery-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* 480px */
@media (max-width: 480px) {
  .destination-hero {
    height: 50vh;
  }
  .destination-hero-content h1 {
    font-size: 1.6rem;
  }
  .destination-hero-content p {
    font-size: 0.9rem;
  }
  .gallery-container {
    grid-template-columns: 1fr;
  }
  .cta-container h3 {
    font-size: 1.5rem;
  }
}
/* ===============================
   Thailand Tour Package Page CSS
   =============================== */

/* General Reset */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  line-height: 1.6;
}

/* Hero Section */
.destination-hero {
  position: relative;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.destination-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.destination-hero-content {
  position: absolute;
  z-index: 2;
  padding: 20px;
  max-width: 900px;
}
.destination-hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.destination-hero-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.hero-meta span {
  margin: 0 12px;
  font-size: 0.95rem;
}
.hero-meta i {
  margin-right: 6px;
  color: #ffc107;
}

/* Overview Section */
.destination-overview {
  padding: 60px 20px;
}
.destination-overview .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.overview-content {
  flex: 1;
}
.overview-content h2 {
  margin-bottom: 15px;
}
.highlights h3 {
  margin: 20px 0 12px;
}
.highlights ul {
  list-style: none;
  padding: 0;
}
.highlights li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.highlights i {
  color: #0077cc;
  margin-right: 8px;
}
.overview-image {
  flex: 1;
}
.overview-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Itinerary Section */
.itinerary-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.itinerary-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.itinerary-container {
  max-width: 1100px;
  margin: auto;
}
.itinerary-day {
  margin-bottom: 35px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}
.day-header {
  background: #0077cc;
  color: #fff;
  padding: 14px 20px;
}
.day-content {
  display: flex;
  flex-wrap: wrap;
}
.day-content img {
  flex: 1;
  min-width: 260px;
  object-fit: cover;
  height: 220px;
}
.day-description {
  flex: 2;
  padding: 20px;
}
.day-description p {
  margin-bottom: 12px;
}
.inclusions h4 {
  margin-bottom: 8px;
}
.inclusions ul {
  list-style: none;
  padding: 0;
}
.inclusions li {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.inclusions i {
  color: #28a745;
  margin-right: 6px;
}

/* Hotels Section */
.hotel-section {
  padding: 60px 20px;
}
.hotel-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.hotel-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 25px;
  overflow: hidden;
}
.hotel-card img {
  width: 280px;
  object-fit: cover;
}
.hotel-info {
  padding: 20px;
}
.hotel-rating i {
  color: #ffc107;
}
.hotel-rating span {
  margin-left: 6px;
  font-size: 0.9rem;
  color: #555;
}

/* Price Section */
.price-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.price-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.price-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.price-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  flex: 1;
  min-width: 280px;
  max-width: 330px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  text-align: center;
}
.price-card .price-amount {
  font-size: 1.8rem;
  color: #0077cc;
  font-weight: bold;
}
.price-card .price-per {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #555;
}
.price-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}
.price-features li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.price-features i.fa-check {
  color: #28a745;
  margin-right: 6px;
}
.price-features i.fa-times {
  color: #dc3545;
  margin-right: 6px;
}
.price-button {
  display: inline-block;
  background: #0077cc;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.price-button:hover {
  background: #005fa3;
}
.featured {
  border: 2px solid #0077cc;
}
.popular-tag {
  position: absolute;
  top: -12px;
  right: 12px;
  background: #0077cc;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 6px;
}

/* Gallery Section */
.gallery-section {
  padding: 60px 20px;
}
.gallery-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}

/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.faq-container {
  max-width: 900px;
  margin: auto;
}
.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-weight: 600;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question i {
  transition: transform 0.3s ease;
}
.faq-answer {
  display: none;
  padding: 0 14px 14px;
  font-size: 0.95rem;
  color: #555;
}

/* CTA Section */
.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0077cc, #005fa3);
  color: #fff;
  text-align: center;
}
.cta-container h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}
.cta-buttons {
  margin-top: 20px;
}
.cta-button {
  background: #fff;
  color: #0077cc;
  padding: 10px 18px;
  border-radius: 6px;
  margin: 0 8px;
  display: inline-block;
  transition: 0.3s;
  text-decoration: none;
  font-weight: 600;
}
.cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cta-button:hover {
  background: #ffc107;
  color: #222;
}

/* ===============================
   Responsive Media Queries
   =============================== */

/* 1024px */
@media (max-width: 1024px) {
  .destination-hero-content h1 {
    font-size: 2.2rem;
  }
  .overview-content, .overview-image {
    flex: 100%;
  }
  .day-content {
    flex-direction: column;
  }
  .hotel-card {
    flex-direction: column;
  }
}

/* 768px */
@media (max-width: 768px) {
  .price-container {
    flex-direction: column;
    align-items: center;
  }
  .gallery-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* 480px */
@media (max-width: 480px) {
  .destination-hero {
    height: 50vh;
  }
  .destination-hero-content h1 {
    font-size: 1.6rem;
  }
  .destination-hero-content p {
    font-size: 0.9rem;
  }
  .gallery-container {
    grid-template-columns: 1fr;
  }
  .cta-container h3 {
    font-size: 1.5rem;
  }
}
/* ===============================
   Dubai Extravaganza Tour Page CSS
   =============================== */

/* General Reset */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  line-height: 1.6;
}

/* Hero Section */
.destination-hero {
  position: relative;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.destination-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.destination-hero-content {
  position: absolute;
  z-index: 2;
  padding: 20px;
  max-width: 900px;
}
.destination-hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.destination-hero-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.hero-meta span {
  margin: 0 12px;
  font-size: 0.95rem;
}
.hero-meta i {
  margin-right: 6px;
  color: #ffc107;
}

/* Overview Section */
.destination-overview {
  padding: 60px 20px;
}
.destination-overview .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.overview-content {
  flex: 1;
}
.overview-content h2 {
  margin-bottom: 15px;
}
.highlights h3 {
  margin: 20px 0 12px;
}
.highlights ul {
  list-style: none;
  padding: 0;
}
.highlights li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.highlights i {
  color: #0077cc;
  margin-right: 8px;
}
.overview-image {
  flex: 1;
  position: relative;
}
.overview-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.map-legend {
  margin-top: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.map-legend h4 {
  margin-bottom: 8px;
}
.map-legend ul {
  list-style: none;
  padding: 0;
}
.map-legend li {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.map-legend i {
  color: #dc3545;
  margin-right: 6px;
}

/* Itinerary Section */
.itinerary-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.itinerary-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.itinerary-container {
  max-width: 1100px;
  margin: auto;
}
.itinerary-day {
  margin-bottom: 35px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}
.day-header {
  background: #0077cc;
  color: #fff;
  padding: 14px 20px;
}
.day-content {
  display: flex;
  flex-wrap: wrap;
}
.day-content img {
  flex: 1;
  min-width: 260px;
  object-fit: cover;
  height: 220px;
}
.day-description {
  flex: 2;
  padding: 20px;
}
.day-description p {
  margin-bottom: 12px;
}
.inclusions h4 {
  margin-bottom: 8px;
}
.inclusions ul {
  list-style: none;
  padding: 0;
}
.inclusions li {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.inclusions i {
  color: #28a745;
  margin-right: 6px;
}

/* Hotel Section */
.hotel-section {
  padding: 60px 20px;
}
.hotel-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.hotel-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 25px;
  overflow: hidden;
}
.hotel-card img {
  width: 280px;
  object-fit: cover;
}
.hotel-info {
  padding: 20px;
}
.hotel-rating i {
  color: #ffc107;
}
.hotel-rating span {
  margin-left: 6px;
  font-size: 0.9rem;
  color: #555;
}

/* Price Section */
.price-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.price-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.price-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.price-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  flex: 1;
  min-width: 280px;
  max-width: 330px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  text-align: center;
}
.price-card .price-amount {
  font-size: 1.8rem;
  color: #0077cc;
  font-weight: bold;
}
.price-card .price-per {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #555;
}
.price-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}
.price-features li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.price-features i.fa-check {
  color: #28a745;
  margin-right: 6px;
}
.price-features i.fa-times {
  color: #dc3545;
  margin-right: 6px;
}
.price-button {
  display: inline-block;
  background: #0077cc;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.price-button:hover {
  background: #005fa3;
}
.featured {
  border: 2px solid #0077cc;
}
.popular-tag {
  position: absolute;
  top: -12px;
  right: 12px;
  background: #0077cc;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 6px;
}
.price-note {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #444;
}

/* Visa Section */
.visa-info {
  padding: 60px 20px;
}
.visa-info h2 {
  text-align: center;
  margin-bottom: 30px;
}
.visa-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}
.visa-content {
  flex: 1;
}
.visa-content ul {
  list-style: none;
  padding: 0;
}
.visa-content li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.visa-details {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
.visa-detail-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.visa-detail-item i {
  font-size: 1.5rem;
  color: #0077cc;
}
.visa-button {
  display: inline-block;
  background: #0077cc;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
}
.visa-button:hover {
  background: #005fa3;
}
.visa-image {
  flex: 1;
}
.visa-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Gallery */
.gallery-section {
  padding: 60px 20px;
}
.gallery-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}

/* FAQ */
.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.faq-container {
  max-width: 900px;
  margin: auto;
}
.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-weight: 600;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question i {
  transition: transform 0.3s ease;
}
.faq-answer {
  display: none;
  padding: 0 14px 14px;
  font-size: 0.95rem;
  color: #555;
}

/* CTA */
.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0077cc, #005fa3);
  color: #fff;
  text-align: center;
}
.cta-container h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}
.cta-buttons {
  margin-top: 20px;
}
.cta-button {
  background: #fff;
  color: #0077cc;
  padding: 10px 18px;
  border-radius: 6px;
  margin: 0 8px;
  display: inline-block;
  transition: 0.3s;
  text-decoration: none;
  font-weight: 600;
}
.cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cta-button:hover {
  background: #ffc107;
  color: #222;
}

/* ===============================
   Responsive Media Queries
   =============================== */

/* 1024px */
@media (max-width: 1024px) {
  .destination-hero-content h1 {
    font-size: 2.2rem;
  }
  .overview-content, .overview-image {
    flex: 100%;
  }
  .day-content {
    flex-direction: column;
  }
  .hotel-card {
    flex-direction: column;
  }
  .visa-container {
    flex-direction: column;
  }
}

/* 768px */
@media (max-width: 768px) {
  .price-container {
    flex-direction: column;
    align-items: center;
  }
  .gallery-container {
    grid-template-columns: 1fr 1fr;
  }
  .visa-details {
    flex-direction: column;
  }
}

/* 480px */
@media (max-width: 480px) {
  .destination-hero {
    height: 50vh;
  }
  .destination-hero-content h1 {
    font-size: 1.6rem;
  }
  .destination-hero-content p {
    font-size: 0.9rem;
  }
  .gallery-container {
    grid-template-columns: 1fr;
  }
  .cta-container h3 {/* ================== GLOBAL STYLES ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
}
section {
  padding: 60px 20px;
}
h1, h2, h3, h4 {
  color: #111;
  font-weight: 700;
}
.container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* ================== HEADER ================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo img {
  height: 50px;
}
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 25px;
}
.nav-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-menu ul li a:hover {
  color: #ff6600;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
}

/* ================== HERO SECTION ================== */
.destination-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.destination-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-hero-overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.4);
}
.destination-hero-content {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  max-width: 800px;
}
.destination-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.destination-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.hero-meta span {
  background: rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.95rem;
}

/* ================== OVERVIEW ================== */
.destination-overview .overview-content {
  flex: 1;
  min-width: 300px;
}
.destination-overview .overview-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}
.map-legend {
  background: #fff;
  padding: 15px;
  margin-top: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.map-legend h4 {
  margin-bottom: 10px;
}
.map-legend ul {
  list-style: none;
}
.color-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}
.kuta { background: #ff6600; }
.ubud { background: #008080; }
.nusa-d { background: #0066ff; }
.uluwatu { background: #cc00cc; }
.tanah-lot { background: #009933; }

/* ================== ITINERARY ================== */
.itinerary-section {
  background: #f9f9f9;
}
.itinerary-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.itinerary-day {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.itinerary-day img {
  width: 250px;
  border-radius: 10px;
}
.day-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.day-description {
  flex: 1;
}
.inclusions ul {
  list-style: none;
}
.inclusions li {
  margin: 6px 0;
}

/* ================== HOTEL CARDS ================== */
.hotel-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 25px;
}
.hotel-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
}
.hotel-info {
  padding: 15px;
}
.hotel-rating {
  color: #ffcc00;
  margin: 8px 0;
}

/* ================== PRICE SECTION ================== */
.price-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 25px;
}
.price-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  position: relative;
}
.price-card.featured {
  border: 2px solid #ff6600;
}
.popular-tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff6600;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}
.price-amount {
  font-size: 2rem;
  color: #ff6600;
  margin: 10px 0;
}
.price-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 25px;
  background: #ff6600;
  color: #fff;
  transition: 0.3s;
}
.price-button:hover {
  background: #e65500;
}

/* ================== VISA INFO ================== */
.visa-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.visa-content {
  flex: 1;
}
.visa-details {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}
.visa-detail-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* ================== GALLERY ================== */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.gallery-item img {
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px;
  text-align: center;
}

/* ================== FAQ ================== */
.faq-container {
  max-width: 800px;
  margin: auto;
}
.faq-item {
  margin-bottom: 15px;
}
.faq-question {
  width: 100%;
  padding: 15px;
  border: none;
  background: #eee;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-answer {
  display: none;
  background: #fff;
  padding: 15px;
  border-left: 3px solid #ff6600;
}

/* ================== CTA ================== */
.cta-section {
  background: url('images/bali-cta-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}
.cta-section::before {
  content: "";
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.5);
}
.cta-container {
  position: relative;
  z-index: 2;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.cta-button {
  padding: 12px 20px;
  border-radius: 25px;
  background: #ff6600;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}
.cta-button.secondary {
  background: #fff;
  color: #ff6600;
}
.cta-button:hover {
  opacity: 0.9;
}

/* ================== FOOTER ================== */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 25px;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
  header { padding: 10px 30px; }
  .destination-hero-content h1 { font-size: 2.5rem; }
  .day-content { flex-direction: column; }
}

@media (max-width: 768px) {
  .nav-menu ul { 
    display: none; 
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px; right: 0;
    width: 200px;
    padding: 20px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.2);
  }
  .nav-menu ul.active { display: flex; }
  .hamburger { display: flex; }
  .hero-meta { flex-direction: column; }
  .visa-details { flex-direction: column; }
  .cta-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
  .destination-hero-content h1 { font-size: 1.8rem; }
  .price-amount { font-size: 1.5rem; }
  .faq-question { font-size: 0.95rem; }
}
/* ===============================
   Singapore Tour Page Styles
   =============================== */

/* Hero Section */
.destination-hero {
    height: 90vh;
    background: url('images/singapore-hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.destination-hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.destination-hero .hero-content {
    position: relative;
    z-index: 2;
}

.destination-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.destination-hero p {
    font-size: 1.2rem;
}

/* Overview Section */
.overview {
    padding: 80px 10%;
    background: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.overview-content {
    flex: 1;
}

.overview-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.overview-content ul {
    margin-top: 1rem;
    list-style: disc;
    padding-left: 20px;
}

.overview-image {
    flex: 1;
}

.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Itinerary Section */
.itinerary {
    padding: 80px 10%;
    background: #fff;
}

.itinerary h2 {
    text-align: center;
    margin-bottom: 40px;
}

.itinerary-day {
    background: #f2f2f2;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

/* Hotels Section */
.hotels {
    padding: 80px 10%;
    background: #f9f9f9;
}

.hotels h2 {
    text-align: center;
    margin-bottom: 40px;
}

.hotel-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.hotel-card img {
    width: 100%;
    height: auto;
}

.hotel-card h3 {
    padding: 15px;
    font-size: 1.5rem;
}

/* Price Section */
.price {
    padding: 80px 10%;
    background: #fff;
    text-align: center;
}

.price h2 {
    margin-bottom: 20px;
}

.price-card {
    display: inline-block;
    background: #f2f2f2;
    padding: 30px;
    border-radius: 10px;
    font-size: 1.2rem;
}

/* Visa Info Section */
.visa-info {
    padding: 80px 10%;
    background: #f9f9f9;
}

.visa-info h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery {
    padding: 80px 10%;
    background: #fff;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    padding: 80px 10%;
    background: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Call To Action Section */
.cta-section {
    padding: 60px 10%;
    background: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section a {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #ff6600;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-section a:hover {
    background: #f1f1f1;
}

/* ===============================
   Responsive Design
   =============================== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .overview {
        flex-direction: column;
        text-align: center;
    }
    .overview-image {
        order: -1;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .destination-hero h1 {
        font-size: 2.2rem;
    }
    .destination-hero p {
        font-size: 1rem;
    }
    .overview, .itinerary, .hotels, .price, .visa-info, .gallery, .faq-section, .cta-section {
        padding: 60px 5%;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .destination-hero {
        height: 70vh;
    }
    .destination-hero h1 {
        font-size: 1.8rem;
    }
    .overview-content h2, 
    .itinerary h2, 
    .hotels h2, 
    .price h2, 
    .visa-info h2, 
    .gallery h2, 
    .faq-section h2, 
    .cta-section h2 {
        font-size: 1.5rem;
    }
    .cta-section a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

    font-size: 1.5rem;
  }
}
/* ================== GLOBAL STYLES ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
}
section {
  padding: 60px 20px;
}
h1, h2, h3, h4 {
  color: #f4eded;
  font-weight: 700;
}
.visa-page h1,h2,h3,h4{
    color:#222;
}
.container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* ================== HEADER ================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo img {
  height: 50px;
}
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 25px;
}
.nav-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-menu ul li a:hover {
  color: #ff6600;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
}

/* ================== HERO SECTION ================== */
.destination-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.destination-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-hero-overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.4);
}
.destination-hero-content {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  max-width: 800px;
}
.destination-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.destination-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.hero-meta span {
  background: rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.95rem;
}

/* ================== OVERVIEW ================== */
.destination-overview .overview-content {
  flex: 1;
  min-width: 300px;
}
.destination-overview .overview-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}
.map-legend {
  background: #fff;
  padding: 15px;
  margin-top: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.map-legend h4 {
  margin-bottom: 10px;
}
.map-legend ul {
  list-style: none;
}
.color-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}
.kuta { background: #ff6600; }
.ubud { background: #008080; }
.nusa-d { background: #0066ff; }
.uluwatu { background: #cc00cc; }
.tanah-lot { background: #009933; }

/* ================== ITINERARY ================== */
.itinerary-section {
  background: #f9f9f9;
}
.itinerary-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.itinerary-day {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.itinerary-day img {
  width: 250px;
  border-radius: 10px;
}
.day-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.day-description {
  flex: 1;
}
.inclusions ul {
  list-style: none;
}
.inclusions li {
  margin: 6px 0;
}

/* ================== HOTEL CARDS ================== */
.hotel-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 25px;
}
.hotel-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
}
.hotel-info {
  padding: 15px;
}
.hotel-rating {
  color: #ffcc00;
  margin: 8px 0;
}

/* ================== PRICE SECTION ================== */
.price-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 25px;
}
.price-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  position: relative;
}
.price-card.featured {
  border: 2px solid #ff6600;
}
.popular-tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff6600;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}
.price-amount {
  font-size: 2rem;
  color: #ff6600;
  margin: 10px 0;
}
.price-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 25px;
  background: #ff6600;
  color: #fff;
  transition: 0.3s;
}
.price-button:hover {
  background: #e65500;
}

/* ================== VISA INFO ================== */
.visa-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.visa-content {
  flex: 1;
}
.visa-details {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}
.visa-detail-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* ================== GALLERY ================== */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.gallery-item img {
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px;
  text-align: center;
}

/* ================== FAQ ================== */
.faq-container {
  max-width: 800px;
  margin: auto;
}
.faq-item {
  margin-bottom: 15px;
}
.faq-question {
  width: 100%;
  padding: 15px;
  border: none;
  background: #eee;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-answer {
  display: none;
  background: #fff;
  padding: 15px;
  border-left: 3px solid #ff6600;
}

/* ================== CTA ================== */
.cta-section {
  background: url('images/bali-cta-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}
.cta-section::before {
  content: "";
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.5);
}
.cta-container {
  position: relative;
  z-index: 2;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.cta-button {
  padding: 12px 20px;
  border-radius: 25px;
  background: #ff6600;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}
.cta-button.secondary {
  background: #fff;
  color: #ff6600;
}
.cta-button:hover {
  opacity: 0.9;
}

/* ================== FOOTER ================== */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 25px;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
  header { padding: 10px 30px; }
  .destination-hero-content h1 { font-size: 2.5rem; }
  .day-content { flex-direction: column; }
}

@media (max-width: 768px) {
  .nav-menu ul { 
    display: none; 
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px; right: 0;
    width: 200px;
    padding: 20px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.2);
  }
  .nav-menu ul.active { display: flex; }
  .hamburger { display: flex; }
  .hero-meta { flex-direction: column; }
  .visa-details { flex-direction: column; }
  .cta-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
  .destination-hero-content h1 { font-size: 1.8rem; }
  .price-amount { font-size: 1.5rem; }
  .faq-question { font-size: 0.95rem; }
}
/* ===============================
   Singapore Tour Page Styles
   =============================== */

/* Hero Section */
.destination-hero {
    height: 90vh;
    background: url('images/singapore-hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.destination-hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.destination-hero .hero-content {
    position: relative;
    z-index: 2;
}

.destination-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.destination-hero p {
    font-size: 1.2rem;
}

/* Overview Section */
.overview {
    padding: 80px 10%;
    background: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.overview-content {
    flex: 1;
}

.overview-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.overview-content ul {
    margin-top: 1rem;
    list-style: disc;
    padding-left: 20px;
}

.overview-image {
    flex: 1;
}

.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Itinerary Section */
.itinerary {
    padding: 80px 10%;
    background: #fff;
}

.itinerary h2 {
    text-align: center;
    margin-bottom: 40px;
}

.itinerary-day {
    background: #f2f2f2;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

/* Hotels Section */
.hotels {
    padding: 80px 10%;
    background: #f9f9f9;
}

.hotels h2 {
    text-align: center;
    margin-bottom: 40px;
}

.hotel-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.hotel-card img {
    width: 100%;
    height: auto;
}

.hotel-card h3 {
    padding: 15px;
    font-size: 1.5rem;
}

/* Price Section */
.price {
    padding: 80px 10%;
    background: #fff;
    text-align: center;
}

.price h2 {
    margin-bottom: 20px;
}

.price-card {
    display: inline-block;
    background: #f2f2f2;
    padding: 30px;
    border-radius: 10px;
    font-size: 1.2rem;
}

/* Visa Info Section */
.visa-info {
    padding: 80px 10%;
    background: #f9f9f9;
}

.visa-info h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery {
    padding: 80px 10%;
    background: #fff;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    padding: 80px 10%;
    background: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Call To Action Section */
.cta-section {
    padding: 60px 10%;
    background: #ff6600;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section a {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #ff6600;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-section a:hover {
    background: #f1f1f1;
}

/* ===============================
   Responsive Design
   =============================== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .overview {
        flex-direction: column;
        text-align: center;
    }
    .overview-image {
        order: -1;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .destination-hero h1 {
        font-size: 2.2rem;
    }
    .destination-hero p {
        font-size: 1rem;
    }
    .overview, .itinerary, .hotels, .price, .visa-info, .gallery, .faq-section, .cta-section {
        padding: 60px 5%;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .destination-hero {
        height: 70vh;
    }
    .destination-hero h1 {
        font-size: 1.8rem;
    }
    .overview-content h2, 
    .itinerary h2, 
    .hotels h2, 
    .price h2, 
    .visa-info h2, 
    .gallery h2, 
    .faq-section h2, 
    .cta-section h2 {
        font-size: 1.5rem;
    }
    .cta-section a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* ===============================
   Rajasthan Tour Page Styles
   =============================== */

/* General Theme */
body.rajasthan-theme {
    font-family: 'Poppins', sans-serif;
    background: #fffaf5;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo img {
    height: 55px;
    border-radius: 5px;
}
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}
.nav-menu ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}
.nav-menu ul li a:hover {
    color: #d35400;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
}

/* Hero Section */
.destination-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.destination-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.destination-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.destination-hero-content {
    position: absolute;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}
.destination-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #f1c40f;
}
.hero-meta span {
    margin: 0 10px;
    display: inline-block;
}

/* Overview Section */
.destination-overview {
    padding: 80px 10%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.overview-content {
    flex: 1;
}
.overview-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #d35400;
}
.highlights ul {
    list-style: none;
    padding: 0;
}
.highlights ul li {
    margin: 8px 0;
}
.highlights ul li i {
    color: #27ae60;
    margin-right: 8px;
}
.overview-image {
    flex: 1;
    text-align: center;
}
.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-legend {
    margin-top: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}
.color-dot.jaipur { background: #e67e22; }
.color-dot.jodhpur { background: #2980b9; }
.color-dot.udaipur { background: #27ae60; }
.color-dot.jaisalmer { background: #f1c40f; }

/* Itinerary */
.itinerary-section {
    padding: 80px 10%;
    background: #fdfdfd;
}
.itinerary-day {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.day-header {
    background: #d35400;
    color: #fff;
    padding: 12px 20px;
}
.day-content {
    display: flex;
    flex-wrap: wrap;
}
.day-content img {
    width: 40%;
    object-fit: cover;
}
.day-description {
    flex: 1;
    padding: 20px;
}
.inclusions ul {
    list-style: none;
    padding: 0;
}
.inclusions ul li {
    margin: 6px 0;
}
.inclusions i {
    color: #27ae60;
    margin-right: 6px;
}

/* Forts */
.forts-section {
    padding: 80px 10%;
    background: #fffaf0;
}
.forts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.fort-card {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.fort-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.fort-info {
    padding: 15px;
}
.fort-info h3 {
    color: #d35400;
    margin-bottom: 10px;
}

/* Hotels */
.hotel-section {
    padding: 80px 10%;
}
.hotel-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.hotel-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.hotel-info {
    padding: 15px;
}
.hotel-rating {
    color: #f1c40f;
    margin: 5px 0;
}

/* Price Section */
.price-section {
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
}
.price-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.price-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
}
.price-card.featured {
    border: 2px solid #d35400;
}
.popular-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #d35400;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 5px;
}
.price-amount {
    font-size: 2rem;
    color: #d35400;
    margin: 15px 0;
}
.price-button {
    display: inline-block;
    padding: 10px 20px;
    background: #d35400;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}
.price-button:hover {
    background: #e67e22;
}

/* Cultural Section */
.cultural-section {
    padding: 80px 10%;
}
.cultural-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
}
.cultural-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.cultural-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.cultural-content {
    padding: 15px;
}

/* Gallery */
.gallery-section {
    padding: 80px 10%;
    background: #fdfdfd;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-item img {
    width: 100%;
    transition: transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 8px;
}

/* FAQ */
.faq-section {
    padding: 80px 10%;
    background: #fffaf0;
}
.faq-item {
    margin-bottom: 20px;
}
.faq-question {
    width: 100%;
    background: #d35400;
    color: #fff;
    padding: 12px;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    display: none;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
}

/* CTA */
.cta-section {
    padding: 60px 10%;
    background: #d35400;
    color: #fff;
    text-align: center;
}
.cta-buttons {
    margin-top: 20px;
}
.cta-button {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background: #fff;
    color: #d35400;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}
.cta-button.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.cta-button:hover {
    background: #f1f1f1;
    color: #d35400;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    header { padding: 10px 5%; }
    .day-content img { width: 100%; }
    .day-description { padding: 15px; }
}
@media (max-width: 768px) {
    .nav-menu ul { 
        display: none; 
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px; right: 10%;
        padding: 20px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .nav-menu ul.active { display: flex; }
    .hamburger { display: flex; }
    .overview-image, .overview-content { flex: 100%; text-align: center; }
}
@media (max-width: 480px) {
    .destination-hero h1 { font-size: 2rem; }
    .hero-meta span { display: block; margin: 5px 0; }
    .price-amount { font-size: 1.5rem; }
}
/* ===============================
   Himachal Tour Page Styles
   =============================== */

/* General Theme */
body.himachal-theme {
    font-family: 'Poppins', sans-serif;
    background: #f8fbff; /* light snow background */
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo img {
    height: 55px;
    border-radius: 5px;
}
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}
.nav-menu ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}
.nav-menu ul li a:hover {
    color: #1e8449; /* alpine green */
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
}

/* Hero Section */
.destination-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.destination-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.destination-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.destination-hero-content {
    position: absolute;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}
.destination-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #5dade2; /* sky blue */
}
.hero-meta span {
    margin: 0 10px;
    display: inline-block;
}

/* Overview Section */
.destination-overview {
    padding: 80px 10%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.overview-content {
    flex: 1;
}
.overview-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1e8449;
}
.highlights ul {
    list-style: none;
    padding: 0;
}
.highlights ul li {
    margin: 8px 0;
}
.highlights ul li i {
    color: #27ae60;
    margin-right: 8px;
}
.overview-image {
    flex: 1;
    text-align: center;
}
.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-legend {
    margin-top: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}
.color-dot.shimla { background: #5dade2; }
.color-dot.manali { background: #27ae60; }
.color-dot.dharamshala { background: #884ea0; }
.color-dot.bir { background: #f1c40f; }

/* Itinerary */
.itinerary-section {
    padding: 80px 10%;
    background: #fdfdfd;
}
.itinerary-day {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.day-header {
    background: #1e8449;
    color: #fff;
    padding: 12px 20px;
}
.day-content {
    display: flex;
    flex-wrap: wrap;
}
.day-content img {
    width: 40%;
    object-fit: cover;
}
.day-description {
    flex: 1;
    padding: 20px;
}
.inclusions ul {
    list-style: none;
    padding: 0;
}
.inclusions ul li {
    margin: 6px 0;
}
.inclusions i {
    color: #27ae60;
    margin-right: 6px;
}

/* Adventure Section */
.adventure-section {
    padding: 80px 10%;
    background: #f8fbff;
}
.adventure-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
}
.adventure-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}
.adventure-card:hover {
    transform: translateY(-5px);
}
.adventure-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.adventure-info {
    padding: 15px;
}
.adventure-info h3 {
    color: #1e8449;
}
.activity-price {
    margin-top: 10px;
    font-weight: bold;
    color: #d35400;
}

/* Hotels */
.hotel-section {
    padding: 80px 10%;
}
.hotel-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.hotel-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.hotel-info {
    padding: 15px;
}
.hotel-rating {
    color: #f1c40f;
    margin: 5px 0;
}

/* Price Section */
.price-section {
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
}
.price-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.price-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
}
.price-card.featured {
    border: 2px solid #1e8449;
}
.popular-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #1e8449;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 5px;
}
.price-amount {
    font-size: 2rem;
    color: #1e8449;
    margin: 15px 0;
}
.price-button {
    display: inline-block;
    padding: 10px 20px;
    background: #1e8449;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}
.price-button:hover {
    background: #27ae60;
}

/* Season Section */
.season-section {
    padding: 80px 10%;
}
.season-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
.season-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.season-card:hover {
    transform: translateY(-5px);
}
.season-card h3 {
    margin-bottom: 10px;
    color: #1e8449;
}

/* Gallery */
.gallery-section {
    padding: 80px 10%;
    background: #fdfdfd;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-item img {
    width: 100%;
    transition: transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 8px;
}

/* FAQ */
.faq-section {
    padding: 80px 10%;
    background: #f8fbff;
}
.faq-item {
    margin-bottom: 20px;
}
.faq-question {
    width: 100%;
    background: #1e8449;
    color: #fff;
    padding: 12px;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    display: none;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
}

/* CTA */
.cta-section {
    padding: 60px 10%;
    background: #1e8449;
    color: #fff;
    text-align: center;
}
.cta-buttons {
    margin-top: 20px;
}
.cta-button {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background: #fff;
    color: #1e8449;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}
.cta-button.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.cta-button:hover {
    background: #f1f1f1;
    color: #1e8449;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    header { padding: 10px 5%; }
    .day-content img { width: 100%; }
    .day-description { padding: 15px; }
}
@media (max-width: 768px) {
    .nav-menu ul { 
        display: none; 
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px; right: 10%;
        padding: 20px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .nav-menu ul.active { display: flex; }
    .hamburger { display: flex; }
    .overview-image, .overview-content { flex: 100%; text-align: center; }
}
@media (max-width: 480px) {
    .destination-hero h1 { font-size: 2rem; }
    .hero-meta span { display: block; margin: 5px 0; }
    .price-amount { font-size: 1.5rem; }
}
/* ===============================
   Kashmir Tour Page Styles
   =============================== */

/* General Theme */
body.kashmir-theme {
    font-family: 'Poppins', sans-serif;
    background: #f9fbfd;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo img {
    height: 55px;
    border-radius: 5px;
}
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}
.nav-menu ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}
.nav-menu ul li a:hover {
    color: #145A32; /* deep green */
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
}

/* Hero Section */
.destination-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.destination-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.destination-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.destination-hero-content {
    position: absolute;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}
.destination-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #2E86C1; /* shikara blue */
}
.hero-meta span {
    margin: 0 10px;
    display: inline-block;
}

/* Overview Section */
.destination-overview {
    padding: 80px 10%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.overview-content {
    flex: 1;
}
.overview-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #145A32;
}
.highlights ul {
    list-style: none;
    padding: 0;
}
.highlights ul li {
    margin: 8px 0;
}
.highlights ul li i {
    color: #27ae60;
    margin-right: 8px;
}
.overview-image {
    flex: 1;
    text-align: center;
}
.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-legend {
    margin-top: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}
.color-dot.srinagar { background: #2E86C1; }
.color-dot.gulmarg { background: #27ae60; }
.color-dot.pahalgam { background: #884ea0; }
.color-dot.sonamarg { background: #D35400; }

/* Itinerary */
.itinerary-section {
    padding: 80px 10%;
    background: #fdfdfd;
}
.itinerary-day {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.day-header {
    background: #145A32;
    color: #fff;
    padding: 12px 20px;
}
.day-content {
    display: flex;
    flex-wrap: wrap;
}
.day-content img {
    width: 40%;
    object-fit: cover;
}
.day-description {
    flex: 1;
    padding: 20px;
}
.inclusions ul {
    list-style: none;
    padding: 0;
}
.inclusions ul li {
    margin: 6px 0;
}
.inclusions i {
    color: #27ae60;
    margin-right: 6px;
}

/* Adventure Section */
.adventure-section {
    padding: 80px 10%;
    background: #f9fbfd;
}
.adventure-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
}
.adventure-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}
.adventure-card:hover {
    transform: translateY(-5px);
}
.adventure-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.adventure-info {
    padding: 15px;
}
.adventure-info h3 {
    color: #145A32;
}
.activity-price {
    margin-top: 10px;
    font-weight: bold;
    color: #D35400;
}

/* Hotels */
.hotel-section {
    padding: 80px 10%;
}
.hotel-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.hotel-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.hotel-info {
    padding: 15px;
}
.hotel-rating {
    color: #f1c40f;
    margin: 5px 0;
}

/* Price Section */
.price-section {
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
}
.price-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.price-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
}
.price-card.featured {
    border: 2px solid #145A32;
}
.popular-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #145A32;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 5px;
}
.price-amount {
    font-size: 2rem;
    color: #145A32;
    margin: 15px 0;
}
.price-button {
    display: inline-block;
    padding: 10px 20px;
    background: #145A32;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}
.price-button:hover {
    background: #27ae60;
}

/* Season Section */
.season-section {
    padding: 80px 10%;
}
.season-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
.season-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.season-card:hover {
    transform: translateY(-5px);
}
.season-card h3 {
    margin-bottom: 10px;
    color: #145A32;
}

/* Gallery */
.gallery-section {
    padding: 80px 10%;
    background: #fdfdfd;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-item img {
    width: 100%;
    transition: transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 8px;
}

/* FAQ */
.faq-section {
    padding: 80px 10%;
    background: #f9fbfd;
}
.faq-item {
    margin-bottom: 20px;
}
.faq-question {
    width: 100%;
    background: #145A32;
    color: #fff;
    padding: 12px;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    display: none;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
}

/* CTA */
.cta-section {
    padding: 60px 10%;
    background: #145A32;
    color: #fff;
    text-align: center;
}
.cta-buttons {
    margin-top: 20px;
}
.cta-button {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background: #fff;
    color: #145A32;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}
.cta-button.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.cta-button:hover {
    background: #f1f1f1;
    color: #145A32;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    header { padding: 10px 5%; }
    .day-content img { width: 100%; }
    .day-description { padding: 15px; }
}
@media (max-width: 768px) {
    .nav-menu ul { 
        display: none; 
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px; right: 10%;
        padding: 20px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .nav-menu ul.active { display: flex; }
    .hamburger { display: flex; }
    .overview-image, .overview-content { flex: 100%; text-align: center; }
}
@media (max-width: 480px) {
    .destination-hero h1 { font-size: 2rem; }
    .hero-meta span { display: block; margin: 5px 0; }
    .price-amount { font-size: 1.5rem; }
}
/* ===============================
   Kerala Tour Page Styles
   =============================== */

/* General Theme */
body.kerala-theme {
    font-family: 'Poppins', sans-serif;
    background: #f9fbfd;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo img {
    height: 55px;
    border-radius: 5px;
}
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}
.nav-menu ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}
.nav-menu ul li a:hover {
    color: #009688;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
}

/* Hero Section */
.destination-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.destination-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.destination-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.destination-hero-content {
    position: absolute;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}
.destination-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #FBC02D;
}
.hero-meta span {
    margin: 0 10px;
    display: inline-block;
}

/* Overview Section */
.destination-overview {
    padding: 80px 10%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.overview-content {
    flex: 1;
}
.overview-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1B5E20;
}
.highlights ul {
    list-style: none;
    padding: 0;
}
.highlights ul li {
    margin: 8px 0;
}
.highlights ul li i {
    color: #009688;
    margin-right: 8px;
}
.overview-image {
    flex: 1;
    text-align: center;
}
.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-legend {
    margin-top: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}
.color-dot.kochi { background: #009688; }
.color-dot.munnar { background: #1B5E20; }
.color-dot.thekkady { background: #FBC02D; }
.color-dot.alleppey { background: #0277BD; }
.color-dot.kovalam { background: #E64A19; }

/* Itinerary */
.itinerary-section {
    padding: 80px 10%;
    background: #fdfdfd;
}
.itinerary-day {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.day-header {
    background: #009688;
    color: #fff;
    padding: 12px 20px;
}
.day-content {
    display: flex;
    flex-wrap: wrap;
}
.day-content img {
    width: 40%;
    object-fit: cover;
}
.day-description {
    flex: 1;
    padding: 20px;
}
.inclusions ul {
    list-style: none;
    padding: 0;
}
.inclusions ul li {
    margin: 6px 0;
}
.inclusions i {
    color: #009688;
    margin-right: 6px;
}
.ayurveda-card {
    background: #e0f2f1;
    padding: 12px;
    margin: 10px 0;
    border-left: 5px solid #009688;
    border-radius: 6px;
}

/* Experiences Section */
.experience-section {
    padding: 80px 10%;
    background: #f9fbfd;
}
.experience-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
}
.experience-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}
.experience-card:hover {
    transform: translateY(-5px);
}
.experience-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.experience-info {
    padding: 15px;
}
.experience-info h3 {
    color: #009688;
}
.activity-price {
    margin-top: 10px;
    font-weight: bold;
    color: #1B5E20;
}

/* Hotels */
.hotel-section {
    padding: 80px 10%;
}
.hotel-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.hotel-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.hotel-info {
    padding: 15px;
}
.hotel-rating {
    color: #FBC02D;
    margin: 5px 0;
}

/* Price Section */
.price-section {
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
}
.price-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.price-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
}
.price-card.featured {
    border: 2px solid #009688;
}
.popular-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #009688;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 5px;
}
.price-amount {
    font-size: 2rem;
    color: #1B5E20;
    margin: 15px 0;
}
.price-button {
    display: inline-block;
    padding: 10px 20px;
    background: #009688;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}
.price-button:hover {
    background: #00796B;
}

/* Season Section */
.season-section {
    padding: 80px 10%;
}
.season-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
.season-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.season-card:hover {
    transform: translateY(-5px);
}
.season-card h3 {
    margin-bottom: 10px;
    color: #009688;
}

/* Gallery */
.gallery-section {
    padding: 80px 10%;
    background: #fdfdfd;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-item img {
    width: 100%;
    transition: transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 8px;
}

/* FAQ */
.faq-section {
    padding: 80px 10%;
    background: #f9fbfd;
}
.faq-item {
    margin-bottom: 20px;
}
.faq-question {
    width: 100%;
    background: #009688;
    color: #fff;
    padding: 12px;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    display: none;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
}

/* CTA */
.cta-section {
    padding: 60px 10%;
    background: #1B5E20;
    color: #fff;
    text-align: center;
}
.cta-buttons {
    margin-top: 20px;
}
.cta-button {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background: #fff;
    color: #1B5E20;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}
.cta-button.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.cta-button:hover {
    background: #f1f1f1;
    color: #1B5E20;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    header { padding: 10px 5%; }
    .day-content img { width: 100%; }
    .day-description { padding: 15px; }
}
@media (max-width: 768px) {
    .nav-menu ul { 
        display: none; 
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px; right: 10%;
        padding: 20px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .nav-menu ul.active { display: flex; }
    .hamburger { display: flex; }
    .overview-image, .overview-content { flex: 100%; text-align: center; }
}
@media (max-width: 480px) {
    .destination-hero h1 { font-size: 2rem; }
    .hero-meta span { display: block; margin: 5px 0; }
    .price-amount { font-size: 1.5rem; }
}
/* ===============================
   Kerala Tour Page Styles
   =============================== */

/* General Theme */
body.kerala-theme {
    font-family: 'Poppins', sans-serif;
    background: #f9fbfd;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo img {
    height: 55px;
    border-radius: 5px;
}
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}
.nav-menu ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}
.nav-menu ul li a:hover {
    color: #009688;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
}

/* Hero Section */
.destination-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.destination-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.destination-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.destination-hero-content {
    position: absolute;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}
.destination-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #FBC02D;
}
.hero-meta span {
    margin: 0 10px;
    display: inline-block;
}

/* Overview Section */
.destination-overview {
    padding: 80px 10%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.overview-content {
    flex: 1;
}
.overview-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1B5E20;
}
.highlights ul {
    list-style: none;
    padding: 0;
}
.highlights ul li {
    margin: 8px 0;
}
.highlights ul li i {
    color: #009688;
    margin-right: 8px;
}
.overview-image {
    flex: 1;
    text-align: center;
}
.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-legend {
    margin-top: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}
.color-dot.kochi { background: #009688; }
.color-dot.munnar { background: #1B5E20; }
.color-dot.thekkady { background: #FBC02D; }
.color-dot.alleppey { background: #0277BD; }
.color-dot.kovalam { background: #E64A19; }

/* Itinerary */
.itinerary-section {
    padding: 80px 10%;
    background: #fdfdfd;
}
.itinerary-day {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.day-header {
    background: #009688;
    color: #fff;
    padding: 12px 20px;
}
.day-content {
    display: flex;
    flex-wrap: wrap;
}
.day-content img {
    width: 40%;
    object-fit: cover;
}
.day-description {
    flex: 1;
    padding: 20px;
}
.inclusions ul {
    list-style: none;
    padding: 0;
}
.inclusions ul li {
    margin: 6px 0;
}
.inclusions i {
    color: #009688;
    margin-right: 6px;
}
.ayurveda-card {
    background: #e0f2f1;
    padding: 12px;
    margin: 10px 0;
    border-left: 5px solid #009688;
    border-radius: 6px;
}

/* Experiences Section */
.experience-section {
    padding: 80px 10%;
    background: #f9fbfd;
}
.experience-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
}
.experience-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}
.experience-card:hover {
    transform: translateY(-5px);
}
.experience-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.experience-info {
    padding: 15px;
}
.experience-info h3 {
    color: #009688;
}
.activity-price {
    margin-top: 10px;
    font-weight: bold;
    color: #1B5E20;
}

/* Hotels */
.hotel-section {
    padding: 80px 10%;
}
.hotel-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.hotel-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.hotel-info {
    padding: 15px;
}
.hotel-rating {
    color: #FBC02D;
    margin: 5px 0;
}

/* Price Section */
.price-section {
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
}
.price-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.price-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
}
.price-card.featured {
    border: 2px solid #009688;
}
.popular-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #009688;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 5px;
}
.price-amount {
    font-size: 2rem;
    color: #1B5E20;
    margin: 15px 0;
}
.price-button {
    display: inline-block;
    padding: 10px 20px;
    background: #009688;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}
.price-button:hover {
    background: #00796B;
}

/* Season Section */
.season-section {
    padding: 80px 10%;
}
.season-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
.season-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.season-card:hover {
    transform: translateY(-5px);
}
.season-card h3 {
    margin-bottom: 10px;
    color: #009688;
}

/* Gallery */
.gallery-section {
    padding: 80px 10%;
    background: #fdfdfd;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-item img {
    width: 100%;
    transition: transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 8px;
}

/* FAQ */
.faq-section {
    padding: 80px 10%;
    background: #f9fbfd;
}
.faq-item {
    margin-bottom: 20px;
}
.faq-question {
    width: 100%;
    background: #009688;
    color: #fff;
    padding: 12px;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    display: none;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
}

/* CTA */
.cta-section {
    padding: 60px 10%;
    background: #1B5E20;
    color: #fff;
    text-align: center;
}
.cta-buttons {
    margin-top: 20px;
}
.cta-button {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background: #fff;
    color: #1B5E20;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}
.cta-button.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.cta-button:hover {
    background: #f1f1f1;
    color: #1B5E20;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    header { padding: 10px 5%; }
    .day-content img { width: 100%; }
    .day-description { padding: 15px; }
}
@media (max-width: 768px) {
    .nav-menu ul { 
        display: none; 
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px; right: 10%;
        padding: 20px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .nav-menu ul.active { display: flex; }
    .hamburger { display: flex; }
    .overview-image, .overview-content { flex: 100%; text-align: center; }
}
@media (max-width: 480px) {
    .destination-hero h1 { font-size: 2rem; }
    .hero-meta span { display: block; margin: 5px 0; }
    .price-amount { font-size: 1.5rem; }
}
/* ===============================
   Uttar Pradesh Tour Page Styles
   =============================== */

/* General Theme */
body.up-theme {
    font-family: 'Poppins', sans-serif;
    background: #fdfbf8;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo img {
    height: 55px;
    border-radius: 5px;
}
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}
.nav-menu ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}
.nav-menu ul li a:hover {
    color: #c62828;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
}

/* Hero Section */
.destination-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.destination-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.destination-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.destination-hero-content {
    position: absolute;
    z-index: 2;
    max-width: 850px;
    padding: 20px;
}
.destination-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #FFD54F;
}
.hero-meta span {
    margin: 0 10px;
    display: inline-block;
}

/* Overview Section */
.destination-overview {
    padding: 80px 10%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.overview-content {
    flex: 1;
}
.overview-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #8e24aa;
}
.highlights ul {
    list-style: none;
    padding: 0;
}
.highlights ul li {
    margin: 8px 0;
}
.highlights ul li i {
    color: #c62828;
    margin-right: 8px;
}
.overview-image {
    flex: 1;
    text-align: center;
}
.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-legend {
    margin-top: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}
.color-dot.varanasi { background: #8e24aa; }
.color-dot.ayodhya { background: #c62828; }
.color-dot.prayagraj { background: #f57c00; }
.color-dot.agra { background: #1565c0; }
.color-dot.mathura { background: #2e7d32; }

/* Itinerary */
.itinerary-section {
    padding: 80px 10%;
    background: #fdfdfd;
}
.itinerary-day {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.day-header {
    background: #c62828;
    color: #fff;
    padding: 12px 20px;
}
.day-content {
    display: flex;
    flex-wrap: wrap;
}
.day-content img {
    width: 40%;
    object-fit: cover;
}
.day-description {
    flex: 1;
    padding: 20px;
}
.inclusions ul {
    list-style: none;
    padding: 0;
}
.inclusions ul li {
    margin: 6px 0;
}
.inclusions i {
    color: #c62828;
    margin-right: 6px;
}
.spiritual-card {
    background: #fff3e0;
    padding: 12px;
    margin: 10px 0;
    border-left: 5px solid #f57c00;
    border-radius: 6px;
}

/* Experiences */
.experience-section {
    padding: 80px 10%;
    background: #f9fbfd;
}
.experience-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
}
.experience-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}
.experience-card:hover {
    transform: translateY(-5px);
}
.experience-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.experience-info {
    padding: 15px;
}
.experience-info h3 {
    color: #c62828;
}
.activity-price {
    margin-top: 10px;
    font-weight: bold;
    color: #2e7d32;
}

/* Hotels */
.hotel-section {
    padding: 80px 10%;
}
.hotel-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.hotel-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    display:block;
}
.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.hotel-info {
    padding: 15px;
}
.hotel-rating {
    color: #FFD54F;
    margin: 5px 0;
}
/* Price Section */
.price-section {
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
}
.price-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.price-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
}
.price-card.featured {
    border: 2px solid #c62828;
}
.popular-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #c62828;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 5px;
}
.price-amount {
    font-size: 2rem;
    color: #2e7d32;
    margin: 15px 0;
}
.price-button {
    display: inline-block;
    padding: 10px 20px;
    background: #c62828;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}
.price-button:hover {
    background: #8e0000;
}

/* Season Section */
.season-section {
    padding: 80px 10%;
}
.season-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
.season-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.season-card:hover {
    transform: translateY(-5px);
}
.season-card h3 {
    margin-bottom: 10px;
    color: #c62828;
}

/* Gallery */
.gallery-section {
    padding: 80px 10%;
    background: #fdfdfd;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-item img {
    width: 100%;
    transition: transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 8px;
}

/* FAQ */
.faq-section {
    padding: 80px 10%;
    background: #f9fbfd;
}
.faq-item {
    margin-bottom: 20px;
}
.faq-question {
    width: 100%;
    background: #c62828;
    color: #fff;
    padding: 12px;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    display: none;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
}

/* CTA */
.cta-section {
    padding: 60px 10%;
    background: #8e24aa;
    color: #fff;
    text-align: center;
}
.cta-buttons {
    margin-top: 20px;
}
.cta-button {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background: #fff;
    color: #8e24aa;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}
.cta-button.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.cta-button:hover {
    background: #f1f1f1;
    color: #8e24aa;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    header { padding: 10px 5%; }
    .day-content img { width: 100%; }
    .day-description { padding: 15px; }
}
@media (max-width: 768px) {
    .nav-menu ul { 
        display: none; 
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px; right: 10%;
        padding: 20px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .nav-menu ul.active { display: flex; }
    .hamburger { display: flex; }
    .overview-image, .overview-content { flex: 100%; text-align: center; }
}
@media (max-width: 480px) {
    .destination-hero h1 { font-size: 2rem; }
    .hero-meta span { display: block; margin: 5px 0; }
    .price-amount { font-size: 1.5rem; }
}
/* ===============================
   Grand Canyon Adventure Styles
   =============================== */

/* General Theme */
body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo img {
    height: 55px;
    border-radius: 5px;
}
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}
.nav-menu ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}
.nav-menu ul li a:hover {
    color: #d84315;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
}

/* Hero Section */
.adventure-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.adventure-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.adventure-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.adventure-hero-content {
    position: absolute;
    z-index: 2;
    max-width: 850px;
    padding: 20px;
}
.adventure-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffcc80;
}
.adventure-meta span {
    margin: 0 10px;
    display: inline-block;
}

/* Adventure Content */
.adventure-content {
    padding: 80px 10%;
}
.container {
    display: flex;
    gap: 40px;
}
.adventure-main {
    flex: 2;
}
.adventure-main h2, 
.adventure-main h3 {
    margin-top: 20px;
    color: #d84315;
}
.itinerary .day {
    margin: 20px 0;
    background: #fff;
    padding: 15px;
    border-left: 5px solid #ff7043;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.itinerary .day h4 {
    margin-bottom: 10px;
}
.itinerary ul {
    padding-left: 20px;
}
.included {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 15px;
    margin-top: 20px;
}
.included-item {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}
.included-item i {
    color: #2e7d32;
}

/* Booking Section */
.booking-section {
    margin: 30px 0;
    text-align: center;
}
.book-now-btn {
    display: inline-block;
    background: #d84315;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.book-now-btn:hover {
    background: #b71c1c;
}

/* Sidebar */
.adventure-sidebar {
    flex: 1;
}
.sidebar-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.sidebar-card h3 {
    margin-bottom: 15px;
    color: #d84315;
}
.fact-item {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fact-item i {
    color: #ff7043;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(120px,1fr));
    gap: 10px;
}
.gallery-grid img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 25px 10%;
    margin-top: 40px;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    .container { flex-direction: column; }
    header { padding: 10px 5%; }
}
@media (max-width: 768px) {
    .nav-menu ul { 
        display: none; 
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px; right: 10%;
        padding: 20px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .nav-menu ul.active { display: flex; }
    .hamburger { display: flex; }
}
@media (max-width: 480px) {
    .adventure-hero h1 { font-size: 2rem; }
    .adventure-meta span { display: block; margin: 5px 0; }
    .book-now-btn { padding: 10px 20px; font-size: 0.9rem; }
}
/* ===============================
   Whale Watching Adventure Page CSS
   =============================== */

/* Hero Section */
.adventure-hero {
  position: relative;
  text-align: center;
  color: #fff;
}
.adventure-hero-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.adventure-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.adventure-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}
.adventure-hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.adventure-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.adventure-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 1rem;
}
.adventure-meta i {
  color: #ffcc00;
  margin-right: 6px;
}

/* Content Layout */
.adventure-content .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding: 40px 20px;
}
.adventure-main h2,
.adventure-main h3 {
  color: #222;
  margin-bottom: 15px;
}
.adventure-main p {
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Itinerary */
.itinerary .day {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f8f8;
  border-left: 4px solid #0077b6;
  border-radius: 6px;
}
.itinerary .day h4 {
  margin-bottom: 10px;
  color: #0077b6;
}
.itinerary ul {
  padding-left: 20px;
}
.itinerary ul li {
  margin-bottom: 8px;
}

/* What's Included */
.included {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.included-item i {
  color: green;
}

/* Booking Button */
.booking-section {
  margin-top: 25px;
}
.book-now-btn {
  display: inline-block;
  background: #0077b6;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.book-now-btn:hover {
  background: #023e8a;
}

/* Sidebar */
.adventure-sidebar .sidebar-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.sidebar-card h3 {
  margin-bottom: 15px;
  color: #0077b6;
}
.fact-item,
.wildlife-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.fact-item i,
.wildlife-item i {
  color: #0077b6;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 6px;
  height: 120px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
  .adventure-content .container {
    grid-template-columns: 1fr;
  }
  .adventure-meta {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .adventure-hero-content h1 {
    font-size: 1.8rem;
  }
  .book-now-btn {
    width: 100%;
    text-align: center;
  }
}
/* ===============================
   Snorkeling in Hawaii Page CSS
   =============================== */

/* Hero Section */
.adventure-hero {
  position: relative;
  text-align: center;
  color: #fff;
}
.adventure-hero-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.adventure-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.adventure-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}
.adventure-hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.adventure-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.adventure-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 1rem;
}
.adventure-meta i {
  color: #ffcc00;
  margin-right: 6px;
}

/* Content Layout */
.adventure-content .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding: 40px 20px;
}
.adventure-main h2,
.adventure-main h3 {
  color: #222;
  margin-bottom: 15px;
}
.adventure-main p {
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Itinerary */
.itinerary .day {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f8f8;
  border-left: 4px solid #0077b6;
  border-radius: 6px;
}
.itinerary .day h4 {
  margin-bottom: 10px;
  color: #0077b6;
}
.itinerary ul {
  padding-left: 20px;
}
.itinerary ul li {
  margin-bottom: 8px;
}

/* What's Included */
.included {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.included-item i {
  color: green;
}

/* Booking Button */
.booking-section {
  margin-top: 25px;
}
.book-now-btn {
  display: inline-block;
  background: #0077b6;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.book-now-btn:hover {
  background: #023e8a;
}

/* Sidebar */
.adventure-sidebar .sidebar-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.sidebar-card h3 {
  margin-bottom: 15px;
  color: #0077b6;
}
.fact-item,
.wildlife-item,
.tip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.fact-item i,
.wildlife-item i,
.tip-item i {
  color: #0077b6;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 6px;
  height: 120px;
  object-fit: cover;
}

/* Tips Card */
.tips-card {
  background: #eaf9ff;
  border-left: 4px solid #0096c7;
}
.tips-card h3 {
  color: #0096c7;
}

/* Responsive */
@media (max-width: 1024px) {
  .adventure-content .container {
    grid-template-columns: 1fr;
  }
  .adventure-meta {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .adventure-hero-content h1 {
    font-size: 1.8rem;
  }
  .book-now-btn {
    width: 100%;
    text-align: center;
  }
}
/* 🌍 Adventure Tours Page CSS */

/* ===== Hero Section ===== */
.adventures-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.adventures-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.adventures-hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.adventures-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.adventures-hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* ===== Intro Section ===== */
.adventures-intro {
  padding: 60px 20px;
  text-align: center;
}

.adventures-intro h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.adventures-intro p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: auto;
}

/* ===== Adventure Grid ===== */
.adventure-category {
  margin: 60px 0;
}

.adventure-category h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
  border-left: 5px solid #ff5722;
  padding-left: 10px;
}

.adventure-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 25px;
}

.adventure-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.adventure-card:hover {
  transform: translateY(-5px);
}

.adventure-image {
  position: relative;
}

.adventure-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.adventure-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff5722;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: bold;
}

.adventure-content {
  padding: 20px;
}

.adventure-content h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #222;
}

.adventure-meta {
  font-size: 0.95rem;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
}

.adventure-meta i {
  color: #ff5722;
  margin-right: 5px;
}

.adventure-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}

.adventure-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
}

.adventure-features span {
  background: #f3f3f3;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #444;
}

.adventure-actions {
  display: flex;
  gap: 12px;
}

.adventure-button {
  flex: 1;
  text-align: center;
  padding: 10px 15px;
  background: #ff5722;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.adventure-button:hover {
  background: #e64a19;
}

.adventure-button.outline {
  background: transparent;
  border: 2px solid #ff5722;
  color: #ff5722;
}

.adventure-button.outline:hover {
  background: #ff5722;
  color: #fff;
}

/* ===== CTA Section ===== */
.adventure-cta {
  background: linear-gradient(135deg, #ff7043, #ff5722);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
  border-radius: 15px;
}

.adventure-cta h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.adventure-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button {
  background: #fff;
  color: #ff5722;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-button:hover {
  background: #f1f1f1;
}

.cta-button.outline {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.cta-button.outline:hover {
  background: #fff;
  color: #ff5722;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .adventures-hero-content h1 {
    font-size: 2.5rem;
  }

  .adventure-meta {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .adventures-hero {
    height: 55vh;
  }

  .adventures-hero-content h1 {
    font-size: 2rem;
  }

  .adventures-hero-content p {
    font-size: 1rem;
  }

  .adventure-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .adventures-hero-content h1 {
    font-size: 1.6rem;
  }

  .adventure-button {
    font-size: 0.9rem;
    padding: 10px;
  }

  .adventure-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}
/* ==============================
   Tour Details Page CSS
   ============================== */

/* Hero Section */
.tour-details-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.tour-details-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.tour-details-hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.tour-details-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.tour-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 1.1rem;
}

.tour-meta i {
  color: #ff5722;
  margin-right: 6px;
}

/* Page Layout */
.tour-details-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding: 50px 20px;
  max-width: 1300px;
  margin: auto;
}

/* Main Content */
.tour-main-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #222;
}

.tour-main-content h3 {
  margin-top: 25px;
  margin-bottom: 12px;
  color: #444;
}

/* Highlights */
.tour-highlights {
  margin-bottom: 40px;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  background: #fafafa;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.highlight-card:hover {
  background: #f5f5f5;
}

.highlight-icon {
  font-size: 1.8rem;
  color: #ff5722;
  margin-right: 15px;
}

.highlight-card h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

/* Description */
.tour-description p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.tour-description ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.tour-description ul li {
  margin-bottom: 8px;
  list-style: disc;
}

/* Itinerary */
.tour-itinerary {
  margin-top: 40px;
}

.itinerary-day {
  background: #f8f8f8;
  padding: 18px;
  border-left: 4px solid #ff5722;
  border-radius: 6px;
  margin-bottom: 20px;
}

.itinerary-day h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ff5722;
}

.day-number {
  background: #ff5722;
  color: #fff;
  border-radius: 50%;
  padding: 4px 10px;
  margin-right: 10px;
}

/* Sidebar */
.tour-sidebar .booking-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 25px;
}

.booking-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #222;
}

.price {
  font-size: 1.8rem;
  color: #ff5722;
  font-weight: 700;
  margin-bottom: 5px;
}

.booking-form {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.booking-form input,
.booking-form select {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.book-now-btn {
  background: #ff5722;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.book-now-btn:hover {
  background: #e64a19;
}

.tour-info {
  margin-top: 20px;
}

.tour-info h4 {
  margin-bottom: 12px;
  color: #444;
}

.tour-info p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #555;
}

.tour-info i {
  color: #ff5722;
  margin-right: 8px;
}

/* Why Book */
.why-book {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
}

.why-book h4 {
  margin-bottom: 12px;
}

.why-book ul {
  padding-left: 20px;
}

.why-book ul li {
  margin-bottom: 8px;
  list-style: disc;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
}

.close-modal {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tour-details-container {
    grid-template-columns: 1fr;
  }

  .tour-meta {
    flex-direction: column;
    gap: 8px;
  }

  .tour-details-hero-content h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .tour-details-hero {
    height: 45vh;
  }

  .tour-details-hero-content h1 {
    font-size: 1.8rem;
  }

  .tour-meta {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .tour-details-hero-content h1 {
    font-size: 1.5rem;
  }

  .booking-form {
    gap: 8px;
  }

  .book-now-btn {
    font-size: 0.9rem;
    padding: 10px;
  }
}
