
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background-color: #041529;
  color: #f5f7fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(4, 21, 41, 0.98);
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #f4b13c;
}

.logo-text-main {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 700;
}

.logo-text-sub {
  font-size: 11px;
  opacity: 0.78;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}

.nav-links a:hover {
  border-color: #33c8ff;
  color: #ffffff;
}

.language-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
}

.language-switcher button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  transition: transform .15s;
}

.language-switcher button.active {
  transform: scale(1.15);
}

.hero {
  background: radial-gradient(circle at top, #123e6b, #020815 55%);
  padding: 32px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(5, 119, 190, 0.18);
  color: #e0f6ff;
  font-size: 11px;
  margin-bottom: 10px;
}

.hero-badge span {
  background: #f4b13c;
  color: #041529;
  font-weight: 700;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
}

.hero-title {
  font-size: 30px;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 16px;
  color: #dee6ff;
  margin-bottom: 16px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 11px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn-primary, .btn-outline {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7c33, #f4b13c);
  color: #041529;
  box-shadow: 0 8px 26px rgba(244,177,60,0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #f5f7fb;
}

.hero-note {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 8px;
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Sections */

section {
  padding: 34px 0;
}

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

.section-kicker {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8acbff;
  margin-bottom: 4px;
}

.section-title {
  font-size: 22px;
}

.section-subtitle {
  font-size: 13px;
  color: #d3ddff;
  margin-top: 6px;
}

/* About & Why Us */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: flex-start;
}

.card {
  background: rgba(6, 22, 45, 0.98);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.card p {
  font-size: 13px;
  color: #dde7ff;
}

.card ul {
  list-style: none;
  margin-top: 8px;
}

.card ul li {
  font-size: 13px;
  margin-bottom: 4px;
  display: flex;
  gap: 6px;
}

.card ul li::before {
  content: "•";
  color: #33c8ff;
}

/* Rooms */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.room-card {
  background: radial-gradient(circle at top left, #18476e, #050f1f);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(198, 219, 255, 0.18);
  box-shadow: 0 14px 36px rgba(0,0,0,0.6);
}

.room-card img {
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.room-body {
  padding: 12px 14px 14px;
}

.room-title {
  font-size: 16px;
  margin-bottom: 6px;
}

.room-meta {
  font-size: 12px;
  color: #d2e5ff;
  margin-bottom: 8px;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.room-tag {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(4, 21, 41, 0.88);
  border: 1px solid rgba(255,255,255,0.12);
}

.room-body .btn-primary {
  padding-inline: 14px;
  font-size: 12px;
}

/* Features list */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.feature-item {
  background: rgba(5, 25, 50, 0.96);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}

.feature-item strong {
  display: block;
  margin-bottom: 4px;
  color: #ffcf6a;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.review-card {
  background: rgba(5, 24, 46, 0.98);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}

.review-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.review-stars {
  color: #ffc857;
  font-size: 12px;
  margin-bottom: 4px;
}

.review-note {
  font-size: 11px;
  opacity: 0.8;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.gallery-grid img {
  border-radius: 12px;
  height: 140px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.09);
}

/* Reservation form */
.booking-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: flex-start;
}

.booking-card {
  background: linear-gradient(135deg, #051226, #123860);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 16px 40px rgba(0,0,0,0.7);
}

.booking-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: #d7e5ff;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 7px 9px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.15);
  color: #f5f7fb;
  font-size: 13px;
}

.form-group textarea {
  min-height: 60px;
  resize: vertical;
}

.form-helper {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 6px;
}

.btn-book {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}

.location-card {
  background: rgba(6, 24, 48, 0.98);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
}

.location-card p {
  margin-bottom: 8px;
}

.location-card .pill {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  font-size: 11px;
  margin-right: 6px;
  margin-top: 4px;
}

/* Floating buttons */
.floating-buttons {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 99;
}

.floating-buttons a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
}

.call-btn {
  background: #ffffff;
  color: #041529;
}

.wa-btn {
  background: #1ebe57;
  color: #ffffff;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0 18px;
  font-size: 11px;
  color: #c7d6ff;
  text-align: center;
  background: #020815;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    text-align: left;
  }

  header {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
  .hero {
    padding-top: 22px;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 24px;
  }
  .section-title {
    font-size: 19px;
  }
}
