* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f2ea;
  color: #1f2933;
}

.navbar {
  width: 100%;
  padding: 22px 8%;
  background: rgba(13, 27, 42, 0.96);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #c9a84c;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 24px;
  font-size: 15px;
  font-weight: 600;
}

nav a:hover {
  color: #c9a84c;
}

.menu-toggle {
  display: none;
  background: #c9a84c;
  color: #0d1b2a;
  border: none;
  font-size: 24px;
  font-weight: 900;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(13, 27, 42, 0.65), rgba(13, 27, 42, 0.65)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=1600");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 130px 8% 80px;
  color: white;
}

.hero-content {
  max-width: 720px;
}

.hero-tag {
  color: #c9a84c;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: 62px;
  line-height: 1.1;
  margin: 22px 0;
}

.hero p {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 34px;
  color: #f2f2f2;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s;
}

.btn-gold {
  background: #c9a84c;
  color: #0d1b2a;
}

.btn-gold:hover {
  background: #e0bf61;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #0d1b2a;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  max-width: 720px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.hero-stats strong {
  display: block;
  font-size: 24px;
  color: #c9a84c;
  margin-bottom: 6px;
}

.hero-stats span {
  color: #fff;
  font-size: 14px;
}

.reservation-section {
  padding: 100px 8%;
  background: #fffaf0;
}

.reservation-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  align-items: start;
}

.reservation-left span {
  color: #c9a84c;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.reservation-left h2 {
  font-size: 42px;
  color: #0d1b2a;
  margin: 14px 0;
}

.reservation-left p {
  color: #666;
  line-height: 1.8;
  font-size: 17px;
}

.reservation-form {
  background: white;
  padding: 35px;
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #ddd;
  border-radius: 14px;
  font-size: 15px;
  outline: none;
  background: #fbfbfb;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.reservation-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-top: 5px;
}

.live-price-preview {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: #fff8e7;
  border: 1px dashed #c9a84c;
  color: #0d1b2a;
  font-weight: 700;
  line-height: 1.6;
}

#reservationResult {
  margin-top: 22px;
}

.result-card {
  padding: 22px;
  border-radius: 18px;
  line-height: 1.7;
}

.result-card h3 {
  margin-bottom: 10px;
}

.result-card.success {
  background: #f4f8ef;
  border: 1px solid #d8e8c8;
}

.result-card.error {
  background: #fff1f1;
  border: 1px solid #ffd0d0;
}

.result-card .btn {
  margin-top: 16px;
}

.price-note {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.section {
  padding: 95px 8%;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-title span {
  color: #c9a84c;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title h2 {
  font-size: 42px;
  color: #0d1b2a;
  margin: 12px 0;
}

.section-title p {
  color: #666;
  line-height: 1.7;
}

.why-section {
  padding: 95px 8%;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-card {
  background: #fffaf0;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid #f0e3c7;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card h3 {
  color: #0d1b2a;
  font-size: 23px;
  margin-bottom: 12px;
}

.why-card p {
  color: #666;
  line-height: 1.7;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.room-card:hover {
  transform: translateY(-8px);
}

.room-image {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.image-1 {
  background-image: url("https://images.unsplash.com/photo-1631049307264-da0ec9d70304?q=80&w=1200");
}

.image-2 {
  background-image: url("https://images.unsplash.com/photo-1590490360182-c33d57733427?q=80&w=1200");
}

.image-3 {
  background-image: url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?q=80&w=1200");
}

.room-content {
  padding: 26px;
}

.room-content h3 {
  font-size: 24px;
  color: #0d1b2a;
  margin-bottom: 12px;
}

.room-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
}

.room-content ul {
  list-style: none;
}

.room-content li {
  padding: 7px 0;
  color: #333;
}

.room-content li::before {
  content: "✓";
  color: #c9a84c;
  font-weight: bold;
  margin-right: 8px;
}

.room-price {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-price span {
  color: #777;
  font-size: 14px;
}

.room-price strong {
  color: #0d1b2a;
  font-size: 24px;
}

.room-btn {
  display: block;
  margin-top: 18px;
  background: #0d1b2a;
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s;
}

.room-btn:hover {
  background: #c9a84c;
  color: #0d1b2a;
}

.services-section {
  padding: 95px 8%;
  background: #0d1b2a;
}

.section-title.light h2,
.section-title.light p {
  color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-box {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 28px;
  text-align: center;
  border-radius: 18px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.3s;
}

.service-box:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  min-height: 280px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-1 {
  background-image: url("https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?q=80&w=1200");
}

.gallery-2 {
  background-image: url("https://images.unsplash.com/photo-1564501049412-61c2a3083791?q=80&w=1200");
}

.gallery-3 {
  background-image: url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?q=80&w=1200");
}

.gallery-4 {
  background-image: url("https://images.unsplash.com/photo-1578683010236-d716f9a3f461?q=80&w=1200");
}

.reviews-section {
  padding: 95px 8%;
  background: #0d1b2a;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.review-card p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.review-card strong {
  color: #c9a84c;
}

.faq-section {
  padding: 95px 8%;
  background: #fffaf0;
}

.faq-list {
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  background: white;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid #eee1c8;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  color: #0d1b2a;
  font-size: 21px;
  font-weight: 800;
}

.faq-question span {
  min-width: 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #c9a84c;
  color: #0d1b2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: 0.3s;
}

.faq-answer {
  display: none;
  margin-top: 14px;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.contact-section {
  padding: 100px 8%;
  background:
    linear-gradient(rgba(13, 27, 42, 0.78), rgba(13, 27, 42, 0.78)),
    url("https://images.unsplash.com/photo-1445019980597-93fa8acb246c?q=80&w=1600");
  background-size: cover;
  background-position: center;
}

.contact-box {
  max-width: 700px;
  background: white;
  padding: 45px;
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.contact-box span {
  color: #c9a84c;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-box h2 {
  font-size: 38px;
  color: #0d1b2a;
  margin: 14px 0;
}

.contact-box p {
  color: #555;
  line-height: 1.7;
}

.contact-info {
  margin: 25px 0;
}

.contact-info p {
  margin-bottom: 10px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #25d366;
  color: white;
  padding: 15px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  z-index: 200;
  transition: 0.3s;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
}

footer {
  background: #07111d;
  color: white;
  text-align: center;
  padding: 25px;
}

@media (max-width: 950px) {
  .navbar {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 18px 5%;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
    background: #0d1b2a;
    padding: 15px 0 5px;
  }

  nav.active {
    display: grid;
    gap: 10px;
  }

  nav a {
    display: block;
    margin: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
  }

  .hero {
    padding: 150px 6% 80px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-stats,
  .reservation-container,
  .form-row,
  .why-grid,
  .room-grid,
  .services-grid,
  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 30px;
  }

  .reservation-left h2,
  .section-title h2,
  .contact-box h2 {
    font-size: 34px;
  }

  .section,
  .why-section,
  .services-section,
  .contact-section,
  .reservation-section,
  .reviews-section,
  .faq-section {
    padding: 75px 6%;
  }

  .reservation-form,
  .contact-box {
    padding: 30px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    padding: 13px 18px;
  }
}

@media (max-width: 520px) {
  .logo {
    font-size: 21px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .room-image,
  .gallery-item {
    min-height: 220px;
  }

  .faq-question {
    font-size: 18px;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    text-align: center;
  }
}