*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f7f5f2;
  color: #1F1F1F;
  min-height: 100vh;
}

/* ── Header ── */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
}

.header-container {
    display: flex;
    justify-content: space-between; /* Memisahkan logo ke kiri dan menu ke kanan */
    align-items: center;            /* Menyejajarkan logo dan teks menu di tengah secara vertikal */
    max-width: 1200px;              /* Batas lebar maksimal isi header */
    margin: 0 auto;                 /* Membuat header berada di tengah layar */
    
    /* GANTI NILAI INI: Semakin besar px-nya, header akan terlihat semakin tebal */
    padding: 20px 40px;             /* 20px atas-bawah, 40px kiri-kanan */
}

.logo {
  display: block;
}

.logo img {
    height: 60px;                  /* Atur tinggi logo sesuai kebutuhan (misal: 40px atau 50px) */
    width: auto;                    /* Menjaga proporsi logo agar tidak gepeng */
    object-contain: contain;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-left: 24px;              /* Jarak antar menu */
    font-weight: 300;
}

nav a:hover {
  color: #ffffff;
  opacity: 1;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 55vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0; /* Layer 1 */
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 5;
}

.slide-text {
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  color: #ffffff;
  
  /* Container penyamaan dengan logo */
  max-width: 1200px;           
  margin: 0 auto;              
  padding-left: 40px;          
  padding-right: 40px;
  box-sizing: border-box;
  
  /* FONT & WARNA: Menggunakan Poppins dan langsung putih solid */
  font-family: 'Poppins', sans-serif;
  color: #ffffff; 

  /* PASANG ANIMASI MASUK: Dari bawah ke atas */
  animation: slideUpFade 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* 1. Mengatur Ukuran Judul (h1 & h2) */
.slide-text h1,
.slide-text h2 {
  font-size: 2rem;          /* Mengubah ukuran font judul (Bisa diganti dengan px, misal: 40px) */
  font-weight: 500;           /* Membuat teks tebal/bold */
  margin-bottom: 8px;        /* Memberikan jarak tipis antara judul dan deskripsi di bawahnya */
  line-height: 1.2;
}

/* 2. Mengatur Ukuran Deskripsi (p) */
.slide-text p {
  font-size: 1.3rem;        /* Mengubah ukuran font teks penjelas (Bisa diganti dengan px, misal: 18px) */
  font-weight: 100;           /* Ketebalan normal */
  line-height: 1.5;           /* Jarak antar baris kalimat agar tidak terlalu rapat */
  color: rgba(255, 255, 255, 0.9); /* Membuat teks deskripsi sedikit lebih lembut dibanding judul */
}

/* KANVAS ANIMASI DARI BAWAH KE ATAS */
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(40px); /* Mulai dari 40px lebih bawah */
  }
  100% {
    opacity: 1;
    transform: translateY(0);    /* Berhenti di posisi asli */
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  padding-top: 20px;
  width: 100%;
  min-height: 35vh;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.hero-content > p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 36px;
  letter-spacing: 0.3px;
}

/* ── Widget one-line white bar ── */
#bnl-widget-formular {
  display: flex;
  position: relative;
  margin-top: 24px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 50px;
  padding: 8px 8px 8px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

/* Field wrappers */
#bnl-widget-formular .check-in-date-picker {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 20px 0 0 !important;
  margin: 0 !important;
  flex: 1;
  min-width: 0;
  display: flex;  
  align-items: center;
}

#bnl-widget-formular .check-in-date-picker:last-of-type {
  border-bottom: none;
  padding-right: 8px !important;
}

/* Input group */
#bnl-widget-formular .input-group {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

/* Calendar icon */
#bnl-widget-formular .input-group-addon {
  display: none !important;
}

/* Text inputs Field Check In Check Out*/
#bnl-widget-formular input[type="text"] {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #1F1F1F !important;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem !important;
  font-weight: 400;
  padding: 6px 0 !important;
  width: 100%;
  outline: none !important;
}

#bnl-widget-formular .check-in-date-picker input[type="text"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3Cpath d='M16 2v4'/%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
  padding: 6px 0 6px 32px !important;
}

#bnl-widget-formular input[type="text"]::placeholder {
  color: #888 !important;
  font-weight: 300;
}

/* Dividers between fields */
#bnl-widget-formular .check-in-date-picker + .check-in-date-picker {
  border-left: none;
  padding-left: 36px;
}

/* Promo code field */
#bnl-widget-formular .col-sm-2 {
  flex: 0.8;
  min-width: 0;
  padding: 0 20px 0 0;
}

#bnl-widget-formular #promo_code {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z'/%3E%3Cpath d='M9 9h.01'/%3E%3Cpath d='m15 9-6 6'/%3E%3Cpath d='M15 15h.01'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 20px center !important;
  background-color: transparent !important;
  border: none !important;
  border-left: none !important;
  border-radius: 0 !important;
  color: #1F1F1F !important;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  height: auto !important;
  margin-top: 0 !important;
  padding: 6px 0 6px 52px !important;
  width: 100% !important;
  outline: none !important;
}

#bnl-widget-formular #promo_code::placeholder {
  color: #888 !important;
  font-weight: 300;
}

/* Book button */
#bnl-widget-formular .col-sm-4 {
  flex: 0 0 auto;
  text-align: right;
}

#bnl-widget-formular #booking {
  background: #e4236e !important;
  border: none !important;
  border-radius: 50px !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  height: 46px;
  letter-spacing: 0.3px;
  padding: 0 48px !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  outline: none !important;
}

#bnl-widget-formular #booking:hover {
  background: #c21456 !important;
  transform: translateY(-1px);
}

#bnl-widget-formular #booking:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  transform: translateY(0);
}

/* Remove default focus outline and borders box from BookandLink widget elements */
#bnl-widget-formular input,
#bnl-widget-formular select,
#bnl-widget-formular button,
#bnl-widget-formular input:focus,
#bnl-widget-formular select:focus,
#bnl-widget-formular button:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}


/* ── Info Section ── */
.info {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}

.info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.info p {
  color: #666;
  line-height: 1.7;
  font-size: 1.rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.feature-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  stroke: #e4236e;
  stroke-width: 1.5;
  fill: none;
}

.feature h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.feature p {
  font-size: 0.9rem;
  color: #888;
  font-weight: 300;
  line-height: 1.6;
}

/* ── Footer ── */
.site-footer {
  background-color: #ffdeeb; /* Background Color Footer */
  color: #000000;
  padding: 60px 24px 40px 24px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-top: 60px; /* Elegant spacing between content sections and the footer */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 10px;
}

.footer-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-link {
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.footer-link svg {
  stroke-width: 2px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  color: #393939;
}

.footer-link:hover svg {
  opacity: 1;
}

.footer-copyright {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 300;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 50px 20px 30px 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  
  .footer-info {
    flex-direction: column;
    gap: 20px;
  }
}

/* ── Rooms Section (Glassmorphism Variant) ── */
.rooms-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
  color: #e4236e;
  margin-bottom: 8px;
}

.section-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: left;
  color: #404040;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* KARTU UTAMA */
.room-card {
  position: relative;        
  height: 400px;             
  background: #2d1620;
  border-radius: 30px;
  overflow: hidden; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* Diperhalus bayangannya */
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s;
  cursor: pointer;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* WRAPPER GAMBAR (100% Tinggi Kartu) */
.room-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 75%;
  overflow: hidden;
  z-index: 1;
}

.room-image img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  
  /* TAMBAHKAN INI: Memaksa fokus gambar ke area atas */
  object-position: 30% 10%; 

  
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.room-card:hover .room-image img {
  transform: scale(1.04);
}

/* HAPUS OVERLAY HITAM LAMA (Diubah jadi Transparan) */
.room-card::after {
  display: none; /* Overlay hitam penuh dimatikan */
}

/* KOTAK INFO DENGAN DARK FROSTED GLASS (MENGAMBIL WARNA GELAP FOTO) */
.room-info {
  position: absolute;
  bottom: 0;                 
  left: 0;
  right: 0;
  z-index: 3;
  padding: 12px;
  padding-top: 20px; 
  box-sizing: border-box;
  
  /* 1. EFEK BLUR KACA */
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(20px); 
  
  /* 2. LATAR BELAKANG GELAP ALAMI: 
     Menggunakan warna hitam/charcoal transparan (0.45) agar menyatu dengan warna gelap foto */
  background: linear-gradient(to bottom, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.65) 100%); 
  
  /* 3. MASKING GRADASI HALUS (Menghilangkan garis patah) */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 40px);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* 4. WARNA JUDUL: Diubah kembali menjadi PUTIH agar kontras di atas kaca gelap */
.room-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  color: #ffffff; 
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* TOMBOL PEMESANAN (FULL WIDTH STYLE) */
/* TOMBOL PEMESANAN (WHITE BACKGROUND STYLE) */
.room-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;    
  text-align: center;        
  
  padding: 12px 26px;        
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 50px;
  
  /* 1. UBAH DI SINI: Background menjadi putih padat dan teks menjadi gelap agar kontras */
  background: #ffffff;
  color: #141414;            
  border: 1.5px solid #ffffff; 
  
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

/* Efek Hover Tombol (Inverted Style) */
.room-btn:hover {
  /* 2. UBAH DI SINI: Saat di-hover, tombol berubah menjadi transparan dengan teks putih */
  background: transparent;       
  color: #ffffff;            
  border-color: #ffffff;     /* Garis tepi tetap putih agar bentuk tombol terlihat jelas */
  transform: translateY(-2px);
}
/* CONTAINER DETAIL KAMAR */
.room-details {
  display: flex;
  align-items: center;
  gap: 12px;                 /* Jarak antar kapsul */
  margin-bottom: 14px;       /* Jarak ke judul kamar di bawahnya */
  font-family: 'Poppins', sans-serif;
}

/* GAYA TEKS DESKRIPSI KAMAR */
.room-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;         /* Ukuran font sedikit lebih kecil agar proporsional */
  font-weight: 300;           /* Ketebalan tipis/light agar terkesan bersih */
  color: rgba(255, 255, 255, 0.8); /* Putih lembut agar nyaman dibaca di atas glassmorphism */
  line-height: 1.4;           /* Jarak antar baris kalimat agar tidak rapat */
  text-align: left;
  
  /* MENGATUR JARAK AMAN: 
     Memberikan jarak 4px ke judul atas, dan 14px ke tombol di bawahnya */
  margin: 4px 0 14px 0;       
  
  /* PILHIHAN (Opsional): Membatasi teks maksimal 2 baris saja agar tingginya seragam jika teks kepanjangan */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* SHAPE KAPSUL (PILL/BADGE STYLE) */
.detail-badge {
  font-size: 0.7rem;        /* Ukuran font disesuaikan agar pas di dalam kapsul */
  font-weight: 500;
  font-family: 'Poppins', sans-serif;

  color: #ffffff;            /* Teks putih bersih */
  
  /* Pengaturan padding atas-bawah & kiri-kanan untuk membentuk proporsi kapsul */
  padding: 6px 14px;         
  
  /* Membuat ujung kanan-kiri melengkung sempurna berbentuk kapsul */
  border-radius: 50px;       
  
  /* Latar belakang putih transparan tipis agar efek kaca film terasa */
  background: rgba(255, 255, 255, 0.12); 
  
  /* Memberikan garis tepi halus penegas bentuk shape */
  /* border: 1px solid rgba(255, 255, 255, 0.25);  */
  
  /* Sedikit efek blur di dalam kapsul agar terlihat premium */
  /* backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); */
  
  letter-spacing: 0.3px;
  white-space: nowrap;       /* Mencegah teks turun ke bawah jika layar menyempit */
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
}

/* Datepicker popup */
.datepicker {
  background: #fff !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
  border: none !important;
  padding: 12px !important;
  font-family: 'Poppins', sans-serif !important;
}
.datepicker table { width: 100% !important; }
.datepicker table td,
.datepicker table th {
  border-radius: 8px !important;
  color: #2d2d2d !important;
  font-family: 'Poppins', sans-serif !important;
}
.datepicker table td.active,
.datepicker table td.active:hover {
  background: #e4236e !important;
  color: #fff !important;
}
.datepicker table td.disabled,
.datepicker table td.disabled:hover {
  color: #ddd !important;
}
.datepicker thead th {
  color: #2d2d2d !important;
  font-weight: 300 !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  /* Header styling on mobile to prevent overlapping/wrapping issues */
  .header-container {
    padding: 15px 20px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .logo img {
    height: 45px;
  }

  nav {
    gap: 20px;
  }

  nav a {
    font-size: 1.15rem;
    margin-left: 0;
  }

  /* Hero Section Mobile Adaptations */
  .hero {
    height: auto;
    min-height: 650px; /* Taller fixed min-height to ensure space */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    padding-top: 140px; /* Space for the stacked header */
    padding-bottom: 30px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  /* Move the absolute slide-text upwards on mobile, so it doesn't overlap the booking widget at the bottom */
  .slide-text {
    position: absolute;
    bottom: auto;
    top: 180px;
    left: 0;
    right: 0;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    box-sizing: border-box;
  }

  .slide-text h1,
  .slide-text h2 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  }

  .slide-text p {
    font-size: 0.9rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
    max-width: 320px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  }

  /* Padding left/right and layout adjustment for the widget container */
  .hero-content {
    min-height: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    margin-top: auto;
  }

  #bnl-widget-formular {
    flex-direction: column;
    border-radius: 24px;
    padding: 20px 20px 20px 20px;
    gap: 0;
  }

  #bnl-widget-formular .check-in-date-picker {
    width: 100%;
    padding: 10px 0 !important;
    border-left: none !important;
    border-bottom: 1px solid #e8e8e8;
  }

  #bnl-widget-formular .check-in-date-picker:last-of-type {
    border-bottom: none;
  }

  #bnl-widget-formular .col-sm-2 {
    width: 100%;
    padding: 10px 0 !important;
    border-left: none !important;
    border-top: 1px solid #e8e8e8;
  }

  #bnl-widget-formular #promo_code {
    border-left: none !important;
    background-position: left center !important;
    padding-left: 32px !important;
  }

  #bnl-widget-formular .col-sm-4 {
    width: 100%;
    padding-top: 12px;
  }

  #bnl-widget-formular #booking {
    width: 100%;
    border-radius: 50px !important;
  }
}

/* ── Car & Bus Rental Section ── */
.meeting-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 36px 0 12px 0;
  background: linear-gradient(135deg, #ffdeeb 0%, #f9cadd 100%); /* ── Background Color Meeting Room Section ── */
  border-radius: 50px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.04);
  box-sizing: border-box;
}

.meeting-section .section-header {
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.meeting-section .section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #e4236e;
  margin-bottom: 8px;
  text-align: left;
}

.meeting-section .section-header p {
  font-size: 1.5rem;
  font-weight: 300;
  color: #666;
  text-align: left;
}

.meeting-carousel-container {
  position: relative;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

.meeting-carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 30px 0; /* Increased vertical padding to prevent card hover shadows and translations from getting clipped */
}

.meeting-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.meeting-card {
  position: relative;        
  height: 430px;             
  background: #4a0021;
  border-radius: 30px;
  overflow: hidden; 
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.05); */
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s;
  cursor: pointer;
}

.meeting-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 12px 30px rgba(0,0,0,0.12); */
}

.meeting-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 75%;
  overflow: hidden;
  z-index: 1;
}

.meeting-image img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  object-position: center; 
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.meeting-card:hover .meeting-image img {
  transform: scale(1.04);
}

.meeting-info {
  position: absolute;
  bottom: 0;                 
  left: 0;
  right: 0;
  z-index: 3;
  padding: 12px;
  padding-top: 20px; 
  box-sizing: border-box;
  backdrop-filter: blur(50px); 
  -webkit-backdrop-filter: blur(10px); 
  background: linear-gradient(to bottom, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.65) 100%); 
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 20px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.meeting-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  color: #ffffff; 
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.meeting-info .meeting-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;         
  font-weight: 300;           
  color: rgba(255, 255, 255, 0.8); 
  line-height: 1.4;           
  text-align: left;
  margin: 4px 0 14px 0;       
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meeting-specs {
  display: flex; /* Switched from grid to flex for cleaner vertical stacking */
  flex-direction: column;
  gap: 10px; /* Adjust vertical spacing between rows */
  width: 100%;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  text-align: left;
}

.spec-item {
  display: flex;
  align-items: center;
  /* white-space: nowrap; */ /* Optional: Remove this if text is long so it wraps gracefully */
  gap: 8px;
}

.spec-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.65);
}

.spec-label {
  font-weight: 500;
  color: #ffffff;
  margin-right: 4px;
}

.meeting-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;    
  text-align: center;        
  padding: 12px 26px;        
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  background: #ffffff;
  color: #141414;            
  border: 1.5px solid #ffffff; 
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.meeting-btn:hover {
  background: transparent;       
  color: #ffffff;            
  border-color: #ffffff;     
  transform: translateY(-2px);
}

/* Card size in carousel (4 cards per view on desktop) */
.meeting-carousel-track .meeting-card {
  flex: 0 0 calc((100% - 72px) / 4);
  width: calc((100% - 72px) / 4);
  box-sizing: border-box;
}

/* Tablet: 2 cards per view */
@media (max-width: 1024px) {
  .meeting-carousel-track .meeting-card {
    flex: 0 0 calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
    height: 380px;
  }
  .meeting-carousel-track .meeting-card .meeting-image {
    height: 100%;
  }
  .meeting-carousel-track .meeting-card .meeting-image img {
    height: 100%;
  }
  .meeting-carousel-track .meeting-card .meeting-info {
    padding: 10px;
    padding-top: 15px;
  }
  .meeting-carousel-track .meeting-card .meeting-info h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }
  .meeting-carousel-track .meeting-card .meeting-info .meeting-desc {
    font-size: 0.8rem;
    line-height: 1.35;
    margin: 4px 0 10px 0;
    -webkit-line-clamp: 2;
  }
  .meeting-carousel-track .meeting-card .meeting-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 8px;
    margin-bottom: 12px;
    font-size: 0.82rem;
  }
  .meeting-carousel-track .meeting-card .spec-item {
    gap: 6px;
  }
  .meeting-carousel-track .meeting-card .spec-item svg {
    width: 14px;
    height: 14px;
  }
  .meeting-carousel-track .meeting-card .meeting-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Optimizations for Desktop (4 cards per view) to fit beautifully */
@media (min-width: 1025px) {
  .meeting-card {
    height: 380px;
  }
  .meeting-image {
    height: 65%;
  }
  .meeting-info {
    padding: 10px;
    padding-top: 15px;
  }
  .meeting-info h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }
  .meeting-info .meeting-desc {
    font-size: 0.8rem;
    line-height: 1.35;
    margin: 4px 0 10px 0;
    -webkit-line-clamp: 2;
  }
  .meeting-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 8px;
    margin-bottom: 12px;
    font-size: 0.82rem;
  }
  .spec-item {
    gap: 6px;
  }
  .spec-item svg {
    width: 14px;
    height: 14px;
  }
  .meeting-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Carousel Controls Container (placed side-by-side equal with section title) */
.carousel-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px; /* Alignment visual adjustment relative to the text baseline */
}

/* Carousel Dots Pagination */
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-right: 12px; /* Separation from the prev-btn button */
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 0, 89, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-dot:hover {
  background: rgba(255, 0, 98, 0.5);
}

.carousel-dot.active {
  width: 20px;
  border-radius: 4px;
  background: #e4236e;
}

/* Carousel Buttons */
.carousel-btn {
  position: relative;
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  color: #e4236e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.carousel-btn svg {
  stroke-width: 2.5;
}

.carousel-btn:hover {
  background: #e4236e;
  color: #ffffff;
  border-color: #e4236e;
  box-shadow: 0 6px 18px rgba(31, 31, 31, 0.25);
}

.carousel-btn:active {
  transform: scale(0.94);
}

.carousel-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(0, 0, 0, 0.05);
  color: #aaa;
}

/* Responsive configurations */
@media (max-width: 768px) {
  .meeting-section {
    padding: 40px 0;
    border-radius: 20px;
    margin: 40px 16px;
  }

  .meeting-section .section-header {
    padding: 0 20px;
  }

  .meeting-carousel-container {
    padding: 0 20px;
  }

  .carousel-controls {
    display: none; /* Hide buttons on mobile, rely on swipe */
  }
  
  .meeting-carousel-track .meeting-card {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .meeting-carousel-track-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
  }
  
  .meeting-carousel-track .meeting-card {
    scroll-snap-align: start;
  }
}

/* ── Back to Top Button ── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e4236e;
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(83, 186, 184, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.back-to-top:hover {
  background: #c21456;
  box-shadow: 0 6px 20px rgba(58, 149, 147, 0.4);
  transform: translateY(-5px);
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

.back-to-top:active {
  transform: translateY(-2px) scale(0.95);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* ── Widget Input Elements ── */
#bnl-widget-formular select,
#bnl-widget-formular input[type="text"],
#bnl-widget-formular input[type="date"],
#bnl-widget-formular .flatpickr-input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #1F1F1F !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1rem !important; /* Smaller font size as requested */
  font-weight: 400 !important;
  padding: 6px 0 !important;
  width: 100% !important;
  outline: none !important;
  box-sizing: border-box !important;
}

/* Custom Icons inside widget */
#bnl-widget-formular select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m8 10 4 4 4-4'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
  padding-left: 28px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

#bnl-widget-formular #inquiry-date {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3Cpath d='M16 2v4'/%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
  padding-left: 28px !important;
}

#bnl-widget-formular #inquiry-guests {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 20px center !important;
  padding-left: 52px !important;
}

/* Remove default focus outline on select, inputs and buttons */
#bnl-widget-formular select:focus,
#bnl-widget-formular input:focus,
#bnl-widget-formular button:focus,
#bnl-widget-formular select:active,
#bnl-widget-formular input:active,
#bnl-widget-formular button:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

#bnl-widget-formular select::placeholder,
#bnl-widget-formular input::placeholder {
  color: #888 !important;
  font-weight: 300 !important;
}

/* ── Flatpickr Pink Custom Theme ── */
.flatpickr-calendar {
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  font-family: 'Poppins', sans-serif !important;
  padding: 6px !important;
  font-size: 0.85rem !important; /* Smaller size picker popup */
  max-width: 250px !important;
  width: 250px !important;
}

.flatpickr-months {
  padding: 4px 0 !important;
}

.flatpickr-days {
  width: 238px !important;
}

.flatpickr-day {
  height: 28px !important;
  line-height: 28px !important;
  max-width: 28px !important;
  margin: 1px 2px !important;
  border-radius: 6px !important;
}

.flatpickr-day.selected, 
.flatpickr-day.selected:hover, 
.flatpickr-day.selected:focus,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #e4236e !important;
  border-color: #e4236e !important;
  color: #fff !important;
}

.flatpickr-day.today {
  border-color: #e4236e !important;
  color: #e4236e !important;
}

.flatpickr-day.today:hover {
  background: #e4236e !important;
  border-color: #e4236e !important;
  color: #fff !important;
}

.flatpickr-day:hover {
  background: #fce8f0 !important; /* light pink tint */
  border-color: transparent !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: transparent !important;
}

span.flatpickr-weekday {
  color: #888888 !important;
  font-weight: 500 !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg, 
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #e4236e !important;
}

/* ── Ferry Tickets Section ── */
.ferry-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}

.ferry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ferry-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  height: 320px;
  box-sizing: border-box;
}

.ferry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(228, 35, 110, 0.08);
  border-color: rgba(228, 35, 110, 0.3);
}

.ferry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #e4236e;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ferry-card:hover::before {
  opacity: 1;
}

.ferry-route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.route-from, .route-to {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
}

.route-arrow {
  display: flex;
  align-items: center;
  color: #e4236e;
}

.ferry-details {
  margin-bottom: 20px;
}

.ferry-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 10px;
  line-height: 1.4;
}

.ferry-info-row svg {
  flex-shrink: 0;
  color: #e4236e;
  margin-top: 2px;
}

.ferry-price {
  margin-top: auto;
  margin-bottom: 16px;
  border-top: 1px solid #f5f5f5;
  padding-top: 14px;
}

.price-label {
  display: block;
  font-size: 0.78rem;
  color: #888888;
  margin-bottom: 2px;
}

.price-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e4236e;
}

.ferry-btn {
  display: block;
  width: 100%;
  padding: 10px 20px;
  background: transparent;
  color: #e4236e;
  border: 1.5px solid #e4236e;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.ferry-btn:hover {
  background: #e4236e;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(228, 35, 110, 0.2);
}

/* Responsive configurations for Ferry */
@media (max-width: 1024px) {
  .ferry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ferry-grid {
    grid-template-columns: 1fr;
  }
  .ferry-section {
    margin: 40px 16px;
    padding: 0;
  }
}
