:root {
  --primary: #faa61a;
  --primary-dark: #e59408;
  --secondary: #000;
  --text-light: #f9f9f9;
  --text-dark: #333;
  --card-bg: #fff;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.2);
  --border-radius: 12px;
  --transition: all 0.4s ease;
}

body {
  font-family: "Lato", sans-serif;
  background-color: #f9f9f9;
  color: #333;
  padding-top: 20px;
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.page-header h1 {
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.page-header h1:after {
  content: "";
  position: absolute;
  width: 60%;
  height: 4px;
  background: var(--primary);
  bottom: -15px;
  left: 20%;
  border-radius: 10px;
}

.page-header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.package-section {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.package-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.package-section:nth-child(even) {
  background-color: rgba(250, 166, 26, 0.05);
}

.package-section:last-child {
  border-bottom: none;
}

.package-img {
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.package-img-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-img-container:hover .package-img {
  transform: scale(1.05);
}

.package-details {
  padding: 20px;
}

.package-section h2 {
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.package-section h2:after {
  content: "";
  position: absolute;
  width: 40%;
  height: 3px;
  background: var(--primary);
  bottom: -8px;
  left: 0;
  border-radius: 10px;
}

.package-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.features li {
  margin-bottom: 12px;
  font-size: 16px;
  padding-left: 30px;
  position: relative;
  color: #444;
}

.features li i {
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 18px;
  background: rgba(250, 166, 26, 0.15);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
}

.price-container {
  display: flex;
  align-items: center;
  margin: 25px 0;
  padding: 15px;
  background: rgba(250, 166, 26, 0.1);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary);
}

.price {
  font-size: 24px;
  font-weight: bold;
  margin-right: 15px;
  color: #28a745;
}

.price span {
  font-size: 28px;
  color: var(--primary-dark);
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 15px;
  font-size: 18px;
}

.discount-badge {
  background: #dc3545;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.btn-primary {
  background-color: var(--primary);
  border: none;
  border-radius: 6px;
  padding: 12px 30px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 6px;
  padding: 10px 25px;
  font-weight: 700;
  transition: var(--transition);
  margin-left: 15px;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.highlight {
  background: rgba(250, 166, 26, 0.1);
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.highlight i {
  color: var(--primary);
}

/* ===================== Animations ============================ */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 4s ease-in-out infinite;
}

/* ========================================= Responsive adjustments ========================================= */
@media (max-width: 768px) {
  .package-section {
    padding: 50px 0;
  }

  .price-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .btn-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn-outline {
    margin-left: 0;
  }
}
