/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Open+Sans:wght@400;600&display=swap");

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  background: #fff;
  color: #222;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin: 0 0 18px 0;
}

/* Navbar */
header {
  background: #232323;
  color: #fff;
  padding: 0;
  box-shadow: none;
  border-bottom: 1px solid #ececec;
}
.navbar {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-size: 30px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  transition: color 0.2s;
}
nav ul li a:hover {
  color: #ff8500;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;
  background: url("images/hero.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 28, 28, 0.42);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 8vw;
  padding: 60px 0;
}
.hero-content h1 {
  font-size: 2.9rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-content .hero-btn {
  margin-top: 30px;
  background: #fff;
  color: #ff8500;
  border: none;
  border-radius: 30px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(255, 133, 0, 0.08),
    0 1.5px 6px rgba(0, 0, 0, 0.04);
  transition: background 0.2s, color 0.2s;
}
.hero-content .hero-btn:hover {
  background: #ff8500;
  color: #fff;
}

/* Section Styles */
section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 70px 0 50px 0;
}
.section-title {
  color: #ff8500;
  font-size: 1.15rem;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: #ff8500;
  border-radius: 2px;
  margin-top: 7px;
  margin-left: 2px;
}

/* Card Grid */
.card-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255, 133, 0, 0.14);
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-content {
  padding: 22px 18px 18px 18px;
}
.card-content h3 {
  color: #222;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.card-content .price {
  color: #ff8500;
  font-weight: bold;
  margin-top: 10px;
  font-size: 1.1rem;
}

/* Orange Button */
.btn-orange {
  background: #ff8500;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255, 133, 0, 0.08),
    0 1.5px 6px rgba(0, 0, 0, 0.04);
  transition: background 0.18s;
}
.btn-orange:hover {
  background: #222;
  color: #ff8500;
}

/* Testimonials & FAQ */
.testimonials,
.faq,
.blog-section {
  max-width: 1440px;
  margin: 50px auto;
  padding: 40px 32px;
  background: #f8f8f8;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.testimonials .section-inner,
.faq .section-inner,
.blog-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 36px;
  padding-right: 36px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .testimonials .section-inner,
  .faq .section-inner,
  .blog-section .section-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 600px) {
  .testimonials .section-inner,
  .faq .section-inner,
  .blog-section .section-inner {
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media (max-width: 900px) {
  .testimonials,
  .faq,
  .blog-section {
    margin: 32px auto;
    padding: 30px 16px;
  }
}
@media (max-width: 600px) {
  .testimonials,
  .faq,
  .blog-section {
    margin: 18px auto;
    padding: 16px 6px;
  }
}
.testimonial-item {
  display: flex;
  gap: 20px;
  align-items: center;
}
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-content {
  background: #fff7ed;
  border-radius: 10px;
  padding: 18px 20px 12px 20px;
  position: relative;
  box-shadow: 0 2px 8px rgba(255, 133, 0, 0.05);
  font-size: 1.05rem;
  color: #444;
}
.testimonial-content::before {
  content: "\201C";
  color: #ff8500;
  font-size: 2.6rem;
  position: absolute;
  top: -18px;
  left: 10px;
  font-family: "Playfair Display", serif;
}
.testimonial-content p {
  font-style: italic;
  margin-top: 10px;
  color: #333;
}

.faq-list {
  margin-top: 16px;
}
.faq-item {
  margin-bottom: 18px;
  border-radius: 8px;
  transition: background 0.18s, box-shadow 0.18s;
}
.faq-question {
  font-weight: 600;
  cursor: pointer;
  color: #222;
  transition: color 0.18s;
}
.faq-answer {
  color: #666;
  margin-top: 6px;
  display: none;
}
.faq-item.active {
  background: #fff7ed;
  box-shadow: 0 2px 8px rgba(255, 133, 0, 0.08);
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question {
  color: #ff8500;
}

/* Blog Section */
.blog-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.blog-card {
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.18s;
}
.blog-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255, 133, 0, 0.14);
}
.blog-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}
.blog-card .blog-content {
  padding: 14px 10px 10px 10px;
}
.blog-card .blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Blog Section Styles for Landing Page */
.blog-section .blog-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1240px;
}
.blog-section .blog-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 260px;
  max-width: 280px;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .blog-section .blog-grid {
    max-width: 900px;
  }
  
  .blog-section .blog-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .blog-section .blog-card {
    flex: 0 0 calc(50% - 10px);
    max-width: none;
  }
}
@media (max-width: 576px) {
  .blog-section .blog-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .blog-section .blog-card {
    flex: 0 0 100%;
    max-width: 320px;
    margin-bottom: 20px;
  }
  
  .blog-section .blog-card:last-child {
    margin-bottom: 0;
  }
}

/* Orange CTA Banner */
.cta-banner {
  background: #ff8500;
  color: #fff;
  text-align: center;
  padding: 38px 0;
  font-size: 1.4rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

/* Footer */
footer {
  background: #f4f4f4;
  color: #222;
  padding: 40px 0 20px 0;
  font-size: 0.97rem;
}
.footer-cols {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  border-top: 1.5px solid #ececec;
  border-bottom: 1.5px solid #ececec;
  padding-top: 38px;
  padding-bottom: 18px;
  gap: 0;
}
.footer-col {
  flex: 1 1 180px;
  min-width: 120px;
  border-right: 1.5px solid #ececec;
  padding-right: 32px;
  margin-right: 32px;
}
.footer-col:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-col ul li a:hover {
  color: #ff8500;
  text-decoration: underline;
}
.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(255, 133, 0, 0.09);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  border: 2px solid #ececec;
  font-size: 0;
  padding: 0;
}
.footer-social-link svg {
  width: 28px;
  height: 28px;
  display: block;
}
.footer-social-link:hover {
  background: #ff8500;
  box-shadow: 0 4px 16px rgba(255, 133, 0, 0.18);
  transform: scale(1.08) translateY(-2px);
  border-color: #ff8500;
}
.footer-social-link:hover svg path,
.footer-social-link:hover svg rect,
.footer-social-link:hover svg circle {
  filter: brightness(1.15) contrast(1.1);
}
@media (max-width: 600px) {
  .footer-socials {
    gap: 10px;
  }
  .footer-social-link {
    width: 38px;
    height: 38px;
  }
  .footer-social-link svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 900px) {
  .footer-cols {
    flex-direction: column;
    gap: 28px;
    padding-top: 18px;
    padding-bottom: 8px;
  }
  .footer-col {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 18px;
  }
}

.footer-bottom {
  text-align: center;
  color: #888;
  margin-top: 18px;
  font-size: 0.92rem;
}

/* Universal horizontal spacing for all main containers - updated for 1440px */
.main-container,
.navbar,
.footer-cols,
section,
.testimonials,
.faq,
.blog-section {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(12px, 4vw, 32px);
  padding-right: clamp(12px, 4vw, 32px);
  box-sizing: border-box;
}

@media (max-width: 1440px) {
  .main-container,
  .navbar,
  .footer-cols,
  section,
  .testimonials,
  .faq,
  .blog-section {
    max-width: 100vw;
  }
}

/* Remove old/duplicate padding rules */
section,
.navbar,
.footer-cols,
.testimonials,
.faq,
.blog-section {
  padding-left: unset;
  padding-right: unset;
}

@media (max-width: 600px) {
  .main-container,
  .navbar,
  .footer-cols,
  section,
  .testimonials,
  .faq,
  .blog-section {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Smooth transitions for interactive elements */
a,
button,
.card,
.blog-card,
.faq-question,
.footer-socials img {
  transition: all 0.18s cubic-bezier(0.4, 2, 0.6, 1);
}

/* Responsive */
@media (max-width: 900px) {
  .blog-grid,
  .card-grid,
  .footer-cols {
    flex-direction: column;
    gap: 18px;
  }
  .hero-content {
    margin-left: 0;
    padding: 40px 0;
  }
  section {
    padding: 40px 0 30px 0;
  }
}
@media (max-width: 600px) {
  .hero-content {
    padding: 24px 0;
  }
  section {
    padding: 24px 0 16px 0;
  }
}

/* --- Redesigned Destinations Section --- */
.destination-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.destination-card.glass-card {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.13);
  overflow: hidden;
  position: relative;
  transition: transform 0.22s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.22s;
  backdrop-filter: blur(8px);
}
.destination-card.glass-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 16px 48px rgba(255, 133, 0, 0.18);
}
.dest-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.dest-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.4, 2, 0.6, 1);
}
.destination-card.glass-card:hover .dest-image-wrap img {
  transform: scale(1.09) rotate(-1deg);
}
.dest-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  box-shadow: 0 2px 10px rgba(255, 133, 0, 0.1);
  backdrop-filter: blur(3px);
}
.dest-icon {
  font-size: 2rem;
  margin-right: 10px;
  filter: drop-shadow(0 2px 4px #ff850055);
}
.dest-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: #222;
  flex: 1;
}
.price-badge {
  background: linear-gradient(90deg, #ff8500 60%, #ffbc70 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(255, 133, 0, 0.13);
  letter-spacing: 1px;
}

/* --- Redesigned Testimonials Section --- */
.testimonial-carousel {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.testimonial-card.glass-card {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.13);
  padding: 32px 28px 22px 28px;
  max-width: 390px;
  min-width: 300px;
  position: relative;
  transition: transform 0.22s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.22s;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-card.glass-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 16px 48px rgba(255, 133, 0, 0.18);
}
.testimonial-avatar-wrap {
  position: relative;
  margin-bottom: 16px;
}
.testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 18px rgba(255, 133, 0, 0.15);
  border: 3px solid #fff7ed;
}
.floating-quote {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.5rem;
  color: #ff8500cc;
  opacity: 0.85;
  pointer-events: none;
  text-shadow: 0 2px 8px #ff850055;
  z-index: 2;
  animation: floatQuote 2.5s ease-in-out infinite alternate;
}
@keyframes floatQuote {
  0% {
    top: -28px;
  }
  100% {
    top: -38px;
  }
}
.testimonial-content {
  background: transparent;
  border-radius: 10px;
  padding: 0;
  position: relative;
  box-shadow: none;
  font-size: 1.1rem;
  color: #444;
  text-align: center;
}
.testimonial-content strong {
  color: #ff8500;
  font-size: 1.09rem;
}
.testimonial-role {
  color: #888;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .destination-masonry,
  .testimonial-carousel {
    gap: 18px;
  }
  .testimonial-card.glass-card {
    max-width: 100%;
    min-width: 220px;
  }
}
@media (max-width: 600px) {
  .destination-masonry,
  .testimonial-carousel {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card.glass-card {
    padding: 18px 8px 12px 8px;
  }
}

/* --- Masonry Testimonials Section --- */
.testimonials-masonry-bg {
  background: linear-gradient(120deg, #fff7ed 60%, #ffecd2 100%);
  padding: 70px 0 50px 0;
}
.testimonials-masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 36px;
}
.testimonial-card {
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(31, 38, 135, 0.09), 0 2px 18px #b9b9b933;
  padding: 32px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 40px rgba(255, 133, 0, 0.13), 0 4px 24px #ff850033;
}
.tc-featured {
  grid-column: span 2;
  min-height: 320px;
  color: #fff;
  position: relative;
}
.tc-featured.tc-orange {
  background: linear-gradient(135deg, #ff8500 70%, #ffbc70 100%);
}
.tc-featured.tc-purple {
  background: linear-gradient(135deg, #6d4aff 70%, #a084fd 100%);
}
.tc-featured.tc-darkblue {
  background: linear-gradient(135deg, #313860 65%, #232946 100%);
}
.tc-accent {
  background: linear-gradient(135deg, #ffb347 65%, #ff8500 100%);
  color: #fff;
}
.tc-dark {
  background: #313860;
  color: #fff;
}
.tc-light {
  background: #fff;
  color: #222;
  border: 1.5px solid #ececec;
}
.tc-last {
  grid-row: span 2;
}
.testimonial-avatar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.testimonial-avatar-masonry {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(31, 38, 135, 0.1);
}
.testimonial-name {
  font-weight: 700;
  font-size: 1.08rem;
  color: inherit;
}
.testimonial-role {
  font-size: 0.98rem;
  color: #d1d1d1;
}
.tc-light .testimonial-role {
  color: #888;
}
.testimonial-text {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 4px;
  color: inherit;
}
.tc-featured-text {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 4px;
  color: inherit;
}
.testimonial-detail {
  font-size: 1.01rem;
  color: inherit;
  opacity: 0.96;
  margin-top: 8px;
  line-height: 1.6;
}
.testimonial-quote-icon {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 4.5rem;
  color: #fff3;
  z-index: 0;
  pointer-events: none;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 1200px) {
  .testimonials-masonry-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tc-featured {
    grid-column: span 2;
  }
}
@media (max-width: 900px) {
  .testimonials-masonry-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tc-featured {
    grid-column: span 1;
  }
  .tc-last {
    grid-row: span 1;
  }
}

/* About Page Styles */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 28, 28, 0.5);
  z-index: 1;
}

.about-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.about-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.about-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-story {
  padding: 80px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  margin-top: 40px;
  align-items: center;
}

.about-lead {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
  font-weight: 600;
}

.about-story-content p {
  margin-bottom: 25px;
  line-height: 1.7;
}

.about-story-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

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

.about-value-card {
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 133, 0, 0.15);
}

.about-value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ff8500;
}

.about-team {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-team .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 133, 0, 0.15);
}

.team-img-wrap {
  height: 280px;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

.team-card h3 {
  font-size: 1.3rem;
  margin: 20px 0 5px;
  color: #333;
}

.team-role {
  color: #ff8500;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-bio {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

.about-stats {
  padding: 70px 0;
  background: linear-gradient(120deg, #ff8500, #ffb347);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.stat-title {
  font-size: 1.1rem;
  opacity: 0.9;
}

.about-cta {
  padding: 80px 0;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: #666;
}

/* Active nav state */
nav ul li a.active {
  color: #ff8500;
  font-weight: 700;
}

/* Responsive Styles for About Page */
@media (max-width: 900px) {
  .about-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  
  .about-story-image {
    order: -1;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .about-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .about-hero {
    height: 50vh;
  }
  
  .about-hero-content h1 {
    font-size: 2rem;
  }
  
  .about-lead {
    font-size: 1.1rem;
  }
  
  .about-values {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/* Destinations Page Styles */
.destinations-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.destinations-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.destinations-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.destinations-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.destinations-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.destinations-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.featured-destinations {
  padding: 80px 0;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.destination-card-large {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  height: 450px;
}

.destination-card-large:hover {
  transform: translateY(-10px);
}

.destination-img-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}

.destination-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 30px 20px;
  color: #fff;
  transition: all 0.3s;
}

.destination-card-large:hover .destination-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%);
  padding-bottom: 50px;
}

.destination-details h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #fff;
}

.destination-details p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 15px;
}

.destination-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.destination-price {
  font-weight: 700;
  color: #ff8500;
}

.destination-duration {
  opacity: 0.8;
}

.destination-card-large .btn-orange {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
}

.destination-card-large:hover .btn-orange {
  opacity: 1;
  transform: translateY(0);
}

.destinations-categories {
  padding: 80px 0;
  background: #f8f9fa;
}

.destinations-categories .section-inner,
.destinations-map .section-inner,
.destinations-continents .section-inner,
.destinations-cta .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.category-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 133, 0, 0.15);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.category-card h3 {
  color: #333;
  margin-bottom: 15px;
}

.category-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.category-link {
  color: #ff8500;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.2s;
}

.category-link:hover {
  color: #e67700;
}

.destinations-continents {
  padding: 80px 0;
}

.continent-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 30px;
}

.continent-tab {
  background: none;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.2s;
}

.continent-tab:hover {
  color: #ff8500;
}

.continent-tab.active {
  background: #ff8500;
  color: #fff;
}

.continent-content {
  display: none;
}

.continent-content.active {
  display: block;
}

.continent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.continent-destination {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.continent-destination:hover {
  transform: translateY(-8px);
}

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

.continent-destination h3 {
  font-size: 1.1rem;
  margin: 15px 15px 5px;
  color: #333;
}

.continent-destination p {
  font-size: 0.9rem;
  color: #666;
  margin: 0 15px 15px;
}

.destinations-map {
  padding: 80px 0;
  background: #f8f9fa;
}

.map-intro {
  max-width: 700px;
  margin: 20px auto 40px;
  text-align: center;
  color: #666;
}

.map-container {
  position: relative;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.placeholder-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-note {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: #666;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  margin: 0 auto;
  width: 80%;
  border-radius: 5px;
}

.destinations-cta {
  padding: 80px 0 100px 0;
  text-align: center;
  background: linear-gradient(120deg, #fff7ed 60%, #ffecd2 100%);
  margin-bottom: 40px;
}

.destinations-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.destinations-cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: #666;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: #ff8500;
  border: 2px solid #ff8500;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255, 133, 0, 0.08),
    0 1.5px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  background: #ff8500;
  color: #fff;
}

/* Responsive Styles for Destinations Page */
@media (max-width: 900px) {
  .destinations-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .destination-card-large {
    height: 380px;
  }
  
  .continent-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 600px) {
  .destinations-hero {
    height: 50vh;
  }
  
  .destinations-hero-content h1 {
    font-size: 2rem;
  }
  
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  
  .continent-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .continent-tab {
    width: 80%;
  }
  
  .map-container {
    height: 300px;
  }
}

/* Packages Page Styles */
.packages-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.packages-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.packages-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.packages-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.packages-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.packages-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.filter-section {
  background: #fff;
  padding: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 5;
  margin-top: -50px;
}

.filter-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.filter-group {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
}

.filter-group label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #666;
}

.filter-group select {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f8f8;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
  cursor: pointer;
}

.filter-btn {
  flex: 0 0 auto;
  align-self: flex-end;
  background: #ff8500;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.filter-btn:hover {
  background: #e67700;
}

.packages-featured,
.packages-categories,
.seasonal-offers,
.custom-packages,
.packages-testimonials,
.packages-faq,
.packages-cta {
  padding: 80px 0;
}

.packages-categories,
.packages-testimonials {
  background: #f8f9fa;
}

.packages-featured .section-inner,
.packages-categories .section-inner,
.seasonal-offers .section-inner,
.custom-packages .section-inner,
.packages-testimonials .section-inner,
.packages-faq .section-inner,
.packages-cta .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.package-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

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

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff8500;
  color: #fff;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  z-index: 2;
}

.package-img-wrap {
  height: 200px;
  overflow: hidden;
}

.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.package-card:hover .package-img-wrap img {
  transform: scale(1.05);
}

.package-content {
  padding: 25px;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.package-duration, .package-type {
  font-size: 0.9rem;
  color: #777;
}

.duration-icon {
  font-style: normal;
  margin-right: 5px;
}

.package-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #333;
}

.package-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.package-feature {
  font-size: 0.9rem;
  color: #666;
}

.package-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.package-price {
  display: flex;
  flex-direction: column;
}

.price-from {
  font-size: 0.8rem;
  color: #777;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff8500;
}

.price-per {
  font-size: 0.8rem;
  color: #777;
}

.package-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.package-type-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.package-type-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.package-type-card h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.package-type-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.package-type-link {
  color: #ff8500;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.package-type-link:hover {
  color: #e67700;
}

.season-banner {
  display: flex;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  max-width: 1140px;
  margin: 0 auto;
}

.season-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.season-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.season-content p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.season-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

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

.custom-packages {
  background: linear-gradient(120deg, #fff7ed 60%, #ffecd2 100%);
}

.custom-package-container {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.custom-package-content {
  flex: 1;
}

.custom-package-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #555;
}

.custom-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.custom-benefits li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #555;
}

.custom-package-image {
  flex: 1;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.packages-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.package-testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.package-testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-rating {
  color: #ff8500;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.testimonial-author h4 {
  font-size: 1rem;
  margin: 0 0 5px 0;
  color: #333;
}

.testimonial-author p {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ff8500;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.packages-cta {
  padding: 80px 0 100px 0;
  text-align: center;
  background: linear-gradient(120deg, #fff7ed 60%, #ffecd2 100%);
  margin-bottom: 40px;
}

.packages-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.packages-cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: #666;
}

.packages-cta .cta-buttons {
  margin-top: 30px;
}

/* Responsive Styles for Packages Page */
@media (max-width: 900px) {
  .packages-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .filter-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .filter-group {
    width: 100%;
  }
  
  .filter-btn {
    width: 100%;
  }
  
  .season-banner {
    flex-direction: column;
  }
  
  .season-image {
    min-height: 250px;
  }
  
  .custom-package-container {
    flex-direction: column;
  }
  
  .custom-package-image {
    order: -1;
    height: 300px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .packages-hero {
    height: 50vh;
  }
  
  .packages-hero-content h1 {
    font-size: 2rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .packages-testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-section {
    margin-top: -30px;
  }
  
  .package-types-grid {
    grid-template-columns: 1fr;
  }
  
  .season-content {
    padding: 30px 20px;
  }
  
  .packages-cta h2 {
    font-size: 1.8rem;
  }
}

/* Blog Page Styles */
.blog-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.blog-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.blog-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.blog-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.blog-filters {
  background: #fff;
  padding: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 5;
  margin-top: -50px;
}

.blog-filters .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.blog-filter-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.blog-search {
  display: flex;
  gap: 10px;
}

.blog-search input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
}

.search-btn {
  background: #ff8500;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.search-btn:hover {
  background: #e67700;
}

.blog-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.category-label {
  font-weight: 600;
  color: #555;
  font-size: 0.95rem;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-category-tag {
  display: inline-block;
  padding: 6px 15px;
  background: #f5f5f5;
  border-radius: 20px;
  color: #666;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}

.blog-category-tag:hover {
  background: #ff85001a;
  color: #ff8500;
}

.blog-category-tag.active {
  background: #ff8500;
  color: #fff;
}

.blog-featured,
.blog-main,
.blog-subscribe,
.instagram-feed {
  padding: 80px 0;
}

.blog-featured .section-inner,
.blog-main .section-inner,
.blog-subscribe .section-inner,
.instagram-feed .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.blog-featured-post {
  display: flex;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.featured-post-img {
  flex: 1;
  min-height: 400px;
  position: relative;
}

.featured-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.featured-post-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.post-category {
  color: #ff8500;
  font-weight: 600;
  font-size: 0.9rem;
}

.post-date {
  color: #888;
  font-size: 0.9rem;
}

.featured-post-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.featured-post-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
  flex-grow: 1;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.post-stats {
  display: flex;
  gap: 15px;
}

.post-stat {
  font-size: 0.85rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.stat-icon {
  font-style: normal;
  margin-right: 5px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.blog-post-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 133, 0, 0.15);
}

.post-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-post-card:hover .post-img img {
  transform: scale(1.05);
}

.post-category-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #ff8500;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.post-content {
  padding: 25px;
}

.post-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.post-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

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

.read-more {
  color: #ff8500;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.read-more:hover {
  color: #e67700;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 50px;
}

.pagination-arrow,
.pagination-number,
.pagination-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.pagination-arrow {
  font-size: 1.2rem;
}

.pagination-arrow:hover,
.pagination-number:hover {
  background: #ff85001a;
  color: #ff8500;
}

.pagination-number.active {
  background: #ff8500;
  color: #fff;
}

.pagination-arrow.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-dots {
  background: none;
  cursor: default;
}

.blog-subscribe {
  background: linear-gradient(120deg, #fff7ed 60%, #ffecd2 100%);
}

.subscribe-container {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.subscribe-content {
  flex: 1;
}

.subscribe-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #333;
}

.subscribe-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #555;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.subscribe-form input {
  flex: 1;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
}

.subscribe-note {
  font-size: 0.85rem;
  color: #888;
}

.subscribe-image {
  flex: 1;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.subscribe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-feed {
  text-align: center;
}

.instagram-intro {
  max-width: 600px;
  margin: 20px auto 40px;
  font-size: 1.1rem;
  color: #666;
}

.instagram-link {
  color: #ff8500;
  text-decoration: none;
  font-weight: 600;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1140px;
  margin: 0 auto;
}

.instagram-item {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: block;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.instagram-item:hover img {
  transform: scale(1.05);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-stats {
  display: flex;
  gap: 15px;
  color: #fff;
  font-size: 0.9rem;
}

.insta-icon {
  font-style: normal;
  margin-right: 5px;
}

/* Responsive Styles for Blog Page */
@media (max-width: 900px) {
  .blog-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .blog-featured-post {
    flex-direction: column;
  }
  
  .featured-post-img {
    height: 250px;
    position: static;
  }
  
  .featured-post-img img {
    position: static;
  }
  
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .subscribe-container {
    flex-direction: column;
  }
  
  .subscribe-image {
    order: -1;
    height: 250px;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-hero {
    height: 50vh;
  }
  
  .blog-hero-content h1 {
    font-size: 2rem;
  }
  
  .blog-filters {
    margin-top: -30px;
  }
  
  .blog-search {
    flex-direction: column;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .instagram-intro {
    font-size: 1rem;
  }
}

/* Contact Page Styles */
.contact-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.contact-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.contact-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.contact-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-info {
  padding: 80px 0;
  background: #f9f9f9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-blocks {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
}

.contact-block {
  flex: 1;
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 133, 0, 0.15);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-block h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.contact-block p {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.contact-detail {
  display: block;
  color: #ff8500;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 15px 0;
  text-decoration: none;
}

.hours, .response-time {
  font-size: 0.85rem;
  color: #888;
  margin: 5px 0;
}

.contact-form-section {
  padding: 80px 0;
  background: #fff;
}

.contact-intro {
  max-width: 700px;
  margin: 20px auto 40px;
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-form-container {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  align-items: flex-start;
}

.contact-form {
  flex: 1;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

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

.full-width {
  width: 100%;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  color: #333;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ff8500;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.checkbox-label {
  font-size: 0.9rem;
  font-weight: normal;
  color: #666;
}

.checkbox-label a {
  color: #ff8500;
  text-decoration: none;
}

.contact-form button {
  margin-top: 10px;
  padding: 14px 30px;
}

.contact-image {
  flex: 1;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-section {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

.map-section h2 {
  margin-bottom: 40px;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
}

.map-placeholder {
  position: relative;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.map-overlay p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-intro {
  max-width: 700px;
  margin: 20px auto 50px;
  text-align: center;
  color: #666;
  font-size: 1.1rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #f9f9f9;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #ff8500;
  font-weight: 700;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fff;
}

.faq-answer p {
  padding: 20px 0;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Responsive Styles for Contact Page */
@media (max-width: 900px) {
  .contact-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .contact-info-blocks {
    flex-direction: column;
  }
  
  .contact-form-container {
    flex-direction: column;
  }
  
  .contact-image {
    order: -1;
    height: 300px;
    margin-bottom: 30px;
  }
  
  .map-placeholder {
    height: 300px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    height: 50vh;
  }
  
  .contact-hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
}

/* Blog Grid View All Button */
.blog-view-all {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Update FAQ styles on homepage to match contact page */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #f9f9f9;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #ff8500;
  font-weight: 700;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fff;
}

.faq-answer p {
  padding: 20px 0;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Remove underlines from buttons across pages */
.btn-orange,
.btn-outline,
.cta-button,
.seasonal-cta a,
.custom-travel-cta a,
.package-cta-btn,
.all-packages-btn,
.stats-cta a,
.destination-card a,
.continent-cta a,
.map-overlay a,
.featured-packages-cta a {
  text-decoration: none;
}

/* Page Transition Effects */
body {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.page-loaded {
  opacity: 1;
}

body.transition-active {
  opacity: 0;
}

.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.transition-active .page-transition {
  opacity: 1;
  visibility: visible;
}

/* Summer deals button icon styling */
.deal-icon {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.1em;
  vertical-align: middle;
  transform: rotate(-15deg);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: rotate(-15deg) scale(1); }
  50% { transform: rotate(-15deg) scale(1.1); }
  100% { transform: rotate(-15deg) scale(1); }
}

/* Package types grid styling update for 8 cards */
.package-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .package-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .package-types-grid {
    grid-template-columns: 1fr;
  }
}

/* Button with icon at far right end */
.btn-with-icon {
  position: relative;
  padding-right: 40px;
  text-align: left;
  display: inline-flex;
  align-items: center;
}

.btn-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.btn-with-icon:hover .btn-icon {
  transform: translateY(-50%) translateX(3px);
}

/* Mobile Navigation Enhancement */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 10px;
  }
  
  .navbar nav ul {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .navbar nav ul li a {
    padding: 8px 12px;
    display: block;
    color: #333; /* Ensuring text is visible */
  }
}

/* Responsive Image Handling */
img {
  max-width: 100%;
  height: auto;
}

/* Better Form Responsiveness */
@media (max-width: 480px) {
  input, 
  select, 
  textarea,
  .btn-orange,
  .btn-outline {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
  
  .filter-btn {
    width: 100%;
  }
}

/* Improved Spacing for Mobile */
@media (max-width: 576px) {
  .section-inner {
    padding: 0 20px;
  }
  
  section {
    padding: 40px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  p {
    font-size: 0.95rem;
  }
}

/* Optimizations for Large Screens */
@media (min-width: 1440px) {
  .section-inner {
    max-width: 1320px;
  }
  
  p {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

/* Touch-friendly Targets */
@media (max-width: 768px) {
  .btn-orange,
  .btn-outline,
  .filter-btn,
  .package-pricing a,
  .cta-buttons a,
  .blog-btn,
  .package-type-link,
  .navbar nav ul li a {
    padding: 12px 20px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .filter-group select,
  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    height: 44px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero-btn,
  .btn-orange,
  .btn-outline,
  .footer,
  .cta-banner,
  form,
  iframe {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  img {
    max-width: 500px;
  }
  
  a {
    text-decoration: none;
    color: #000;
  }
  
  a::after {
    content: " (" attr(href) ")";
    font-size: 0.9em;
  }
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 100;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }
  
  .navbar {
    padding: 15px 20px;
    position: relative;
  }
  
  .navbar nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 99;
    padding-top: 70px;
    overflow-y: auto;
  }
  
  .navbar nav.active {
    right: 0;
  }
  
  .navbar nav ul {
    flex-direction: column;
    padding: 0 20px;
  }
  
  .navbar nav ul li {
    margin: 0;
    width: 100%;
  }
  
  .navbar nav ul li a {
    padding: 15px 0;
    display: block;
    border-bottom: 1px solid #eee;
    width: 100%;
    text-align: left;
    color: #333; /* Ensuring text is visible */
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
    display: none;
  }
  
  .overlay.active {
    display: block;
  }
}

/* Responsive Typography */
body {
  font-size: 16px;
}

@media (max-width: 1200px) {
  body {
    font-size: 15px;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 992px) {
  body {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  p, li, a, button, input, select, textarea {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 14px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  p, li, a, button, input, select, textarea {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 0.85rem;
  }
}

@media (max-width: 375px) {
  body {
    font-size: 13px;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
}

/* Mobile Full-width Fixes */
@media (max-width: 768px) {
  .section-inner,
  .container,
  .testimonials-container,
  .destinations-container,
  .package-container,
  .blog-container,
  .featured-post,
  .blog-grid,
  .contact-container,
  .footer-content {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  
  .hero,
  .about-hero,
  .destinations-hero,
  .packages-hero,
  .blog-hero,
  .contact-hero {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  
  .hero img,
  .about-hero img,
  .destinations-hero img,
  .packages-hero img,
  .blog-hero img,
  .contact-hero img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
  }
  
  /* Remove double padding */
  section {
    padding: 40px 0;
  }
  
  .section-inner > div,
  .container > div {
    padding: 0;
    margin-bottom: 20px;
  }
  
  /* Fix card layouts */
  .package-card,
  .blog-card,
  .destination-card,
  .package-type,
  .testimonial-card {
    width: 100%;
    margin: 0 0 20px 0;
  }
  
  /* Fix grid layouts */
  .row,
  .blog-grid,
  .package-types-grid,
  .featured-destinations,
  .category-grid,
  .team-grid,
  .instagram-grid {
    display: block;
    margin: 0;
    padding: 0;
  }
  
  .col,
  .col-6,
  .col-4,
  .col-3,
  .col-8 {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  
  /* Fill edge to edge on very small screens */
  @media (max-width: 480px) {
    .section-inner,
    .container {
      padding-left: 10px;
      padding-right: 10px;
    }
    
    body {
      overflow-x: hidden;
    }
    
    .navbar {
      padding: 15px 10px;
    }
    
    /* Ensure the hamburger is positioned correctly */
    .hamburger-menu {
      right: 10px;
    }
  }
}

/* Additional Mobile Edge-to-Edge Fixes */
@media (max-width: 768px) {
  body, html {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  
  header {
    width: 100%;
    left: 0;
    right: 0;
  }
  
  /* Ensure content touches edges */
  .hero-content,
  .about-content,
  .destinations-content,
  .package-content,
  .blog-content,
  .contact-content {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  /* Fix inline styles that cause spacing issues */
  #about [style*="display: flex"] {
    display: block !important;
    width: 100% !important;
    gap: 0 !important;
  }
  
  #about [style*="flex: 1"] {
    width: 100% !important;
    margin-bottom: 20px;
  }
  
  #about [style*="display: flex; gap: 18px"] {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 20px;
  }
  
  #about img {
    width: 150px !important;
    height: 150px !important;
  }

  /* Testimonials section fix */
  .testimonials-masonry-grid {
    display: block !important;
    margin: 20px 0 !important;
  }
  
  .testimonial-card {
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  
  /* Blog section fix */
  .blog-grid {
    display: block !important;
  }
  
  .blog-card {
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  
  /* Fix footer layout */
  .footer-cols {
    display: block !important;
    gap: 0 !important;
  }
  
  .footer-col {
    width: 100% !important;
    margin-bottom: 30px !important;
  }
}

/* Further optimize landing page on very small screens */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
    padding: 0 10px;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 200px;
  }
  
  #about h2 {
    font-size: 1.5rem;
  }
  
  #about img {
    width: 120px !important;
    height: 120px !important;
  }
}

/* Additional Landing Page Section Fixes */
@media (max-width: 768px) {
  /* Container and section fixes */
  .section-inner {
    padding: 0 15px;
  }
  
  /* Fix for destinations section on homepage */
  .destinations-masonry {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
  }
  
  .destinations-masonry img,
  .destinations-masonry .destination-card {
    width: 100% !important;
    margin-bottom: 15px !important;
  }
  
  /* Fix for special offers section */
  .special-offers-grid {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .special-offer-card {
    width: 100% !important;
    margin-bottom: 15px !important;
  }
  
  /* Fix inline styles */
  [style*="margin-left"] {
    margin-left: 0 !important;
  }
  
  [style*="margin-right"] {
    margin-right: 0 !important;
  }
  
  /* Fix any multi-column layouts */
  .row {
    display: block !important;
  }
  
  .column {
    width: 100% !important;
    margin-bottom: 20px !important;
  }
}

/* What We Serve & Testimonials Mobile Fixes */
@media (max-width: 768px) {
  /* What We Serve section fixes */
  #destinations {
    padding: 40px 15px;
  }
  
  #destinations h2 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
  }
  
  #destinations .section-title {
    text-align: center;
    display: block;
    margin-bottom: 10px;
  }
  
  .destination-masonry {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    gap: 20px !important;
    margin: 0 !important;
  }
  
  .destination-card {
    width: 100% !important;
    height: auto !important;
    margin: 0 0 15px 0 !important;
  }
  
  .dest-image-wrap {
    height: 220px !important;
    width: 100% !important;
  }
  
  .dest-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  
  /* Testimonials section fixes */
  .testimonials {
    padding: 40px 0;
  }
  
  .testimonials .section-title,
  .testimonials h2 {
    text-align: center;
    padding: 0 15px;
  }
  
  .testimonials-masonry-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin: 20px 15px !important;
    width: auto !important;
  }
  
  .testimonial-card {
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  
  .testimonial-card.tc-featured {
    order: -1; /* Move featured testimonial to top on mobile */
  }
  
  .testimonial-avatar-row {
    align-items: center;
  }
  
  .testimonial-avatar-masonry {
    width: 50px !important;
    height: 50px !important;
  }
  
  .testimonial-text,
  .testimonial-detail {
    font-size: 0.9rem !important;
    margin-top: 10px !important;
  }
  
  /* Fix for multiple testimonials */
  .testimonial-card:nth-child(n+4) {
    display: none; /* Hide extra testimonials on mobile */
  }
}

/* Extra small screen adjustments */
@media (max-width: 480px) {
  .testimonial-detail {
    display: none; /* Hide long text on very small screens */
  }
  
  .dest-image-wrap {
    height: 180px !important;
  }
  
  .testimonial-card {
    padding: 15px !important;
  }
}

/* Aggressive Edge-to-Edge Fix for Landing Page */
@media (max-width: 768px) {
  body, html {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Force every section to be edge-to-edge */
  section, 
  .section-inner,
  .container,
  #about,
  #destinations,
  .testimonials,
  .blog-section,
  footer {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  /* Reset any nested containers */
  section .section-inner,
  .container .container,
  .section-inner .section-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Fix any absolutely positioned elements */
  [style*="position: absolute"],
  [style*="position:absolute"] {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }
  
  /* Reset flexbox properties that might cause uneven spacing */
  [style*="flex:"],
  [style*="flex-basis:"],
  [style*="flex-grow:"],
  [style*="flex-shrink:"] {
    flex: none !important;
    width: 100% !important;
  }
  
  /* Fix any card or content element widths */
  .destination-card,
  .testimonial-card,
  .blog-card,
  .dest-image-wrap,
  .testimonial-text,
  .blog-content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix any row items that might have uneven margins */
  .row > *,
  .testimonials-masonry-grid > *,
  .destination-masonry > *,
  .blog-grid > * {
    margin: 0 0 20px 0 !important;
    width: 100% !important;
  }
  
  /* Fix any images */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* Fix for very specific edge cases */
@media (max-width: 480px) {
  /* Reduce padding on small screens */
  section, 
  .section-inner,
  .container,
  #about,
  #destinations,
  .testimonials,
  .blog-section,
  footer {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  
  /* Ensure hero content is properly spaced */
  .hero-content {
    left: 0 !important;
    padding: 0 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ff8500;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #e67800;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.back-to-top:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Form Validation Styles */
.error-message {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  margin-bottom: 10px;
}

.success-message {
  color: #28a745;
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 4px;
  padding: 15px;
  margin-top: 20px;
  text-align: center;
}

.is-invalid {
  border-color: #dc3545 !important;
  background-color: rgba(220, 53, 69, 0.05) !important;
}
