/* Homepage-specific sections (consolidated from index.php inline styles) */

.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stats-grid-small {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card-small {
  background: white;
  border-radius: 15px;
  padding: 30px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-card-small:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #0D4F3C;
}

.stat-icon-small {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0D4F3C 0%, #228B22 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.stat-icon-small i { width: 28px; height: 28px; }

.stat-number-small {
  font-size: 1.85rem;
  font-weight: 700;
  color: #0D4F3C;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label-small {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.packages-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.package-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.package-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #0D4F3C, #228B22);
}

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

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

.package-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
  background: linear-gradient(135deg, #DAA520, #FFD700);
  color: #0D4F3C;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.package-duration-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.package-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }

.package-content h3 {
  color: #0D4F3C;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.package-tags .tag {
  background: rgba(13, 79, 60, 0.1);
  color: #0D4F3C;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.package-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.package-price { display: none !important; }

.no-testimonials-fallback p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--medium-gray);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.no-testimonials-fallback a {
  color: var(--primary-color);
  font-weight: 600;
}


.destination-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.destination-card-link:hover { transform: translateY(-5px); }

.destination-overlay h3 {
  color: #D4AF37 !important;
  font-weight: 700 !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.destination-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%) !important;
}

.stories-section { padding: 80px 0; }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.story-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.trust-section,
.certifications-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #fff);
}

.trust-grid,
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.trust-item,
.cert-item {
  background: white;
  border-radius: 15px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.trust-item:hover,
.cert-item:hover { transform: translateY(-8px); }

.cert-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #0D4F3C, #228B22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0D4F3C, #0a3d2e);
  color: white;
}

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

.newsletter-text h2 { color: white; font-size: 1.75rem; margin-bottom: 12px; }

.newsletter-form .form-group {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 24px auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 22px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.65); }

.floating-booking-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0D4F3C, #228B22);
  color: white;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(13, 79, 60, 0.4);
  animation: home-pulse 2.5s infinite;
}

.floating-booking-btn:hover { color: white; transform: translateY(-4px); }

@keyframes home-pulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(13, 79, 60, 0.4); }
  50% { box-shadow: 0 8px 35px rgba(13, 79, 60, 0.65); }
}

.no-content-message {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .stats-grid-small { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .destinations-grid { gap: 16px; }
  .packages-grid { grid-template-columns: 1fr; }
  .newsletter-form .form-group { flex-direction: column; }
  .floating-booking-btn {
    bottom: 16px;
    right: 16px;
    padding: 14px 16px;
  }
  .floating-booking-btn span { display: none; }
}

@media (max-width: 480px) {
  .stats-grid-small { grid-template-columns: 1fr; }
}
