.prim-color{
    color: #008cad;
}
.text-justify {
  text-align: justify !important;
}

/* Custom Packages Section Styles */
.custom-packages {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.custom-packages.light-background {
  background-color: #f8f9fa;
}

.custom-package-content {
  padding: 20px 0;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #008cad 0%, #9aba42  100%);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.premium-badge i {
  font-size: 18px;
}

.custom-package-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.custom-package-content .lead {
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 30px;
  line-height: 1.8;
}

.package-promise {
  display: flex;
  gap: 20px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #008cad;
}

.promise-icon {
  flex-shrink: 0;
}

.promise-icon i {
  font-size: 40px;
  color: #008cad;
}

.promise-text h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.promise-text p {
  color: #5a6c7d;
  margin: 0;
  line-height: 1.6;
}

/* Inclusions Grid */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.inclusion-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.inclusion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.inclusion-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  /* background: linear-gradient(135deg, #008cad 0%, #9aba42  100%); */
  background-color: #deedf2;
  color: #008cad;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inclusion-icon i {
  font-size: 24px;
}

.inclusion-details h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.inclusion-details p {
  font-size: 0.9rem;
  color: #5a6c7d;
  margin: 0;
}

/* CTA Buttons */
.custom-package-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.custom-package-actions .btn {
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.custom-package-actions .btn-primary {
  /* background: linear-gradient(135deg, #008cad 0%, #9aba42  100%); */
  background-color: #008cad;
  border: none;
  color: white;
}

.custom-package-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.custom-package-actions .btn-outline-primary {
  border: 2px solid #008cad;
  color: #008cad;
  background: white;
}

.custom-package-actions .btn-outline-primary:hover {
  background: #008cad;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #5a6c7d;
  font-size: 0.95rem;
}

.trust-badge i {
  font-size: 20px;
  color: #28a745;
}

/* Visual Column */
.custom-package-visual {
  position: relative;
}

.main-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  color: #28a745;
  font-size: 20px;
}

.floating-card.card-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 50%;
  left: -20px;
  animation-delay: 1s;
}

.floating-card.card-3 {
  bottom: 60px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.package-highlights-box {
  background: white;
  padding: 25px;
  border-radius: 15px;
  margin-top: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.highlight-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.highlight-header i {
  font-size: 24px;
  color: #ffc107;
}

.highlight-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: #5a6c7d;
  font-size: 0.95rem;
}

.highlight-list li i {
  color: #28a745;
  font-size: 18px;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 991px) {
  .custom-package-content h3 {
    font-size: 2rem;
  }

  .inclusions-grid {
    grid-template-columns: 1fr;
  }

  .floating-card.card-1,
  .floating-card.card-2,
  .floating-card.card-3 {
    position: static;
    margin: 10px 0;
    animation: none;
  }

  .custom-package-visual {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .custom-package-content h3 {
    font-size: 1.75rem;
  }

  .custom-package-actions {
    flex-direction: column;
  }

  .custom-package-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .package-promise {
    flex-direction: column;
    text-align: center;
  }

  .trust-badge {
    flex-direction: column;
    text-align: center;
  }
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,121,150,0.2) !important;
}

.icon-wrapper {
  transition: transform 0.3s ease;
}

.benefit-box:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,121,150,0.4) !important;
  background-color: #005a6f !important;
}

.hover-shadow {
  transition: all 0.3s ease;
}

.hover-shadow:hover {
  box-shadow: 0 10px 30px rgba(0, 121, 150, 0.2) !important;
  transform: translateY(-5px);
}

.package-selector .card {
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.package-selector .card:hover {
  border-color: #007996 !important;
}