:root {
  --site-navy: #173b7a;
  --site-indigo: #2746b0;
  --site-sky: #53b6ff;
  --site-purple: #7b61ff;
  --site-pink: #ff6fb5;
  --site-mint: #61eecb;
  --site-orange: #ff8a3d;
  --site-coral: #ff5f6d;
  --site-gold: #ffd166;
  --site-text: #17304f;
  --site-muted: #5e708a;
  --site-white: #ffffff;
  --site-shadow: 0 20px 60px rgba(22, 51, 108, 0.12);
  --site-radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--site-text);
  background:
    radial-gradient(circle at 8% 12%, rgba(83, 182, 255, 0.28), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(255, 111, 181, 0.22), transparent 20%),
    radial-gradient(circle at 82% 36%, rgba(255, 209, 102, 0.22), transparent 18%),
    radial-gradient(circle at 20% 68%, rgba(123, 97, 255, 0.18), transparent 20%),
    radial-gradient(circle at 58% 82%, rgba(97, 238, 203, 0.16), transparent 22%),
    linear-gradient(125deg, #eef8ff 0%, #f7efff 20%, #fff1f6 40%, #fff8de 64%, #ecfff8 82%, #eefcff 100%);
  background-attachment: fixed;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(18px);
}

body::before {
  width: 340px;
  height: 340px;
  top: 18%;
  right: -110px;
  background: radial-gradient(circle, rgba(255, 111, 181, 0.34), rgba(255, 111, 181, 0));
}

body::after {
  width: 360px;
  height: 360px;
  bottom: 6%;
  left: -120px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.3), rgba(123, 97, 255, 0));
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-4, .display-5 {
  font-family: "Playfair Display", serif;
  color: var(--site-text);
  line-height: 1.15;
}

p, li {
  line-height: 1.75;
  color: var(--site-muted);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  padding: 18px 0;
  background: rgba(245, 251, 255, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 59, 122, 0.08);
}

.site-navbar {
  padding: 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.site-brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(39, 70, 176, 0.15);
  padding: 8px;
}

.site-brand span {
  display: flex;
  flex-direction: column;
}

.site-brand strong {
  font-size: 1.1rem;
  color: var(--site-navy);
}

.site-brand small {
  color: var(--site-muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.site-navbar .nav-link {
  color: var(--site-text);
  font-weight: 700;
  padding: 12px 16px !important;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
  color: var(--site-indigo);
}

.nav-cta-item {
  margin-left: 8px;
}

.nav-enquiry-btn {
  padding: 12px 22px;
  line-height: 1;
}

.site-navbar-toggler {
  border: 0;
  box-shadow: none !important;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.site-navbar-toggler span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--site-navy);
}

.btn-site-primary,
.btn-site-outline,
.btn-site-secondary,
.btn-site-whatsapp {
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  transition: all 0.3s ease;
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-site-primary {
  color: var(--site-white);
  background: linear-gradient(135deg, var(--site-coral), var(--site-pink), var(--site-orange));
  box-shadow: 0 18px 35px rgba(255, 95, 109, 0.25);
}

.btn-site-primary:hover {
  color: var(--site-white);
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(255, 95, 109, 0.3);
}

.btn-site-outline {
  color: var(--site-navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 59, 122, 0.16);
}

.btn-site-outline:hover {
  color: var(--site-navy);
  background: rgba(255, 255, 255, 1);
}

.btn-site-secondary {
  color: var(--site-navy);
  background: linear-gradient(135deg, #fff3c6, #ffd7ea, #d7fff3);
}

.btn-site-whatsapp {
  color: var(--site-white);
  background: linear-gradient(135deg, #18c57a, #25d366);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.22);
}

.btn-site-whatsapp:hover {
  color: var(--site-white);
  transform: translateY(-2px);
}

.site-section {
  padding: 88px 0;
  position: relative;
}

.site-section-tight {
  padding: 56px 0;
  position: relative;
}

.site-section::before,
.site-section-tight::before {
  content: "";
  position: absolute;
  inset: 20px 0 auto;
  height: 180px;
  background: linear-gradient(90deg, rgba(83, 182, 255, 0.1), rgba(123, 97, 255, 0.08), rgba(255, 111, 181, 0.08), rgba(255, 209, 102, 0.08), rgba(97, 238, 203, 0.08));
  border-radius: 999px;
  filter: blur(40px);
  z-index: -1;
}

.site-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.16)),
    linear-gradient(120deg, rgba(83, 182, 255, 0.14), rgba(123, 97, 255, 0.1), rgba(255, 111, 181, 0.1), rgba(255, 209, 102, 0.1), rgba(97, 238, 203, 0.08));
}

.site-hero::before,
.site-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.site-hero::before {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, rgba(83, 182, 255, 0.3), rgba(123, 97, 255, 0.22), rgba(97, 238, 203, 0.16));
  top: -60px;
  left: -120px;
}

.site-hero::after {
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.22), rgba(255, 111, 181, 0.2), rgba(255, 209, 102, 0.18));
  right: -120px;
  bottom: -80px;
}

.hero-card,
.site-card,
.info-card,
.feature-card,
.highlight-card,
.cta-band,
.form-card,
.footer-card,
.room-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 245, 0.9));
  border: 1px solid rgba(23, 59, 122, 0.08);
  border-radius: var(--site-radius);
  box-shadow: var(--site-shadow);
}

.hero-card {
  padding: 28px;
}

.hero-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--site-indigo);
  background: rgba(83, 182, 255, 0.12);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2.7rem, 4vw, 4.8rem);
  margin-bottom: 18px;
}

.hero-copy {
  font-size: 1.08rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.stat-pill {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(83, 182, 255, 0.18), rgba(255, 209, 102, 0.12), rgba(255, 255, 255, 0.92));
}

.stat-pill strong {
  display: block;
  font-size: 1.6rem;
  color: var(--site-navy);
}

.stat-pill span {
  color: var(--site-muted);
  font-size: 0.95rem;
}

.hero-image-stack {
  position: relative;
  min-height: 560px;
}

.hero-image-main,
.hero-image-accent {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(23, 59, 122, 0.2);
}

.hero-image-main {
  inset: 0 40px 90px 0;
}

.hero-image-accent {
  right: 0;
  bottom: 0;
  width: 58%;
  max-width: 320px;
}

.hero-image-main img,
.hero-image-accent img,
.room-card img,
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  left: 22px;
  bottom: 24px;
  z-index: 2;
  background: linear-gradient(135deg, var(--site-navy), var(--site-indigo));
  color: var(--site-white);
  padding: 16px 20px;
  border-radius: 20px;
  max-width: 230px;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 14px;
}

.feature-card,
.site-card,
.info-card,
.highlight-card,
.room-card,
.form-card {
  height: 100%;
  padding: 28px;
}

.feature-icon,
.info-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: var(--site-white);
  background: linear-gradient(135deg, var(--site-indigo), var(--site-purple), var(--site-sky));
}

.feature-card h3,
.room-card h3,
.site-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.gradient-panel {
  background: linear-gradient(135deg, #143269 0%, #5b4dff 35%, #ff6fb5 68%, #57c2ff 100%);
  color: var(--site-white);
}

.gradient-panel h2,
.gradient-panel h3,
.gradient-panel p,
.gradient-panel li {
  color: var(--site-white);
}

.gradient-panel.cta-band {
  background: linear-gradient(135deg, rgba(255, 244, 225, 0.98), rgba(255, 231, 244, 0.96), rgba(234, 244, 255, 0.96), rgba(236, 255, 247, 0.94));
  border: 1px solid rgba(23, 59, 122, 0.08);
}

.gradient-panel.cta-band,
.gradient-panel.cta-band h2,
.gradient-panel.cta-band h3,
.gradient-panel.cta-band p,
.gradient-panel.cta-band li {
  color: var(--site-text);
}

.gradient-panel.cta-band .section-eyebrow {
  background: rgba(123, 97, 255, 0.12) !important;
  color: var(--site-indigo) !important;
}

.check-list,
.contact-list,
.mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li,
.contact-list li,
.mini-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.check-list li::before,
.contact-list li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--site-coral), var(--site-orange));
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 255, 0.88));
}

.image-panel {
  border-radius: 34px;
  overflow: hidden;
  min-height: 100%;
  box-shadow: var(--site-shadow);
}

.service-grid,
.room-grid,
.faq-grid {
  display: grid;
  gap: 24px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-card {
  padding: 0;
  overflow: hidden;
}

.room-card-image {
  height: 240px;
}

.room-card-body {
  padding: 26px;
}

.room-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--site-indigo);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.amenity-pill {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(83, 182, 255, 0.14), rgba(255, 111, 181, 0.1), rgba(255, 209, 102, 0.12));
  color: var(--site-navy);
  font-weight: 700;
}

.cta-band {
  padding: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 225, 0.96), rgba(255, 232, 244, 0.94), rgba(237, 248, 255, 0.94), rgba(239, 255, 248, 0.92));
}

.page-hero {
  padding: 72px 0 52px;
  background:
    radial-gradient(circle at top left, rgba(83, 182, 255, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 95, 109, 0.12), transparent 24%),
    radial-gradient(circle at 60% 0%, rgba(123, 97, 255, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 249, 240, 0.5), rgba(247, 241, 255, 0.46));
}

.page-hero-content {
  max-width: 760px;
}

.breadcrumbs-lite {
  color: var(--site-indigo);
  font-weight: 700;
  margin-bottom: 16px;
}

.form-card {
  padding: 34px;
}

.site-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--site-text);
}

.site-form .form-control {
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(23, 59, 122, 0.12);
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.94);
}

.site-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.site-form .form-control:focus {
  border-color: rgba(39, 70, 176, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(83, 182, 255, 0.18);
}

.contact-map {
  overflow: hidden;
  border-radius: var(--site-radius);
  box-shadow: var(--site-shadow);
  min-height: 100%;
}

.contact-map iframe {
  width: 100%;
  min-height: 100%;
  border: 0;
}

.faq-item {
  padding: 24px;
}

.faq-item h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.site-footer {
  padding: 30px 0 44px;
  background:
    radial-gradient(circle at top left, rgba(83, 182, 255, 0.18), transparent 26%),
    radial-gradient(circle at top center, rgba(123, 97, 255, 0.16), transparent 18%),
    radial-gradient(circle at top right, rgba(255, 138, 61, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(12, 37, 76, 0.98), rgba(25, 54, 104, 0.98));
}

.site-footer,
.site-footer p,
.site-footer a,
.site-footer span,
.site-footer h3,
.site-footer h4 {
  color: var(--site-white);
}

.site-footer .footer-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
  box-shadow: none;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-button {
  margin-top: 14px;
}

.site-footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.floating-contact-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1055;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-call,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  font-weight: 800;
  text-decoration: none;
}

.floating-call svg,
.floating-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.floating-call {
  background: linear-gradient(135deg, #2746b0, #53b6ff);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(39, 70, 176, 0.28);
}

.floating-whatsapp {
  background: linear-gradient(135deg, #18c57a, #25d366);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
}

.floating-call:hover,
.floating-whatsapp:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.success-panel,
.error-panel {
  padding: 28px;
  border-radius: 24px;
  text-align: center;
}

.success-panel {
  background: linear-gradient(135deg, #dff9eb, #f1fff7);
  border: 1px solid rgba(17, 144, 89, 0.18);
}

.error-panel {
  background: linear-gradient(135deg, #ffe4e8, #fff4f6);
  border: 1px solid rgba(214, 51, 108, 0.18);
}

@media (max-width: 991px) {
  .site-header {
    padding: 14px 0;
  }

  .site-navbar .navbar-collapse {
    margin-top: 16px;
  }

  .site-navbar .navbar-nav {
    align-items: stretch !important;
    gap: 4px;
  }

  .nav-cta-item {
    margin-left: 0;
    margin-top: 10px;
  }

  .nav-enquiry-btn {
    width: 100%;
  }

  .hero-image-stack {
    min-height: 420px;
    margin-top: 26px;
  }

  .hero-image-main {
    inset: 0 20px 70px 0;
  }

  .info-strip,
  .service-grid,
  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body {
    background-attachment: scroll;
  }

  .site-section,
  .site-hero,
  .page-hero {
    padding: 56px 0;
  }

  .hero-card,
  .site-card,
  .info-card,
  .feature-card,
  .highlight-card,
  .form-card,
  .cta-band,
  .footer-card {
    padding: 22px;
  }

  .hero-stats,
  .info-strip,
  .service-grid,
  .room-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-image-stack {
    min-height: 360px;
  }

  .hero-image-accent {
    width: 54%;
  }

  .site-brand-logo {
    width: 56px;
    height: 56px;
  }

  .floating-contact-actions {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .floating-call,
  .floating-whatsapp {
    width: 52px;
    height: 52px;
  }
}
