* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter;
}
.main {
  padding: 24px;
}

.hero-section {
  height: 400px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/images/event/hero.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

h1 {
  margin-bottom: 16px;
  margin-left: 0;
  font-size: 32px;
  line-height: 1.3;
}

.hero-section p {
  line-height: 1.8;
  text-align: center;
  width: 80%;
  font-size: 15px;
}

/* Event Requirements Section */
.event-requirements {
  margin: 40px auto;
  margin-bottom: 20px !important;
  padding: 20px;
}

.requirements-card {
  padding: 20px !important;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.requirements-card h2 {
  text-align: center;
  margin-bottom: 12px;
  font-size: 24px !important;
}

.requirements-intro {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 28px;
}

.requirements-list {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.requirement-item {
  display: flex;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
  /* background-color: orange; */
}

.requirement-item:last-child {
  border-bottom: none;
}

.requirement-item .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.requirement-item .icon svg {
  width: 24px !important;
  height: 24px !important;
}

.requirement-content {
  display: flex;
  flex-direction: column;
}
.requirement-content h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.requirement-content p {
  font-size: 12px;
  line-height: 1.35;
  color: #5f5f5f;
}

/* Capacity Table */

.capacity-table h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

.capacity-table table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
}

.capacity-table thead {
  background: black;
  color: white;
}

.capacity-table th,
.capacity-table td {
  padding: 12px 20px;
  text-align: center;
  font-size: 1rem;
}

.capacity-table th {
  font-weight: 600;
}

.capacity-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}

.capacity-table tbody tr:last-child {
  border-bottom: none;
}

.capacity-table tbody tr:hover {
  background: #f5f5f5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .requirements-card {
    padding: 25px 15px;
  }

  .requirements-card h2 {
    font-size: 1.8rem;
  }

  .capacity-table th,
  .capacity-table td {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

.recommendation {
  /* max-width: 1200px; */
  margin: 20px auto;
  padding: 20px;
}

.recommendation-card {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 2px solid #904141;
  border-radius: 12px;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1); */
  display: flex;
  flex-direction: column;
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: #904141;
  color: white;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;

  font-weight: 600;
  letter-spacing: 1px;
}

.recommendation-card .image-frame {
  margin-bottom: 20px;
  /* height: 200px; */
}

.recommendation-card .image-frame video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.recommendation-card h2 {
  font-size: 24px !important;
  margin-bottom: 12px;
  font-weight: 600;
}

.recommendation-card .sub-text {
  color: #5f5f5f;
  font-size: 14px;

  margin-bottom: 25px;
  line-height: 1.35;
}

.accordion-header button {
  color: black;
  font-size: 14px;
  font-weight: 600;
}

.accordion-header svg {
  width: 24px;
  height: 24px;
}

.accordion-body {
  font-size: 12px;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefits .item .icon-benefit {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.benefits .item .icon-benefit:hover {
  background: #f0f0f0;
}

.icon-benefit .icon {
  width: 45px;
  height: 45px;
  background-color: #feebe7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.icon-benefit .title-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Responsive Design for Recommendation */
@media (max-width: 768px) {
  .recommendation-card {
    padding: 25px 15px;
  }

  .recommendation-card h2 {
    font-size: 1.6rem;
  }

  .recommended-badge {
    left: 20px;
    font-size: 0.8rem;
    padding: 5px 16px;
  }
}

.packages {
  margin: 30px auto;
  /* padding: 20px; */
}

.packages h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 24px;
}

.packages-container {
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  bottom: -10px;
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  color: #904141;
  transform: scale(1.1);
}

.nav-arrow.bold {
  color: #904141;
}

.nav-arrow.bold:hover {
  color: #7a3535;
}

.nav-arrow-left {
  left: 50%;
  transform: translateX(-60px);
}

.nav-arrow-right {
  right: 50%;
  transform: translateX(60px);
}

.nav-arrow-left:hover {
  transform: translateX(-60px) scale(1.1);
}

.nav-arrow-right:hover {
  transform: translateX(60px) scale(1.1);
}

/* Hide arrows on desktop where packages are displayed in a row */
@media (min-width: 991px) {
  .nav-arrow {
    display: none;
  }
}

.packages-list {
  display: flex;
  gap: px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 28px 50px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.packages-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.package-item {
  flex-shrink: 0;
  width: 250px;
  min-height: 420px;
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  margin: 26px 16px;
}

.package-item.center {
  transform: scale(1.1);
  z-index: 2;
  /* box-shadow: 0 12px 35px rgba(144, 65, 65, 0.2); */
  border-color: #904141;
}

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

.package-item.center:hover {
  transform: scale(1.1) translateY(-8px);
}

.package-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.package-item:hover .package-image img {
  transform: scale(1.05);
}

.package-content {
  padding: 20px;
  height: calc(100% - 180px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.package-header {
  margin-bottom: 15px;
}

.package-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.package-price {
  font-size: 24px;
  font-weight: 800;
  color: #904141;
  margin-bottom: 10px;
}

.package-includes h4 {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-includes li {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.package-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #904141;
  font-weight: bold;
  font-size: 14px;
}

/* Center card special styling */
.package-item.center .package-price {
  color: #904141;
  text-shadow: 0 2px 4px rgba(144, 65, 65, 0.2);
}

.package-item.center .package-header h3 {
  color: #904141;
}

/* Responsive adjustments */
@media (min-width: 576px) and (max-width: 991px) {
  .package-item {
    width: 260px;
    height: 380px;
  }

  .packages-list {
    padding: 20px 20px;
    gap: 20px;
  }

  .package-content {
    padding: 16px;
  }

  .package-header h3 {
    font-size: 20px;
  }

  .package-price {
    font-size: 22px;
  }
}

@media (min-width: 991px) {
  .packages-container {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
  }

  .package-item.center {
    border-color: transparent;
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  /* Enhanced hover effects for desktop */
  .package-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 420px;
  }

  .package-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #904141;
  }

  .package-item.center:hover {
    transform: scale(1.12) translateY(-12px);
    box-shadow: 0 25px 50px rgba(144, 65, 65, 0.25);
    border-color: #904141;
  }

  /* Enhanced image hover effects */
  .package-item:hover .package-image img {
    transform: scale(1.08);
  }

  .packages-list {
    justify-content: space-between;
    padding: 0;
    gap: 35px;
  }
  /* Price animation on hover */
  .package-item:hover .package-price {
    transform: scale(1.05);
    color: #b85555;
  }

  /* Package content hover effects */
  .package-item:hover .package-content {
    transform: translateY(-2px);
  }

  /* Smooth transitions for package includes */
  .package-includes li {
    transition: all 0.3s ease;
  }

  .package-item:hover .package-includes li {
    color: #333;
    transform: translateX(3px);
  }

  .package-item:hover .package-includes li::before {
    color: #b85555;
    transform: scale(1.2);
  }

  /* Header title hover effect */
  .package-item:hover .package-header h3 {
    color: #904141;
    transition: color 0.3s ease;
  }

  /* Subtle glow effect on hover */
  .package-item:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      45deg,
      rgba(144, 65, 65, 0.05),
      rgba(184, 85, 85, 0.05)
    );
    border-radius: 16px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  .package-item::after {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  /* recommendation section */
  .recommendation-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
  }

  .accordion {
    display: none;
  }

  .desktop-benefits {
    display: block !important;
  }

  .desktop-card {
    display: flex;
    flex-direction: column;
  }

  .desktop-card h2 {
    font-size: 24px !important;
    margin-bottom: 12px;
  }

  .desktop-card .sub-text {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.4;
  }

  .desktop-benefit-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .desktop-benefit-container .icon-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 8px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: background 0.3s ease;
  }

  .desktop-benefit-container .icon-content:hover {
    background: #f0f0f0;
  }

  .desktop-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #feebe7;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }

  .desktop-icon svg {
    width: 25px;
    height: 25px;
  }

  .desktop-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .desktop-content h5 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
  }

  .desktop-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
  }

  .requirement-content h3 {
    font-size: 18px;
    font-weight: 500;
  }
  .requirement-content p {
    font-size: 14px;
  }
  .requirement-item .icon svg {
    width: 25px !important;
    height: 25px !important;
  }

  h1 {
    font-size: 50px !important;
    margin-bottom: 30px !important;
  }
  .hero-section p {
    font-size: 18px;
  }

  .hero-section {
    height: 85vh;
  }

  .requirements-card h2 {
    font-size: 30px !important;
  }

  .requirements-intro {
    font-size: 18px;
  }

  .recommendation h2 {
    font-size: 30px !important;
  }

  .packages h2 {
    font-size: 30px !important;
  }
  .booking-inquiry h2 {
    font-size: 30px !important;
  }
}

.desktop-benefits {
  display: none;
}
/* Booking Inquiry Section */
.booking-inquiry {
  margin: 60px auto 40px;
  padding: 20px;
}

.inquiry-container {
  max-width: 800px;
  margin: 0 auto;
}

.inquiry-content {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.inquiry-content h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 700;
}

.inquiry-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.inquiry-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.feature-item svg {
  flex-shrink: 0;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
  text-decoration: none;
}

.whatsapp-btn:active {
  transform: translateY(0);
}

/* Responsive Design for Inquiry Section */
@media (max-width: 768px) {
  .inquiry-content {
    padding: 30px 20px;
  }

  .inquiry-content h2 {
    font-size: 26px;
  }

  .inquiry-features {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .whatsapp-btn {
    padding: 14px 28px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .inquiry-features {
    gap: 15px;
  }

  .feature-item {
    font-size: 13px;
  }

  .whatsapp-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}
