/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES - PREMIUM PALETTE */
:root {
  --primary: #800000;
  /* Deep Maroon */
  --primary-light: #9b1c1c;
  /* Lighter Maroon */
  --accent: #D4AF37;
  /* Gold */
  --accent-glow: rgba(212, 175, 55, 0.4);
  --dark: #2C2C2C;
  /* Charcoal */
  --text-gray: #555555;
  --light: #FFFFFF;
  --bg: #FDFBF7;
  /* Warm Off-White */
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 100%);
  --gradient-maroon: linear-gradient(135deg, #800000 0%, #500000 100%);
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* GLOBAL TYPOGRAPHY */
body {
  background:
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(128, 0, 0, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #FDFBF7 0%, #fff 50%, #FDFBF7 100%);
  color: var(--dark);
  font-family: 'Poppins', system-ui, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(128, 0, 0, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

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

.logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  overflow: hidden;
}

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

.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.logo-wrap:hover .logo-circle {
  transform: rotate(360deg);
  box-shadow: 0 0 15px rgba(155, 28, 28, 0.3);
}

.nav {
  display: none;
}

.nav a {
  margin-left: 30px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* MOBILE NAV DRAWER */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 999;
}

.mobile-nav.active {
  display: flex;
  animation: slideDown 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--primary);
  letter-spacing: 1px;
}

/* PACKAGE HERO - PREMIUM */
.package-hero {
  position: relative;
  min-height: 80vh;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(128, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%),
    url("../images/bodhgayatour.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
  overflow: hidden;
}

/* Package-specific hero backgrounds */
.package-gorakhpur .package-hero {
  background-image: url("../images/gorakhpur.jpg");
}

.package-nepal .package-hero {
  background-image: url("../images/nepaltour.jpg");
}

.package-varanasi .package-hero {
  background-image: url("../images/varanasitour.jpg");
}

.package-rajgir .package-hero {
  background-image: url("../images/rajgirtour.jpg");
}

.package-india .package-hero {
  background-image: url("../images/allindiatour.jpg");
}

.package-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(128, 0, 0, 0.3) 0%, transparent 50%);
  animation: shimmer 8s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes shimmer {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 0.3;
  }
}

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

.package-hero-content h1 {
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 25px;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 3s ease-in-out infinite alternate;
}

@keyframes glowText {
  0% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.2);
  }

  100% {
    filter: brightness(1);
  }
}

.package-hero-content p {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0.95;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out 0.3s both;
  text-transform: uppercase;
}

/* PACKAGE SECTION */
.package-section {
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* PACKAGE CARDS - PREMIUM */
.package-card {
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 50%, #ffffff 100%);
  padding: 50px;
  border-radius: 30px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.package-card.visible::before {
  transform: scaleX(1);
}

.package-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.15),
    0 0 0 2px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.package-card:hover::after {
  opacity: 1;
}

.package-card h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 3px solid transparent;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 100%) bottom/100% 3px no-repeat;
  display: inline-block;
  position: relative;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.package-card h2::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.package-card:hover h2::after {
  transform: scaleX(1);
}

.package-card p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 25px;
  font-weight: 400;
}

.package-card ul {
  list-style: none;
  padding: 0;
}

.package-card ul li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
  transition: all 0.3s ease;
  font-weight: 500;
}

.package-card ul li:hover {
  transform: translateX(8px);
  color: var(--primary);
}

.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  width: 32px;
  height: 32px;
  background: var(--gradient-maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(128, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.package-card ul li:hover::before {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 6px 20px rgba(128, 0, 0, 0.4);
}

/* HIGHLIGHTS GRID - PREMIUM */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 35px;
}

.highlight-box {
  background: linear-gradient(135deg, var(--bg) 0%, #fff 50%, var(--bg) 100%);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  font-weight: 700;
  color: var(--dark);
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.highlight-box::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-gold);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -2;
}

.highlight-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 0 3px rgba(212, 175, 55, 0.4);
  color: var(--primary);
}

.highlight-box:hover::before {
  opacity: 0.1;
}

.highlight-box:hover::after {
  opacity: 0.2;
}

/* CTA BUTTONS - PREMIUM */
.package-cta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
}

.cta-btn {
  flex: 1;
  min-width: 200px;
  padding: 22px 30px;
  text-align: center;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 60px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.cta-btn:hover::before {
  width: 400px;
  height: 400px;
}

.cta-btn:hover::after {
  opacity: 1;
}

.cta-btn.call {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow:
    0 15px 35px rgba(128, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.cta-btn.call:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 25px 50px rgba(128, 0, 0, 0.5),
    0 0 0 2px rgba(255, 255, 255, 0.2) inset;
}

.cta-btn.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
  color: #fff;
  box-shadow:
    0 15px 35px rgba(37, 211, 102, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.cta-btn.whatsapp:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 25px 50px rgba(37, 211, 102, 0.5),
    0 0 0 2px rgba(255, 255, 255, 0.2) inset;
}

.cta-btn.email {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  color: #fff;
  box-shadow:
    0 15px 35px rgba(44, 44, 44, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.cta-btn.email:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 25px 50px rgba(44, 44, 44, 0.5),
    0 0 0 2px rgba(255, 255, 255, 0.2) inset;
}

.cta-btn i {
  font-size: 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.cta-btn:hover i {
  transform: scale(1.3) rotate(5deg);
}

.cta-btn span {
  position: relative;
  z-index: 2;
}

/* FOOTER - PREMIUM */
.footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.footer p {
  font-size: 16px;
  letter-spacing: 0.5px;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* WHATSAPP FLOAT BUTTON - PREMIUM */
.whatsapp-float {
  position: fixed !important;
  bottom: 25px !important;
  right: 25px !important;
  background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
  color: #fff;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow:
    0 15px 35px rgba(37, 211, 102, 0.4),
    0 0 0 3px rgba(255, 255, 255, 0.1) inset,
    0 0 20px rgba(37, 211, 102, 0.3);
  z-index: 9999 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  border: none;
  outline: none;
  visibility: visible !important;
  opacity: 1 !important;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 1;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.whatsapp-float:hover::before {
  width: 120px;
  height: 120px;
}

.whatsapp-float:hover::after {
  opacity: 1;
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(-5deg);
  box-shadow:
    0 25px 50px rgba(37, 211, 102, 0.6),
    0 0 0 5px rgba(255, 255, 255, 0.3) inset,
    0 0 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:active {
  transform: scale(1.05) rotate(0deg);
  transition: transform 0.1s ease;
}

.whatsapp-float i {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover i {
  transform: scale(1.3);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

/* Pulse animation for WhatsApp button */
@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 15px 35px rgba(37, 211, 102, 0.4),
      0 0 0 3px rgba(255, 255, 255, 0.1) inset,
      0 0 20px rgba(37, 211, 102, 0.3);
  }

  50% {
    box-shadow:
      0 15px 35px rgba(37, 211, 102, 0.6),
      0 0 0 3px rgba(255, 255, 255, 0.2) inset,
      0 0 30px rgba(37, 211, 102, 0.5);
  }

  100% {
    box-shadow:
      0 15px 35px rgba(37, 211, 102, 0.4),
      0 0 0 3px rgba(255, 255, 255, 0.1) inset,
      0 0 20px rgba(37, 211, 102, 0.3);
  }
}

.whatsapp-float {
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  animation: none;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE DESIGN */
@media (min-width: 768px) {
  .nav.desktop-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .package-card {
    padding: 50px;
  }

  .package-card h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .package-hero {
    min-height: 60vh;
  }

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

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

  .package-section {
    padding: 40px 20px;
    margin: 0 auto 60px;
  }

  .package-card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .package-card h2 {
    font-size: 24px;
  }

  .package-card p,
  .package-card ul li {
    font-size: 15px;
  }

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

  .highlight-box {
    padding: 15px 10px;
    font-size: 14px;
  }

  .package-cta {
    flex-direction: column;
    gap: 15px;
  }

  .cta-btn {
    min-width: 100%;
    padding: 15px 20px;
    font-size: 16px;
  }

  .whatsapp-float {
    bottom: 20px !important;
    right: 20px !important;
    width: 60px;
    height: 60px;
    font-size: 28px;
    z-index: 9999 !important;
    position: fixed !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .package-section {
    max-width: 800px;
    padding: 0 30px;
  }

  .package-card {
    padding: 35px 30px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .package-hero {
    min-height: 50vh;
  }

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

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

  .package-section {
    padding: 30px 15px;
    margin: 0 auto 40px;
  }

  .package-card {
    padding: 25px 20px;
    margin-bottom: 25px;
  }

  .package-card h2 {
    font-size: 20px;
  }

  .package-card p,
  .package-card ul li {
    font-size: 14px;
  }

  .package-card ul {
    padding-left: 20px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .highlight-box {
    padding: 12px 15px;
    font-size: 13px;
  }

  .cta-btn {
    padding: 12px 18px;
    font-size: 15px;
  }

  .tour-image img,
  .spiritual-image img,
  .seasonal-image img {
    max-width: 100%;
    border-radius: 12px;
  }

  .itinerary-day {
    padding: 20px 15px;
    margin-bottom: 25px;
  }

  .itinerary-day h3 {
    font-size: 18px;
  }

  .itinerary-day p {
    font-size: 14px;
  }

  .accommodation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .accommodation-item {
    padding: 20px 15px;
  }

  .accommodation-item h4 {
    font-size: 16px;
  }

  .accommodation-item p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .logo-circle {
    width: 44px;
    height: 44px;
  }

  .brand-text {
    font-size: 16px;
  }

  .package-card {
    padding: 25px 20px;
  }

  .package-card h2 {
    font-size: 22px;
  }

  .package-card p,
  .package-card ul li {
    font-size: 16px;
  }
}

.package-card p+p {
  margin-top: 14px;
}

.package-card ul {
  margin-top: 18px;
}

/* Package Image Styles */
.tour-image,
.spiritual-image,
.seasonal-image {
  margin-top: 25px;
  text-align: center;
}

.tour-image img,
.spiritual-image img,
.seasonal-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.tour-image img:hover,
.spiritual-image img:hover,
.seasonal-image img:hover {
  transform: scale(1.02);
}

/* Itinerary Styles */
.itinerary-day {
  margin-bottom: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  border-left: 4px solid var(--primary);
}

.itinerary-day h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.itinerary-day p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.day-image {
  margin-top: 15px;
}

.day-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Accommodation Grid */
.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.accommodation-item {
  text-align: center;
  padding: 25px 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.accommodation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.accommodation-item h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
}

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

/* =========================================
   RESPONSIVE DESIGN (ADDED)
   ========================================= */

@media (max-width: 768px) {
  .package-hero-content h1 {
    font-size: 32px;
  }

  .package-hero-content p {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .package-section {
    padding: 0 15px;
  }

  .package-card {
    padding: 25px 20px;
    border-radius: 20px;
  }

  .package-card h2 {
    font-size: 24px;
  }

  .package-card p,
  .package-card ul li {
    font-size: 15px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .accommodation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .package-cta {
    flex-direction: column;
    gap: 15px;
  }

  .cta-btn {
    width: 100%;
    padding: 15px;
    min-width: auto;
  }

  /* Itinerary adjustments */
  .itinerary-day {
    flex-direction: column;
  }

  .day-image {
    width: 100%;
    margin-top: 15px;
  }
}