/* assets/css/accommodation.css */

.accommodation-banner {
  padding: 165px 0 95px;
  background:
    linear-gradient(135deg, rgba(7, 26, 47, 0.94), rgba(15, 118, 110, 0.9)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.accommodation-banner::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: 8%;
  top: 75px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.28);
  animation: accommodationFloat 6s infinite ease-in-out;
}

@keyframes accommodationFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

.accommodation-banner .container {
  position: relative;
  z-index: 2;
}

.accommodation-badge {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--icsis-accent);
  font-weight: 900;
  margin-bottom: 18px;
}

.accommodation-banner h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  margin-bottom: 14px;
}

.accommodation-banner p {
  font-size: 22px;
  max-width: 760px;
  color: #dbeafe;
}

.accommodation-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(15,118,110,0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(37,99,235,0.08), transparent 34%),
    #f8fbfd;
}

.accommodation-intro {
  max-width: 800px;
  margin: auto;
  color: #64748b;
  font-size: 17px;
}

.venue-box {
  background: #fff;
  border: 1px solid #e4eaf1;
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 18px 55px rgba(15,23,42,0.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.venue-box span {
  display: inline-block;
  background: rgba(15,118,110,0.1);
  color: var(--icsis-primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 900;
  margin-bottom: 12px;
}

.venue-box h3 {
  color: var(--icsis-dark);
  font-weight: 900;
  margin-bottom: 6px;
}

.venue-box p {
  margin: 0;
  color: #64748b;
  font-weight: 700;
}

.hotel-card {
  height: 100%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #e4eaf1;
  box-shadow: 0 18px 50px rgba(15,23,42,0.08);
  transition: 0.4s ease;
}

.hotel-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 75px rgba(15,23,42,0.16);
}

.hotel-img {
  height: 230px;
  position: relative;
  overflow: hidden;
  background: var(--icsis-gradient);
}

.hotel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s ease;
}

.hotel-card:hover .hotel-img img {
  transform: scale(1.1);
}

.hotel-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,26,47,0.65), transparent);
}

.hotel-img span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  background: var(--icsis-accent);
  color: #fff;
  padding: 7px 16px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 13px;
}

.hotel-content {
  padding: 28px;
}

.hotel-content h4 {
  color: var(--icsis-dark);
  font-weight: 900;
  margin-bottom: 10px;
}

.hotel-content p {
  color: var(--icsis-primary);
  font-weight: 800;
  margin-bottom: 16px;
}

.hotel-content p i {
  margin-right: 6px;
}

.hotel-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.hotel-content ul li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 10px;
  color: #475569;
  font-weight: 600;
}

.hotel-content ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--icsis-primary);
}

.hotel-content a {
  display: inline-block;
  background: var(--icsis-gradient);
  color: #fff;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 900;
  transition: 0.3s ease;
}

.hotel-content a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15,118,110,0.25);
}

.booking-note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 28px;
  padding: 32px;
}

.booking-note h3 {
  color: #7c2d12;
  font-weight: 900;
  margin-bottom: 12px;
}

.booking-note h3 i {
  color: var(--icsis-accent);
  margin-right: 8px;
}

.booking-note p {
  color: #7c2d12;
  font-weight: 600;
  line-height: 1.8;
  margin: 0;
}

.accommodation-final-note {
  background: #fff;
  padding: 35px;
  border-radius: 30px;
  border: 1px solid #e4eaf1;
  box-shadow: 0 18px 55px rgba(15,23,42,0.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.accommodation-final-note h3 {
  color: var(--icsis-dark);
  font-weight: 900;
  margin-bottom: 8px;
}

.accommodation-final-note p {
  margin: 0;
  color: #64748b;
  font-weight: 600;
}

@media (max-width: 991px) {
  .accommodation-banner {
    padding: 140px 0 75px;
    text-align: center;
  }

  .accommodation-banner p {
    margin-left: auto;
    margin-right: auto;
  }

  .accommodation-section {
    padding: 70px 0;
  }
}

@media (max-width: 575px) {
  .accommodation-banner {
    padding: 125px 0 60px;
  }

  .accommodation-banner h1 {
    font-size: 38px;
  }

  .accommodation-banner p {
    font-size: 18px;
  }

  .accommodation-section {
    padding: 55px 0;
  }

  .venue-box,
  .hotel-content,
  .booking-note,
  .accommodation-final-note {
    padding: 24px;
  }

  .hotel-img {
    height: 210px;
  }

  .venue-box,
  .accommodation-final-note {
    text-align: center;
    justify-content: center;
  }
}