/* ==========================================================================
   DECCAN JOURNEYS — MAIN STYLESHEET
   A premium travel & tourism website
   Color Palette: Primary #0F4C81 | Secondary #FF9800 | Accent #00A86B
   Font: Poppins (Google Fonts)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS RESET & BASE
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333333;
  background-color: #F8F9FA;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   2. CSS VARIABLES (DESIGN TOKENS)
   -------------------------------------------------------------------------- */
:root {
  --color-primary: #0F4C81;
  --color-primary-light: #1D6FB8;
  --color-primary-dark: #0A3A63;
  --color-secondary: #FF9800;
  --color-secondary-light: #FFB74D;
  --color-secondary-dark: #E68900;
  --color-accent: #00A86B;
  --color-accent-dark: #00834F;
  --color-bg: #F8F9FA;
  --color-white: #FFFFFF;
  --color-text: #333333;
  --color-text-light: #6B7280;
  --color-border: #E5E9EE;

  --gradient-primary: linear-gradient(135deg, #0F4C81 0%, #1D6FB8 100%);
  --gradient-secondary: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
  --gradient-accent: linear-gradient(135deg, #00A86B 0%, #05C27F 100%);
  --gradient-hero-overlay: linear-gradient(180deg, rgba(15,76,129,0.35) 0%, rgba(10,20,35,0.75) 100%);

  --shadow-sm: 0 2px 10px rgba(15, 76, 129, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 76, 129, 0.12);
  --shadow-lg: 0 20px 45px rgba(15, 76, 129, 0.18);
  --shadow-glow: 0 8px 24px rgba(255, 152, 0, 0.35);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --header-height: 76px;
  --max-width: 1240px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & UTILITIES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary-dark);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 76, 129, 0.08);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin-bottom: 14px;
}

.section-title span {
  color: var(--color-secondary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.125rem;
  }
}

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

/* Buttons — rounded, gradient background, smooth hover animation */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-secondary);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 30px rgba(255, 152, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-4px);
}

.btn-dark {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.btn-block { width: 100%; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* --------------------------------------------------------------------------
   4. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --------------------------------------------------------------------------
   5. HEADER / STICKY NAVIGATION (Glassmorphism)
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(15, 76, 129, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  height: 68px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  transition: var(--transition-fast);
}

.header.scrolled .logo { color: var(--color-primary); }

.logo i {
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.logo span { color: var(--color-secondary); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-white);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  position: relative;
}

.header.scrolled .nav-link { color: var(--color-text); }

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
  background: var(--color-secondary);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--color-white);
  background: var(--color-secondary);
}

.nav-item.dropdown { position: relative; }

.nav-item.dropdown .fa-chevron-down {
  font-size: 0.7rem;
  transition: var(--transition-fast);
}

.nav-item.dropdown:hover .fa-chevron-down { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 230px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.dropdown-menu li a i { color: var(--color-accent); width: 18px; }

.dropdown-menu li a:hover {
  background: rgba(15, 76, 129, 0.08);
  color: var(--color-primary);
  padding-left: 20px;
}

/* Mega-menu variant (Packages dropdown with multiple grouped columns) */
.mega-menu {
  min-width: 230px;
  padding: 18px;
}

@media (min-width: 992px) {
  .mega-menu {
    min-width: 620px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

.mega-col-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-secondary-dark);
  padding: 6px 14px 10px;
}

.mega-col:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

@media (min-width: 992px) {
  .mega-col:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid var(--color-border);
    padding-bottom: 0;
    margin-bottom: 0;
    padding-right: 8px;
  }
}

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--color-white);
  border-radius: 3px;
  transition: var(--transition);
}

.header.scrolled .hamburger span { background: var(--color-primary); }

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. HERO SLIDER (Home Page)
   -------------------------------------------------------------------------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.hero-slide.active img { transform: scale(1); }

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 6%;
  max-width: 780px;
}

.hero-content .section-tag {
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  color: var(--color-white);
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.hero-title span {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 2px solid transparent;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--color-secondary);
  width: 34px;
  border-radius: var(--radius-full);
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 5;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.scroll-cue i { animation: floatY 2s ease-in-out infinite; }

/* --------------------------------------------------------------------------
   7. WHY CHOOSE US — FEATURE CARDS
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 26px;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--gradient-secondary);
}

.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--color-text-light); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   8. FEATURED PACKAGES (Home) / MODERN CARD DESIGN
   -------------------------------------------------------------------------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
}

.package-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.package-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.package-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.package-price-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-secondary);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

.package-duration-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: var(--color-primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-body { padding: 26px; }

.package-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.package-body p {
  color: var(--color-text-light);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px dashed var(--color-border);
}

.package-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.package-price small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   9. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-section {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1.05fr; }
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}

.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: -26px;
  left: -20px;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-badge strong { display: block; font-size: 2rem; }
.about-badge span { font-size: 0.8rem; opacity: 0.9; }

.about-text .stats-row {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-stat i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 168, 107, 0.12);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stat strong { display: block; font-size: 1rem; }
.about-stat span { font-size: 0.8rem; color: var(--color-text-light); }

/* --------------------------------------------------------------------------
   10. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-section {
  background: linear-gradient(180deg, #F8F9FA 0%, #EEF3F8 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.testimonial-card .fa-quote-right {
  position: absolute;
  top: 24px;
  right: 26px;
  font-size: 1.6rem;
  color: rgba(15, 76, 129, 0.1);
}

.testimonial-stars { color: var(--color-secondary); margin-bottom: 14px; font-size: 0.85rem; }

.testimonial-text {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 22px;
  font-style: italic;
}

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

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-bg);
}

.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--color-text-light); }

/* --------------------------------------------------------------------------
   11. MAP SECTION
   -------------------------------------------------------------------------- */
.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.map-wrap { padding: 10px; background: var(--color-white); border-radius: var(--radius-lg); }

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: #0A2E4D;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-logo i { color: var(--color-secondary); }
.footer-logo span { color: var(--color-secondary); }

.footer-about p { font-size: 0.9rem; margin-bottom: 20px; }

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-secondary);
  transform: translateY(-4px);
}

.footer h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 22px;
  position: relative;
}

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

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 6px;
}

.footer-links a i { font-size: 0.7rem; color: var(--color-secondary); }

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--color-secondary);
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a { color: var(--color-secondary); }

/* --------------------------------------------------------------------------
   13. PAGE BANNER (Inner pages)
   -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,76,129,0.88), rgba(10,46,77,0.88));
}

.page-banner-content { position: relative; z-index: 2; color: var(--color-white); }

.page-banner h1 { color: var(--color-white); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover { color: var(--color-secondary); }
.breadcrumb i { font-size: 0.7rem; }

/* --------------------------------------------------------------------------
   14. PACKAGES PAGE — DETAILED CARDS
   -------------------------------------------------------------------------- */
.package-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 50px;
  scroll-margin-top: 100px;
  border: 1px solid var(--color-border);
}

@media (min-width: 900px) {
  .package-detail { grid-template-columns: 0.9fr 1.1fr; }
  .package-detail.reverse { direction: rtl; }
  .package-detail.reverse > * { direction: ltr; }
}

.package-detail-img { position: relative; min-height: 320px; }
.package-detail-img img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

.package-detail-ribbon {
  position: absolute;
  top: 22px;
  left: -8px;
  background: var(--gradient-accent);
  color: var(--color-white);
  padding: 8px 22px 8px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  box-shadow: var(--shadow-sm);
}

.package-detail-body { padding: 38px; }

.package-detail-body h3 { font-size: 1.6rem; margin-bottom: 6px; }

.package-detail-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 16px 0 20px;
}

.meta-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(15, 76, 129, 0.07);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.meta-chip i { color: var(--color-secondary); }

.package-detail-body > p.overview {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.package-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 24px;
}

@media (min-width: 560px) {
  .package-columns { grid-template-columns: 1fr 1fr; }
}

.package-col h5 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text);
  margin-bottom: 10px;
}

.package-col.inclusions i { color: var(--color-accent); margin-top: 3px; }
.package-col.exclusions i { color: #E53E3E; margin-top: 3px; }
.package-col.places i { color: var(--color-secondary); margin-top: 3px; }

.package-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px dashed var(--color-border);
}

.package-detail-price { font-size: 1rem; color: var(--color-text-light); }
.package-detail-price strong { display: block; font-size: 1.8rem; color: var(--color-primary); }
.package-detail-price.on-request strong { font-size: 1.15rem; color: var(--color-accent); }

/* Day-by-day Itinerary list (multi-city / pilgrimage packages) */
.itinerary-list h5 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.itinerary-day {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.itinerary-day-badge {
  flex-shrink: 0;
  min-width: 66px;
  height: 34px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.itinerary-day-content h6 {
  font-size: 0.92rem;
  margin-bottom: 4px;
  color: var(--color-primary-dark);
  font-weight: 600;
}

.itinerary-day-content p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Quote request note (used on price-on-request packages) */
.quote-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 152, 0, 0.08);
  border: 1px dashed var(--color-secondary);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 22px;
}

.quote-note i { color: var(--color-secondary); margin-top: 2px; }

/* Small badge showing the package type/category on the ribbon area */
.package-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  background: rgba(15, 76, 129, 0.07);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   15. GALLERY PAGE + LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.18); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,76,129,0.85), rgba(15,76,129,0) 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

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

.gallery-overlay span {
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-overlay i {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 35, 0.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox-content {
  position: relative;
  max-width: 88vw;
  max-height: 82vh;
}

.lightbox-content img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  text-align: center;
  color: var(--color-white);
  margin-top: 16px;
  font-size: 0.95rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-size: 1.1rem;
}

.lightbox-close:hover,
.lightbox-nav:hover { background: var(--color-secondary); }

.lightbox-close { top: -60px; right: 0; }
.lightbox-nav.prev { left: -64px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: -64px; top: 50%; transform: translateY(-50%); }

@media (max-width: 700px) {
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
  .lightbox-close { top: 8px; right: 8px; background: rgba(0,0,0,0.4); }
}

/* --------------------------------------------------------------------------
   16. CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 950px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.contact-form-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-card > p { color: var(--color-text-light); margin-bottom: 28px; font-size: 0.92rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 560px) {
  .form-row.two-col { grid-template-columns: 1fr 1fr; }
}

.form-group { position: relative; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--color-text);
  background: #FBFCFD;
  transition: var(--transition-fast);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.1);
  background: var(--color-white);
}

.form-error {
  color: #E53E3E;
  font-size: 0.78rem;
  margin-top: 6px;
  display: none;
}

.form-group.error input,
.form-group.error textarea { border-color: #E53E3E; }

.form-group.error .form-error { display: block; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(0, 168, 107, 0.1);
  color: var(--color-accent-dark);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.form-success.show { display: flex; animation: slideUp 0.5s ease; }
.form-success i { font-size: 1.2rem; }

.contact-info-card {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}

.contact-info-item h4 { color: var(--color-white); font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.88rem; color: rgba(255, 255, 255, 0.85); }

.contact-social-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  text-align: center;
}

.contact-social-card h4 { margin-bottom: 16px; font-size: 1rem; }

.contact-social-card .footer-social { justify-content: center; }
.contact-social-card .footer-social a { background: rgba(15,76,129,0.08); color: var(--color-primary); }
.contact-social-card .footer-social a:hover { background: var(--color-secondary); color: var(--color-white); }

/* --------------------------------------------------------------------------
   17. TOAST NOTIFICATION (used by JS on Explore/Book buttons)
   -------------------------------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateY(120%);
  opacity: 0;
  transition: var(--transition);
  max-width: 320px;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--color-accent); font-size: 1.2rem; }

/* --------------------------------------------------------------------------
   18. BACK TO TOP
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
}

.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-6px); }

/* --------------------------------------------------------------------------
   19. RESPONSIVE — MOBILE NAVIGATION
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(80%, 320px);
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 26px 30px;
    gap: 6px;
    box-shadow: var(--shadow-lg);
    transition: right 0.45s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
  }

  .nav-menu.active { right: 0; }

  .nav-link { color: var(--color-text) !important; width: 100%; }
  .header.scrolled .nav-link { color: var(--color-text); }

  .nav-item.dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 12px;
    margin-top: 4px;
  }

  .nav-item.dropdown.open .dropdown-menu { display: block; }
  .nav-item.dropdown.open .fa-chevron-down { transform: rotate(180deg); }

  .nav-cta { margin-left: 0; margin-top: 12px; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 35, 0.55);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-overlay.active { opacity: 1; visibility: visible; }
}

/* --------------------------------------------------------------------------
   20. GENERAL RESPONSIVE TWEAKS
   -------------------------------------------------------------------------- */
@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .hero-content { padding: 0 24px; align-items: center; text-align: center; }
  .hero-actions { justify-content: center; }
  .slider-arrow { width: 42px; height: 42px; }
  .about-badge { left: 16px; bottom: -20px; padding: 16px 18px; }
  .package-detail-body { padding: 26px; }
  .contact-form-card, .contact-info-card { padding: 26px; }
}

/* Footer Bottom */
.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    padding-top:25px;
    margin-top:30px;
    border-top:1px solid rgba(255,255,255,.15);
}

.footer-bottom-social{
    display:flex;
    align-items:center;
    gap:15px;
}

.follow-text{
    color:#fff;
    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;
}

.footer-bottom-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:.3s;
    font-size:18px;
}

.footer-bottom-social a:hover{
    background:#ff6b35;
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(255,107,53,.35);
}

@media(max-width:768px){

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

.footer-bottom-social{
    justify-content:center;
}

}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-img{
    width:100px;
    height:100px;
    object-fit:contain;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.logo-title{
    font-size:24px;
    font-weight:700;
    color:#222;
}

.logo-subtitle{
    font-size:16px;
    font-weight:600;
    color:#ff6b35;
}

/* Floating WhatsApp */

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.30);
    z-index:9999;
    transition:.3s;
    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    background:#20ba5a;
}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow:0 0 0 20px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

@media(max-width:768px){

.whatsapp-float{
    width:58px;
    height:58px;
    font-size:30px;
    bottom:20px;
    right:20px;
}

}