/* =====================================================
   PIONEER HOLIDAYS - INDIA TOUR PACKAGES PAGE
   Premium Luxury Design
   Color Theme: Blue (#1a365d), Green (#48bb78), White
   ===================================================== */

/* HERO SECTION */
.package-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.package-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(26, 54, 93, 0.7) 0%, 
    rgba(26, 54, 93, 0.5) 50%,
    rgba(26, 54, 93, 0.8) 100%);
  z-index: 1;
}

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

.package-hero .hero-tagline {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #68d391;
  margin-bottom: 20px;
}

.package-hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: -1px;
}

.package-hero .hero-subtitle {
  font-size: 24px;
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 25px;
}

.package-hero .hero-divider {
  width: 60px;
  height: 2px;
  background: #48bb78;
  margin: 0 auto 25px;
}

.package-hero .hero-intro {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 35px;
  font-weight: 300;
}

.package-hero .hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.package-hero .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: #48bb78;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.package-hero .btn-primary:hover {
  background: #38a169;
  transform: translateY(-2px);
}

.package-hero .btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.package-hero .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.package-hero .hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.package-hero .scroll-indicator {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  margin: 10px auto 0;
  position: relative;
}

.package-hero .scroll-indicator::after {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0.3; top: 18px; }
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #48bb78;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1a365d;
  margin: 0 0 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-intro {
  font-size: 17px;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.7;
}

/* INTRO SECTION */
.package-intro {
  padding: 50px 0;
  background: #fff;
}

.package-intro .intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.package-intro .lead-text {
  font-size: 24px;
  font-weight: 400;
  color: #1a365d;
  line-height: 1.6;
  margin-bottom: 24px;
}

.package-intro p {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* WHY CHOOSE US */
.package-why-choose {
  padding: 60px 0;
  background: #f8fafc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 0 5px 2px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(72, 187, 120, 0.1);
  border-radius: 50%;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: #48bb78;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 14px;
  line-height: 1.4;
}

.feature-card p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* REGIONS SECTION */
.package-regions {
  padding: 60px 0;
  background: #fff;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.region-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 0 5px 2px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.region-card:hover {
  transform: translateY(-6px);
  border-color: #48bb78;
}

.region-image {
  height: 160px;
  overflow: hidden;
}

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

.region-card:hover .region-image img {
  transform: scale(1.1);
}

.region-content {
  padding: 18px;
}

.region-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 8px;
  line-height: 1.3;
}

.region-content p {
  font-size: 13px;
  color: #718096;
  line-height: 1.5;
  margin-bottom: 12px;
}

.region-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #48bb78;
  transition: gap 0.3s ease;
}

.region-card:hover .region-link {
  gap: 10px;
}

.region-link svg {
  width: 14px;
  height: 14px;
}

/* TRAVEL STYLES */
.package-styles {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}

.package-styles .section-label {
  color: #68d391;
}

.package-styles .section-header h2 {
  color: #fff;
}

.package-styles .section-subtitle {
  color: rgba(255,255,255,0.8);
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.style-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 35px 25px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.style-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}

.style-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.style-icon svg {
  width: 32px;
  height: 32px;
  color: #68d391;
}

.style-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.style-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}

/* WHAT MAKES US DIFFERENT */
.package-difference {
  padding: 60px 0;
  background: #fff;
}

.difference-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.difference-content .section-label {
  text-align: left;
}

.difference-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 30px;
  line-height: 1.2;
}

.difference-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.difference-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #2d3748;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.difference-list li:last-child {
  border-bottom: none;
}

.difference-list svg {
  width: 22px;
  height: 22px;
  color: #48bb78;
  flex-shrink: 0;
}

.difference-note {
  font-size: 15px;
  color: #718096;
  line-height: 1.7;
  font-style: italic;
}

.difference-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.difference-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* HOW TO CHOOSE SECTION */
.package-choose {
  padding: 60px 0;
  background: #fff;
}

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

.choose-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #48bb78;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 5px 2px rgba(0,0,0,0.08);
}

.choose-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(72, 187, 120, 0.1);
  border-radius: 50%;
}

.choose-icon svg {
  width: 24px;
  height: 24px;
  color: #48bb78;
}

.choose-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 10px;
}

.choose-content p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* CTA SECTION */
.package-cta {
  padding: 60px 0;
  background: #f8fafc;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 16px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-buttons .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: #48bb78;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary:hover {
  background: #38a169;
  transform: translateY(-2px);
}

.cta-buttons .btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: #1a365d;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-phone:hover {
  background: #2c5282;
}

.cta-buttons .btn-phone svg {
  width: 18px;
  height: 18px;
}

/* FAQ SECTION */
.package-faq {
  padding: 60px 0;
  background: #fff;
}

.package-faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-faq .faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  box-shadow: none;
  transform: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.package-faq .faq-item:hover {
  border-color: #48bb78;
  transform: none;
}

.package-faq .faq-item.active {
  border-color: #48bb78;
  box-shadow: 0 0 5px 2px rgba(0,0,0,0.08);
}

.package-faq .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1a365d;
  transition: color 0.3s ease;
}

.package-faq .faq-question:hover {
  color: #48bb78;
}

.package-faq .faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #48bb78;
  color: #fff;
  border-radius: 50%;
  padding: 4px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.package-faq .faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.package-faq .faq-answer {
  height: auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

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

.package-faq .faq-answer p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
  padding: 0 20px 18px;
}

/* RESPONSIVE - TABLET LANDSCAPE */
@media (max-width: 1200px) {
  .regions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .styles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* RESPONSIVE - TABLET */
@media (max-width: 1024px) {
  .package-hero h1 {
    font-size: 42px;
  }
  
  .package-hero .hero-subtitle {
    font-size: 20px;
  }
  
  .package-hero .hero-intro {
    font-size: 15px;
  }
  
  .section-header h2 {
    font-size: 30px;
  }
  
  .section-header {
    margin-bottom: 35px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .feature-card {
    padding: 28px 22px;
  }
  
  .regions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .difference-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .difference-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .choose-grid {
    gap: 20px;
  }
  
  .choose-item {
    padding: 22px;
  }
  
  .package-intro .lead-text {
    font-size: 20px;
  }
}

/* RESPONSIVE - MOBILE LANDSCAPE */
@media (max-width: 768px) {
  .package-hero {
    min-height: 75vh;
  }
  
  .package-hero h1 {
    font-size: 32px;
  }
  
  .package-hero .hero-subtitle {
    font-size: 18px;
  }
  
  .package-hero .hero-intro {
    font-size: 14px;
  }
  
  .package-hero .hero-tagline {
    font-size: 11px;
    letter-spacing: 2px;
  }
  
  .package-hero .btn-primary,
  .package-hero .btn-outline {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .section-header h2 {
    font-size: 24px;
  }
  
  .section-header {
    margin-bottom: 28px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
  
  .section-intro {
    font-size: 14px;
    margin-bottom: 35px;
  }
  
  .features-grid,
  .styles-grid,
  .choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 24px 20px;
  }
  
  .feature-card h3 {
    font-size: 16px;
  }
  
  .feature-card p {
    font-size: 14px;
  }
  
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .region-image {
    height: 120px;
  }
  
  .region-content {
    padding: 14px;
  }
  
  .region-content h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .region-content p {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .region-link {
    font-size: 12px;
  }
  
  .style-card {
    padding: 24px 18px;
  }
  
  .style-card h3 {
    font-size: 15px;
  }
  
  .style-card p {
    font-size: 13px;
  }
  
  .difference-content h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  
  .difference-list li {
    font-size: 14px;
    padding: 10px 0;
  }
  
  .difference-note {
    font-size: 13px;
  }
  
  .choose-item {
    padding: 18px;
    gap: 14px;
  }
  
  .choose-icon {
    width: 40px;
    height: 40px;
  }
  
  .choose-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .choose-content h3 {
    font-size: 15px;
  }
  
  .choose-content p {
    font-size: 13px;
  }
  
  .cta-content h2 {
    font-size: 24px;
  }
  
  .cta-content p {
    font-size: 14px;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-phone {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  .faq-question {
    font-size: 15px;
    padding: 18px 0;
  }
  
  .faq-answer p {
    font-size: 14px;
  }
  
  .package-intro .lead-text {
    font-size: 18px;
  }
  
  .package-intro p {
    font-size: 15px;
  }
  
  .package-intro,
  .package-regions,
  .package-why-choose,
  .package-styles,
  .package-difference,
  .package-choose,
  .package-cta,
  .package-faq {
    padding: 45px 0;
  }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 480px) {
  .package-hero {
    min-height: 70vh;
  }
  
  .package-hero h1 {
    font-size: 26px;
  }
  
  .package-hero .hero-subtitle {
    font-size: 16px;
  }
  
  .package-hero .hero-divider {
    width: 40px;
    margin: 0 auto 18px;
  }
  
  .package-hero .hero-intro {
    font-size: 13px;
    margin-bottom: 25px;
  }
  
  .package-hero .hero-cta {
    flex-direction: column;
    gap: 10px;
  }
  
  .package-hero .btn-primary,
  .package-hero .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  
  .package-hero .hero-scroll {
    display: none;
  }
  
  .section-header h2 {
    font-size: 22px;
  }
  
  .section-subtitle {
    font-size: 13px;
  }
  
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .region-image {
    height: 100px;
  }
  
  .region-content {
    padding: 12px;
  }
  
  .region-content h3 {
    font-size: 13px;
  }
  
  .region-content p {
    display: none;
  }
  
  .region-link {
    font-size: 11px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-phone {
    width: 100%;
    justify-content: center;
  }
  
  .package-intro,
  .package-regions,
  .package-why-choose,
  .package-styles,
  .package-difference,
  .package-choose,
  .package-cta,
  .package-faq {
    padding: 35px 0;
  }
  
  .package-intro .lead-text {
    font-size: 16px;
  }
  
  .package-intro p {
    font-size: 14px;
  }
}
