/* ==================== GLOBAL STYLES ==================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 100px 8%;
}

/* ==================== PRELOADER ==================== */

#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.loader {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.2);
  border-top: 8px solid gold;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* ==================== HEADER & NAVIGATION ==================== */

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.logo h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.logo span {
  color: gold;
}

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

nav ul li a {
  color: #fff;
  font-size: 15px;
  transition: 0.4s;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
}

nav ul li a:hover,
nav ul li a.active {
  color: gold;
  background: rgba(255, 215, 0, 0.1);
}

.menu-icon {
  display: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
}

.menu-icon.active {
  color: gold;
}

.header-btns {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 13px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.4s;
}

.gold-btn {
  background: gold;
  color: #000;
}

.gold-btn:hover {
  background: #f0ad00;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.white-btn {
  background: #fff;
  color: #000;
}

.white-btn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}

.green-btn {
  background: #25d366;
  color: #fff;
}

.green-btn:hover {
  background: #1ebc57;
  transform: translateY(-3px);
}

/* ==================== HERO SECTION ==================== */

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 20px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 215, 0, 0.9);
  color: #000;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: slideUp 0.8s ease;
}

.hero-content h1 {
  font-size: 75px;
  line-height: 1.2;
  margin-bottom: 25px;
  animation: slideUp 1s ease;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: slideUp 1.2s ease;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideUp 1.4s ease;
}

.hero-btn {
  display: inline-block;
  padding: 16px 40px;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== SEARCH BOX ==================== */

.search-box {
  width: 85%;
  margin: -60px auto 0;
  background: #fff;
  position: relative;
  z-index: 10;
  padding: 35px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.search-card label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.search-card input,
.search-card select {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.search-card input:focus,
.search-card select:focus {
  outline: none;
  border-color: gold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.search-btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  padding: 15px;
  transition: 0.3s;
  align-self: flex-end;
}

.search-btn:hover {
  background: gold;
  color: #000;
  transform: translateY(-3px);
}

/* ==================== SECTION TITLE ==================== */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 50px;
  margin-bottom: 15px;
  color: #222;
}

.section-title p {
  font-size: 18px;
  color: #666;
}

/* ==================== ABOUT SECTION ==================== */

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: 20px;
  height: 500px;
  object-fit: cover;
  width: 100%;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-content h2 {
  font-size: 50px;
  margin-bottom: 20px;
  color: #222;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.9;
  color: #555;
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.stat {
  flex: 1;
  background: gold;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  min-width: 180px;
}

.stat h3 {
  font-size: 35px;
  margin-bottom: 10px;
  color: #000;
}

/* ==================== DESTINATIONS SECTION ==================== */

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

.destination-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  background: #fff;
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

.destination-info {
  padding: 25px;
}

.destination-info h3 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #222;
}

.destination-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-btn {
  padding: 12px 25px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.card-btn:hover {
  background: gold;
  color: #000;
  transform: translateY(-3px);
}

/* ==================== SERVICES SECTION ==================== */

.services {
  background: #f8f8f8;
}

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

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 65px;
  margin-bottom: 20px;
  color: gold;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #222;
}

.service-card p {
  line-height: 1.8;
  color: #666;
}

/* ==================== PACKAGES SECTION ==================== */

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.package-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

.package-content {
  padding: 25px;
}

.package-content h3 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #222;
}

.package-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.price {
  font-size: 35px;
  color: goldenrod;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ==================== GALLERY SECTION ==================== */

.gallery {
  background: #111;
}

.gallery .section-title h2,
.gallery .section-title p {
  color: #fff;
}

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

.gallery-grid img {
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ==================== TESTIMONIALS SECTION ==================== */

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

.testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card h3 {
  margin-bottom: 15px;
  color: #222;
}

.testimonial-card p {
  color: #666;
  line-height: 1.8;
}

/* ==================== NEWSLETTER SECTION ==================== */

.newsletter {
  background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1200&auto=format&fit=crop') center/cover;
  position: relative;
  text-align: center;
  color: #fff;
}

.newsletter::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
}

.newsletter-content {
  position: relative;
  z-index: 2;
}

.newsletter-content h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 20px;
  max-width: 700px;
  margin: auto;
  margin-top: 30px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 18px;
  border: none;
  border-radius: 10px;
  min-width: 250px;
  font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
  padding: 18px 35px;
  background: gold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #f0ad00;
  transform: translateY(-3px);
}

/* ==================== CONTACT SECTION ==================== */

.contact {
  background: #000;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
}

.contact-left h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

.contact-left p {
  line-height: 1.9;
  margin-bottom: 25px;
  color: #ccc;
}

.contact-details p {
  margin-bottom: 15px;
  color: #ccc;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 18px;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.contact-form button {
  padding: 18px;
  border: none;
  border-radius: 10px;
  background: gold;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #f0ad00;
  transform: translateY(-3px);
}

.form-container {
  max-width: 600px;
  margin: 0 auto 40px;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #222;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: gold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.submit-btn {
  padding: 15px 50px;
  background: gold;
  color: #000;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
  min-width: 250px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  background: #f0ad00;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 15px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  min-width: 250px;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  background: #1ebc57;
}

.info-box {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 15px;
  margin-top: 40px;
}

.info-box h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #222;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-item {
  text-align: center;
}

.contact-item i {
  font-size: 40px;
  color: gold;
  margin-bottom: 15px;
}

.contact-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.contact-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.location-section {
  background: #f0f0f0;
  padding: 100px 8%;
  margin-top: 60px;
}

.location-section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 30px;
  color: #222;
}

.map-container {
  max-width: 800px;
  margin: auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ==================== CATEGORIES ==================== */

.categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 12px 28px;
  border: 2px solid #ddd;
  background: #fff;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.4s;
  font-size: 14px;
}

.category-btn:hover,
.category-btn.active {
  border-color: gold;
  background: gold;
  color: #000;
}

/* ==================== BLOG GRID ==================== */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #f0f0f0;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: gold;
  color: #000;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 12px;
}

.blog-content {
  padding: 25px;
}

.blog-category {
  color: gold;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.blog-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.blog-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
}

.blog-description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.read-more {
  padding: 10px 25px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.read-more:hover {
  background: gold;
  color: #000;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: gold;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

.cta-section {
  background: linear-gradient(135deg, #000, #1a1a1a);
  color: #fff;
  padding: 60px 8%;
  text-align: center;
  margin-top: 60px;
}

.cta-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  padding: 15px 50px;
  background: gold;
  color: #000;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  background: #f0ad00;
}

/* ==================== FOOTER ==================== */

footer {
  background: #111;
  color: #fff;
  padding: 80px 8% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-box h3 {
  margin-bottom: 20px;
  color: gold;
  font-size: 18px;
}

.footer-box p {
  line-height: 1.8;
  color: #ccc;
  font-size: 14px;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 12px;
}

.footer-box ul li a {
  color: #ccc;
  transition: 0.3s;
  font-size: 14px;
}

.footer-box ul li a:hover {
  color: gold;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  color: #aaa;
  font-size: 14px;
}

/* ==================== SIDEBAR BUTTONS ==================== */

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 30px;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.book-now-btn {
  position: fixed;
  left: 25px;
  bottom: 30px;
  width: 70px;
  height: 70px;
  background: gold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  text-align: center;
  padding: 5px;
}

.book-now-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

/* ==================== HOTEL STYLES ==================== */

.hotel-region {
  margin-bottom: 70px;
}

.hotel-region h3 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #0d1b2a;
  border-left: 6px solid gold;
  padding-left: 15px;
}

.hotel-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.hotel-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.hotel-info {
  padding: 20px;
}

.hotel-info h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.hotel-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.hotel-rating {
  color: gold;
  margin-bottom: 15px;
  font-size: 14px;
}

.hotel-price {
  font-size: 24px;
  color: gold;
  font-weight: 700;
  margin-bottom: 15px;
}

/* ==================== TABLE STYLES ==================== */

.table-container {
  overflow-x: auto;
  margin: 30px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

table thead {
  background: #000;
  color: #fff;
}

table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

table tbody tr:hover {
  background: #f9f9f9;
}

/* ==================== ANIMATIONS ==================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ==================== MOBILE RESPONSIVE ==================== */

@media (max-width: 1024px) {
  header {
    padding: 15px 4%;
  }

  .logo h2 {
    font-size: 16px;
  }

  nav ul {
    gap: 15px;
  }

  nav ul li a {
    font-size: 13px;
  }

  section {
    padding: 80px 4%;
  }

  .hero-content h1 {
    font-size: 55px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 40px;
  }

  .search-box {
    width: 95%;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 12px 4%;
  }

  .logo {
    gap: 8px;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo h2 {
    font-size: 14px;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav.active {
    max-height: 500px;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
  }

  nav ul li {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul li a {
    font-size: 16px;
  }

  .menu-icon {
    display: block;
  }

  .hero {
    height: 60vh;
    margin-top: 60px;
  }

  .hero-content h1 {
    font-size: 35px;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .hero-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .search-box {
    width: 100%;
    margin: -40px auto 0;
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .search-btn {
    align-self: auto;
    width: 100%;
  }

  section {
    padding: 60px 4%;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 14px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image img {
    height: 300px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .destination-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }

  .gallery-grid img {
    height: 200px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-left h2 {
    font-size: 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    min-width: 100%;
  }

  .form-container {
    padding: 20px;
  }

  .submit-btn,
  .whatsapp-btn {
    width: 100%;
    min-width: 100%;
  }

  .button-group {
    flex-direction: column;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 50px 4% 20px;
  }

  .footer-grid {
    gap: 25px;
  }

  .footer-box h3 {
    font-size: 16px;
  }

  .footer-box p,
  .footer-box ul li a {
    font-size: 12px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    height: 300px;
  }

  .cta-section {
    padding: 40px 4%;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 14px;
  }

  .whatsapp,
  .book-now-btn {
    width: 55px;
    height: 55px;
    right: 10px;
    left: auto;
    bottom: 20px;
    font-size: 12px;
  }

  .book-now-btn {
    left: 10px;
    right: auto;
  }

  .hotel-region h3 {
    font-size: 24px;
  }

  table {
    font-size: 12px;
  }

  table th,
  table td {
    padding: 10px;
  }
}

/* Slightly refine destination images when used inside .destination articles */
.destination .gallery-grid img {
  border-radius: 12px;
  height: auto;
  max-height: 420px;
}

@media (max-width: 480px) {
  header {
    padding: 10px 3%;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  .logo h2 {
    font-size: 12px;
  }

  .hero {
    height: 50vh;
    margin-top: 55px;
  }

  .hero-tag {
    font-size: 12px;
    padding: 8px 18px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 12px;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .search-box {
    margin: -30px auto 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .destination-grid,
  .service-grid,
  .package-grid,
  .testimonial-grid {
    gap: 15px;
  }

  .about-content h2,
  .contact-left h2 {
    font-size: 22px;
  }

  .service-icon {
    font-size: 45px;
  }

  .price {
    font-size: 24px;
  }

  .cta-btn,
  .submit-btn,
  .whatsapp-btn,
  .card-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .form-container {
    padding: 15px;
  }

  footer {
    padding: 30px 3% 15px;
  }

  .footer-grid {
    gap: 15px;
  }

  .footer-box h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .location-section {
    padding: 60px 4%;
  }

  .location-section h2 {
    font-size: 24px;
  }

  .map-container iframe {
    height: 250px;
  }

  .whatsapp,
  .book-now-btn {
    width: 50px;
    height: 50px;
    font-size: 11px;
  }

  .newsletter-content h2 {
    font-size: 28px;
  }

  table {
    font-size: 10px;
  }

  table th,
  table td {
    padding: 8px 5px;
  }
}

/* ------------------------- LIGHTBOX STYLES ------------------------- */
#lightboxOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
#lightboxOverlay .lightbox-inner{
  position: relative;
  max-width: 1100px;
  width: 95%;
}
.lightbox-img{
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.lightbox-close, .lightbox-prev, .lightbox-next{
  position: absolute;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 10px 14px;
  font-size: 22px;
  border-radius: 8px;
  cursor: pointer;
  top: 10px;
}
.lightbox-close{ right: 10px; }
.lightbox-prev{ left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox-next{ right: 10px; top: 50%; transform: translateY(-50%); }

/* ------------------------- BOOKING MODAL ------------------------- */
.modal{ position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,0.6); z-index: 99998; }
.modal.open{ display: flex; }
.modal-content{ background: #fff; padding: 30px; border-radius: 12px; max-width: 680px; width: 95%; position: relative; }
.modal-content h3{ margin-bottom: 12px; }
.modal-close{ position: absolute; right: 12px; top: 12px; background: transparent; border: none; font-size: 20px; cursor: pointer; }
.modal-content .form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-content input, .modal-content textarea{ width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; }
.modal-content textarea{ min-height: 120px; }
.modal-content .modal-actions{ display:flex; gap:12px; justify-content:flex-end; margin-top:12px; }

@media (max-width:768px){
  .modal-content .form-row{ grid-template-columns: 1fr; }
}

.logo img{
width:180px;
height:auto;
object-fit:contain;
}
@media(max-width:991px){

nav{
position:absolute;
top:80px;
left:0;
width:100%;
background:#000;
display:none;
flex-direction:column;
padding:20px 0;
}

nav.active{
display:flex;
}

nav ul{
flex-direction:column;
gap:15px;
text-align:center;
}
}