/* -----------------------------------------------------------
   Global Reset & Base Styles
----------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #f7fafc;
}

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

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

button {
  font-family: inherit;
}

/* -----------------------------------------------------------
   Layout & Header
----------------------------------------------------------- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sticky transparent header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
  background: transparent;
}

.site-header.scrolled {
  background-color: rgba(15, 23, 42, 0.94);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.45);
}

.site-header-inner {
  padding: 0.85rem 0;
}

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

.navbar-logo a {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: #f9fafb;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-main a {
  position: relative;
  padding-bottom: 0.15rem;
  color: #e5e7eb;
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #f97316;
  transition: width 0.2s ease;
}

.nav-main a:hover::after {
  width: 100%;
}

.nav-cta a {
  background-color: #f97316;
  color: #ffffff;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
}

.nav-toggle {
  display: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #e5e7eb;
  margin-bottom: 4px;
}

/* Mobile Nav - Hidden by default on Desktop */
.mobile-nav {
  display: none; 
}

/* Hide mobile nav inside Elementor editor */
.elementor-editor-active .mobile-nav {
  display: none !important;
}

/* -----------------------------------------------------------
   Hero Section
----------------------------------------------------------- */
.hero {
  position: relative;
  /* Updated to https to prevent mixed content warnings */
  background-image: url('https://mytourpackage.com/wp-content/uploads/2025/11/pexels-rajendra-2702627-scaled.jpg');
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.4));
  width: 100%;
  padding: 5rem 0 4rem; /* extra top to offset fixed header */
}

.hero-content {
  max-width: 640px;
}

.hero-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: #f97316;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.98rem;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.35);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s ease;
}

.btn-primary:hover {
  background-color: #ea580c;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
}

.btn-secondary {
  background-color: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-weight: 500;
  border: 1px solid rgba(148, 163, 184, 0.6);
  cursor: pointer;
  font-size: 0.95rem;
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  backdrop-filter: blur(8px);
}

.hero-meta {
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  opacity: 0.9;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background-color: #e5e7eb;
  opacity: 0.7;
}

/* -----------------------------------------------------------
   Benefits Section
----------------------------------------------------------- */
.benefits {
  background-color: #ffffff;
  padding: 1.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.benefit-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.benefit-text {
  font-size: 0.85rem;
  color: #4b5563;
}

/* -----------------------------------------------------------
   General Section Components
----------------------------------------------------------- */
.section {
  padding: 3.25rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
}

/* -----------------------------------------------------------
   Packages
----------------------------------------------------------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.package-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
}

.package-body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.package-location {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6b7280;
}

.package-title {
  font-weight: 600;
}

.package-meta {
  font-size: 0.9rem;
  color: #6b7280;
}

.package-price {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.package-footer {
  margin-top: 0.75rem;
}

.package-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #f97316;
}

/* -----------------------------------------------------------
   Themes
----------------------------------------------------------- */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.theme-pill {
  background-color: #ffffff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e5e7eb;
}

/* -----------------------------------------------------------
   Steps
----------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step-card {
  background-color: #ffffff;
  padding: 1.25rem 1.4rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: #f97316;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.step-text {
  font-size: 0.9rem;
  color: #6b7280;
}

/* -----------------------------------------------------------
   Testimonials
----------------------------------------------------------- */
.testimonials {
  background-color: #0f172a;
  color: #e5e7eb;
}

.testimonials .section-title {
  color: #ffffff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.testimonial-card {
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.08), rgba(15, 23, 42, 0.95));
  border-radius: 1rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.testimonial-text {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

/* -----------------------------------------------------------
   FAQ
----------------------------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.faq-answer {
  font-size: 0.9rem;
  color: #6b7280;
}

/* -----------------------------------------------------------
   Footer & Misc
----------------------------------------------------------- */
.site-footer {
  background-color: #0b1120;
  color: #9ca3af;
  padding: 2rem 0 1.5rem;
  font-size: 0.85rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #1f2937;
  padding-top: 1rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 99;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background-color: #25d366;
  color: #ffffff;
  font-size: 1.6rem;
  box-shadow: 0 12px 30px rgba(15,23,42,0.4);
}

/* Blog */
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
}

.blog-card-body {
  padding: 1rem 1.25rem 1.25rem;
}

/* -----------------------------------------------------------
   Responsive Media Queries
----------------------------------------------------------- */

/* Tablet & Smaller (Max 900px) */
@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .themes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps,
  .testimonial-grid,
  .faq-grid,
  .blog-list {
    grid-template-columns: 1fr;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
  }
}

/* Mobile Navigation Breakpoint (Max 768px) */
@media (max-width: 768px) {
  /* Hide desktop elements */
  .nav-main,
  .nav-cta {
    display: none;
  }

  /* Show toggle */
  .nav-toggle {
    display: block;
  }

  /* Configure mobile nav container */
  .mobile-nav {
    position: fixed;
    top: 56px;
    right: 0;
    left: 0;
    background-color: rgba(15, 23, 42, 0.98);
    padding: 0.75rem 1.5rem 1.2rem;
    display: none; /* Initially hidden */
    flex-direction: column;
    gap: 0.75rem;
  }

  .mobile-nav a {
    color: #e5e7eb;
    font-size: 0.95rem;
  }

  /* Show mobile nav when class is added via JS */
  .mobile-nav.show {
    display: flex;
  }
}

/* Small Mobile (Max 640px) */
@media (max-width: 640px) {
  .hero-overlay {
    padding: 5.5rem 0 3rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .themes-grid {
    grid-template-columns: 1fr;
  }
}