/* Base Styles */
:root {
  --primary-color: #8B4513;
  --primary-color-dark: #6B3410;
  --primary-color-light: #D2B48C;
  --primary-color-rgb: 139, 69, 19;
  --accent-color: #FFD700;
  --text-color: #333;
  --text-secondary: #666;
  --bg-color: #F9F5F0;
  --card-bg: #FFFFFF;
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

/* Hero Section - Full Screen with Parallax */
.package-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.package-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('images/pitrapaksha-package.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 2;
  animation: fadeIn 1.5s ease-out;
}

.package-hero h1 {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  line-height: 1.2;
  background: linear-gradient(to right, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-hero p {
  font-size: 1.6rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.hero-cta:hover {
  background: transparent;
  border-color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 2;
}

.scroll-down i {
  display: block;
  margin-top: 5px;
}

/* Package Details Section */
.package-details {
  padding: 6rem 0;
  background: var(--bg-color);
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Highlights Section - Card Grid */
.highlights {
  background: var(--card-bg);
  padding: 4rem;
  border-radius: var(--border-radius);
  margin-bottom: 6rem;
  box-shadow: var(--box-shadow);
}

.highlights ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.highlights li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.highlights li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary-color);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: top;
}

.highlights li:hover::before {
  transform: scaleY(1);
}

.highlights li:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlights i {
  color: var(--primary-color);
  font-size: 2.5rem;
  background: rgba(var(--primary-color-rgb), 0.1);
  padding: 1.2rem;
  border-radius: 50%;
  transition: var(--transition);
}

.highlights li:hover i {
  transform: rotate(360deg);
  background: var(--primary-color);
  color: white;
}

.highlights li span {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Itinerary Section - Timeline Redesign */
.itinerary {
  margin-top: 6rem;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 4px;
}

.timeline-item {
  padding: 2rem 0;
  position: relative;
}

.timeline-dot {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 0 0 8px var(--bg-color);
  transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 0 0 12px var(--bg-color);
}

.timeline-content {
  width: calc(50% - 50px);
  padding: 2.5rem;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  transition: var(--transition);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--card-bg);
  transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  left: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: -10px;
}

.timeline-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-header {
  margin-bottom: 1.5rem;
  position: relative;
}

.day-number {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  position: relative;
}

.day-number::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.timeline-header h3 {
  font-size: 2rem;
  margin: 0;
  color: var(--text-color);
}

.timeline-info {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.timeline-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.timeline-info i {
  color: var(--primary-color);
}

.timeline-details p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-size: 1.05rem;
}

.timeline-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.timeline-features span {
  background: var(--bg-color);
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-features span:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

.timeline-features i {
  font-size: 1.1rem;
}

/* Booking Section - Card with Gradient */
.booking-section {
  text-align: center;
  margin: 6rem auto;
  padding: 4rem;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-color) 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  max-width: 800px;
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.booking-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.booking-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
  z-index: 1;
}

.booking-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.price {
  margin: 3rem 0;
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 2rem;
  background: rgba(var(--primary-color-rgb), 0.05);
  border-radius: var(--border-radius);
  min-width: 300px;
}

.price::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
}

.amount {
  font-size: 4rem;
  color: var(--primary-color);
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  display: block;
  margin-bottom: 0.5rem;
  position: relative;
}

.amount::before {
  content: '₹';
  position: absolute;
  top: 0;
  left: -20px;
  font-size: 2.5rem;
  color: var(--primary-color-light);
}

.per-person {
  color: var(--text-secondary);
  font-size: 1.3rem;
  display: block;
  margin-top: 0.5rem;
}

.book-now {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(var(--primary-color-rgb), 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 2rem;
}

.book-now::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--primary-color-dark));
  z-index: -1;
  transition: var(--transition);
  transform: scaleX(0);
  transform-origin: right;
}

.book-now:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.book-now:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(var(--primary-color-rgb), 0.4);
}

.book-now i {
  transition: transform 0.3s ease;
}

.book-now:hover i {
  transform: translateX(5px);
}

/* Add booking features */
.booking-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
  z-index: 1;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.booking-feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
  background: rgba(var(--primary-color-rgb), 0.1);
  padding: 0.8rem;
  border-radius: 50%;
  transition: var(--transition);
}

.booking-feature:hover i {
  transform: rotate(360deg);
  background: var(--primary-color);
  color: white;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .package-hero h1 {
    font-size: 4rem;
  }
  
  .package-hero p {
    font-size: 1.4rem;
  }
  
  .highlights ul {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 992px) {
  .package-hero h1 {
    font-size: 3.5rem;
  }
  
  .package-hero p {
    font-size: 1.2rem;
  }
  
  .timeline::before {
    left: 31px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .timeline-dot {
    left: 31px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    display: none;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .booking-section {
    padding: 3rem;
    margin: 4rem auto;
  }
  
  .booking-section h2 {
    font-size: 2.5rem;
  }
  
  .price {
    min-width: 250px;
  }
  
  .amount {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .package-hero h1 {
    font-size: 2.8rem;
  }
  
  .package-hero p {
    font-size: 1.1rem;
  }
  
  .highlights, .booking-section {
    padding: 2.5rem;
  }
  
  .timeline-content {
    padding: 2rem;
  }
  
  .timeline-header h3 {
    font-size: 1.8rem;
  }
  
  .amount {
    font-size: 3rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .booking-section {
    padding: 2.5rem;
    margin: 3rem auto;
  }
  
  .booking-section h2 {
    font-size: 2.2rem;
  }
  
  .price {
    min-width: 220px;
    padding: 1.5rem;
  }
  
  .amount {
    font-size: 3rem;
  }
  
  .booking-features {
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .package-hero h1 {
    font-size: 2.2rem;
  }
  
  .highlights li {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .timeline-features {
    justify-content: center;
  }
  
  .book-now {
    width: 100%;
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .booking-section {
    padding: 2rem;
    margin: 2rem auto;
  }
  
  .booking-section h2 {
    font-size: 2rem;
  }
  
  .price {
    min-width: 200px;
    padding: 1.2rem;
  }
  
  .amount {
    font-size: 2.5rem;
  }
  
  .booking-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .book-now {
    width: 100%;
    justify-content: center;
  }
} 