/* =========================================================
   NS Comfort Premium PG - Quiet Luxury (Mobile First)
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-alt: #fffdf9;
  --text: #0f172a;
  --muted: #1e293b;
  --accent: #7c3aed;
  --accent-strong: #a855f7;
  --accent-alt: #6d28d9;
  --accent-alt-strong: #c084fc;
  --card: #ffffff;
  --border: #e9d5ff;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --vh: 1vh;
  --announcement-height: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 20% 12%, rgba(168, 85, 247, 0.14), transparent 46%),
    linear-gradient(180deg, #ffffff 0%, #fffdf9 70%);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* Hide scrollbar on desktop only - scrolling still works */
@media (min-width: 769px) {
  html {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }
}

/* Announcement bar */
.announcement-bar {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.12), rgba(233, 196, 106, 0.18));
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  padding: 6px 0;
  animation: announcementReveal 0.8s ease-out forwards;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.announcement-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #4c1d95;
}

@keyframes announcementReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
a {
  color: inherit;
  text-decoration: none;
}

strong,
b {
  font-weight: 600;
  color: var(--text);
}

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

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

.container {
  width: min(92%, 1120px);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  transition: box-shadow 0.4s ease, background 0.4s ease;
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 6px 6%;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

/* =========================================
   PREMIUM HEADER – FIXED & POLISHED
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.35)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* HEADER INNER WRAPPER - full width */
.site-header .nav-wrap {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 clamp(16px, 4vw, 28px);
  gap: 16px;
  min-width: 0;
}

/* LOGO FIX */
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header .brand img {
  height: 42px;
}

.site-header .brand-text {
  font-weight: 600;
  color: #6f4cff;
}

/* =========================================
   NAV CTA BUTTON GROUP
========================================= */

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(120, 90, 255, 0.18);
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.site-header .nav::-webkit-scrollbar {
  height: 6px;
}

.site-header .nav::-webkit-scrollbar-track {
  background: rgba(124, 58, 237, 0.08);
  border-radius: 3px;
}

.site-header .nav::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.3);
  border-radius: 3px;
}

.site-header .nav::-webkit-scrollbar-thumb:hover {
  background: rgba(124, 58, 237, 0.5);
}

/* NAV BUTTONS – CTA STYLE */
.site-header .nav a {
  height: 40px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.25)
  );
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #2b2b2b;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

/* HOVER – LIFT */
.site-header .nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(120, 90, 255, 0.28);
}

/* ACTIVE PAGE */
.site-header .nav a.active {
  background: linear-gradient(
    135deg,
    rgba(123, 92, 255, 0.35),
    rgba(123, 92, 255, 0.15)
  );
  color: #3b2fb3;
  border-color: rgba(123, 92, 255, 0.35);
}

/* CLICK – PRESS */
.site-header .nav a:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-logo {
  height: 64px !important;
  width: auto !important;
  max-height: none !important;
  object-fit: contain;
}

.brand-text {
  font-family: "Playfair Display", "Sora", serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #1a1a1a;
  white-space: nowrap;
  transition: all 0.4s ease;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    #7f5cff,
    #9f7cff,
    #5cc8ff,
    #7f5cff
  );
  background-size: 300% 100%;
  background-position: 0% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover .gradient-text {
    animation: gradientMove 2.5s ease infinite;
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroScale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroContentRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroEyebrowIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTaglineIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroActionsIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.nav {
  position: absolute;
  top: 64px;
  right: 4%;
  left: 4%;
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.96));
  opacity: 0;
  transform: translateY(-8px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease;
}

.nav.open {
  opacity: 1;
  transform: translateY(0);
  max-height: 320px;
  pointer-events: auto;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 12px;
}

.nav a.active {
  color: var(--accent);
}

.nav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  opacity: 0;
  transform: scaleX(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav a.active::before {
  opacity: 0.7;
  transform: scaleX(1);
}

.nav-cta {
  font-weight: 600;
  justify-self: start;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
  width: 100vw;
  min-height: calc((var(--vh) * 100) - var(--announcement-height));
  animation: heroFadeIn 0.8s ease-out forwards;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.85);
  transform: scale(1);
  animation: heroScale 1s ease-out forwards;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.48) 45%,
      rgba(0, 0, 0, 0.2) 80%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    radial-gradient(circle at center, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

.hero .container {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.hero-stack {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
  min-height: calc((var(--vh) * 100) - var(--announcement-height) - 144px);
  padding-left: 2in;
  gap: 28px;
}

.hero-content {
  position: relative;
  text-align: left;
  z-index: 2;
  max-width: 560px;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(10px);
  animation: heroContentRise 0.7s ease-out forwards;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -20px -40px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.14) 0%,
    rgba(168, 85, 247, 0) 60%
  );
  z-index: -1;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 10px;
}

.hero .eyebrow {
  color: #ffffff;
  opacity: 0;
  animation: heroEyebrowIn 0.6s ease-out forwards;
  text-align: center;
  width: 100%;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.hero-title {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(30px, 6vw, 54px);
  line-height: 1.2;
  margin-bottom: 18px;
  margin-left: -18px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  position: relative;
  opacity: 0;
  animation: heroTitleIn 0.7s ease-out 0.1s forwards;
}


.hero-tagline {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  line-height: 1.8;
  margin-bottom: 26px;
  opacity: 0;
  animation: heroTaglineIn 0.7s ease-out 0.2s forwards;
}

.hero .hero-tagline {
  color: #ffffff !important;
}

.hero-video {
  width: 100%;
  max-width: 860px;
  margin-top: 24px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.hero-video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.hero-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  display: block;
  border: 0;
}
.hero-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
}

@media (max-width: 720px) {
  .hero-video-play {
    display: none;
  }
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  padding: 24px;
}

.video-modal.open {
  display: flex;
}

.video-modal-content {
  width: min(92vw, 840px);
  background: #fff;
  border-radius: 18px;
  position: relative;
  padding: 16px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.3);
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: var(--muted);
}

.video-modal-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 16px;
  opacity: 0;
  animation: heroActionsIn 0.7s ease-out 0.3s forwards;
}

.hero .btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  min-height: 48px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}

.hero .btn::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero .btn-gold {
  color: #ffffff;
}

.hero .btn-primary {
  color: #ffffff;
}

.hero .btn-outline {
  color: #ffffff;
}

.hero .btn-gold:hover {
  color: #ffffff;
}

.hero .btn-primary:hover {
  color: #ffffff;
}

.hero .btn-outline:hover {
  color: #ffffff;
}

.hero .btn:hover::after {
  opacity: 1;
}

.hero .btn:active {
  transform: translateY(0);
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero .btn:hover,
.hero .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 16px 36px rgba(15, 23, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero .btn:active {
  transform: translateY(0);
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Video showcase section - edge-to-edge luxury layout */
.video-showcase {
  padding-top: 48px;
  padding-bottom: 64px;
  text-align: center;
  overflow-x: hidden;
}

.video-showcase .section-title {
  font-size: clamp(20px, 5vw, 36px);
  line-height: 1.3;
  padding: 0 16px;
}

.video-edge-to-edge {
  width: 100%;
  max-width: 100vw;
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 220px;
}

.video-edge-to-edge iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

.video-fullscreen-trigger {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, transform 0.2s ease;
}

.video-fullscreen-trigger:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .video-showcase {
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .video-showcase .section-title {
    padding: 0;
  }

  .video-edge-to-edge {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 32px;
    min-height: 50vh;
  }

  .video-fullscreen-trigger {
    bottom: 16px;
    right: 16px;
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (min-width: 720px) {
  .hero-content {
    padding: 0;
  }
}

@media (min-width: 900px) {
  .hero-title {
    white-space: nowrap;
    font-size: clamp(32px, 4.8vw, 52px);
  }
}

@media (max-width: 900px) {
  .hero-stack {
    grid-template-columns: 1fr;
    padding-left: clamp(16px, 6vw, 24px);
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-title {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
    padding: 0 16px;
  }

  .hero-title {
    margin-left: 0;
  }
}

/* Sections */
.section {
  padding: 96px 0;
}

.section.alt {
  background: linear-gradient(180deg, #f0f7ff 0%, #f2fbf8 55%, #fff4ec 100%);
}

.section-head {
  margin-bottom: 32px;
}

.section#about .section-head {
  text-align: center;
}

#about {
  position: relative;
  overflow: hidden;
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 253, 249, 0.82)),
    url("../assets/images/lobby_view.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  z-index: 0;
}

#about .container {
  position: relative;
  z-index: 1;
}

#about .about-media {
  display: none;
}
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(22px, 5vw, 36px);
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}

.section-intro {
  color: var(--muted);
  margin-top: 12px;
  max-width: 720px;
}

.hero-tagline,
.section-intro,
.about-copy p,
.card ul,
.rule-item,
.amenity,
.contact-details p,
.contact-support,
.contact-note {
  color: var(--muted);
}

.about-grid {
  display: grid;
  gap: 28px;
  color: var(--muted);
  align-items: center;
  text-align: center;
  grid-template-columns: 1fr;
  justify-items: center;
}

.about-copy {
  max-width: 720px;
  margin: 0 auto;
}

.about-media {
  width: min(860px, 100%);
}

.about-copy p + p {
  margin-top: 18px;
}

.about-media img {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 260px;
}

/* About / Why Choose */
.about-why-intro-wrap {
  display: grid;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
  grid-template-columns: 1fr;
}

.about-why-intro {
  display: grid;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  color: var(--muted);
}

.about-why-intro > p {
  text-align: justify;
  line-height: 1.8;
}

/* Founder Note - signature style */
.about-founder-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.founder-note-text {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 4px 0;
}

.founder-note-signature {
  font-family: "Great Vibes", cursive;
  font-size: 36px;
  color: #c41e3a;
  margin: 0 0 2px 0;
  line-height: 1.2;
}

.founder-note-title {
  font-size: 13px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #c41e3a;
  margin: 0;
}

/* 3D Glassmorphism image card */
.about-glass-card {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-glass-card-inner {
  position: relative;
  width: min(280px, 90%);
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 8px 32px rgba(124, 58, 237, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    -4px -4px 24px rgba(255, 255, 255, 0.4);
}

.about-glass-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    transparent 50%,
    rgba(124, 58, 237, 0.08) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.about-glass-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .about-glass-card:hover .about-glass-card-inner {
    transform: rotateY(-8deg) rotateX(4deg) scale(1.02);
    box-shadow:
      0 24px 48px rgba(124, 58, 237, 0.2),
      0 0 0 1px rgba(255, 255, 255, 0.15) inset,
      -8px -8px 32px rgba(255, 255, 255, 0.5);
  }
}

@media (min-width: 768px) {
  .about-why-intro-wrap {
    grid-template-columns: 1fr auto;
    gap: 48px;
  }

  .about-why-intro {
    margin: 0;
  }

  .about-glass-card-inner {
    width: 320px;
  }
}

.about-why-intro p {
  margin: 0;
}

.about-why-head {
  text-align: center;
  margin: 28px auto 24px;
}

.about-why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.about-why-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  background: var(--card);
  display: grid;
  gap: 10px;
  align-content: start;
}

.about-why-emoji {
  font-size: 24px;
}

.about-why-card h4 {
  font-size: 16px;
  font-weight: 600;
}

.about-why-card p {
  color: var(--muted);
  font-size: 14px;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 22px;
  justify-items: stretch;
  align-items: stretch;
  width: 100%;
}

.card {
  background: var(--card);
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

#rooms .container {
  width: min(96%, 1400px);
}

#rooms .card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card.featured {
  border-color: rgba(124, 58, 237, 0.3);
}

.card h3 {
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.price {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 14px;
}

.card ul {
  list-style: none;
  margin-bottom: 20px;
  color: var(--muted);
  flex: 1;
}

.card li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 10px;
}

.card li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

.card-media {
  border-radius: 10px;
  overflow: hidden;
  border: none;
  background: #f4f2ee;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-media img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: none !important;
  transition: none !important;
}

.card .btn {
  width: 100%;
  margin-top: auto;
}

/* Room Tariff table */
.room-tariff-wrap {
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.room-tariff-head {
  margin-bottom: 12px;
}

.room-tariff-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.room-tariff-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px 0;
}

.room-tariff-line {
  display: block;
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  border-radius: 2px;
}

.room-tariff-line--thin {
  height: 1px;
  width: 100%;
  margin: 16px 0;
  background: rgba(124, 58, 237, 0.2);
}

.room-tariff-desc {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.room-tariff-table-wrap {
  margin-top: 20px;
  border-radius: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
}

.room-tariff-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 15px;
}

.room-tariff-table thead tr {
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #fff;
}

.room-tariff-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.room-tariff-table tbody tr {
  background: #fff;
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.room-tariff-table tbody tr:last-child {
  border-bottom: none;
}

.room-tariff-table tbody tr:nth-child(even) {
  background: rgba(124, 58, 237, 0.03);
}

.room-tariff-table td {
  padding: 16px 20px;
  color: var(--muted);
}

.room-tariff-table td:nth-child(2) {
  font-weight: 600;
  color: var(--text);
}

.room-tariff-table td:nth-child(3) {
  text-align: center;
  vertical-align: middle;
}

.room-tariff-advance-cell {
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  background: rgba(124, 58, 237, 0.08);
}

@media (max-width: 600px) {
  .room-tariff-wrap {
    padding: 20px 16px;
    margin-bottom: 32px;
  }

  .room-tariff-table th,
  .room-tariff-table td {
    padding: 12px 14px;
    font-size: 14px;
  }
}

.pricing-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

/* Dining Schedule */
#dining {
  background: linear-gradient(180deg, #f0f7ff 0%, #fffdf9 100%);
}

#dining .section-head {
  text-align: center;
}

#dining .section-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dining-diet-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}

.dining-diet-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.dining-diet-icon {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.dining-diet-icon--veg {
  background: #22c55e;
  border-color: #22c55e;
  color: #22c55e;
}

.dining-diet-icon--nonveg {
  background: #ef4444;
  border-color: #ef4444;
  color: #ef4444;
}

.dining-diet-item--both {
  color: var(--muted);
}

.dining-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.dining-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.08);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.dining-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.25);
}

.dining-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.dining-card:hover .dining-card-icon {
  transform: scale(1.08);
}

.dining-card-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dining-card-icon--breakfast {
  background: rgba(124, 58, 237, 0.12);
  color: var(--accent);
}

.dining-card-icon--lunch {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

.dining-card-icon--dinner {
  background: rgba(30, 41, 59, 0.1);
  color: var(--muted);
}

.dining-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px 0;
}

.dining-card-time {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

.dining-menu-head {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin: 0 0 24px 0;
}

.dining-table-wrap {
  border-radius: 16px;
  overflow: visible;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08);
  background: var(--card);
}

/* Mobile-first: card layout */
.dining-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.dining-table thead {
  display: none;
}

.dining-table tbody tr {
  display: block;
  background: #fff;
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.06);
  transition: box-shadow 0.25s ease;
}

.dining-table tbody tr:last-child {
  margin-bottom: 0;
}

.dining-table tbody tr:hover {
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.1);
}

.dining-table td {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--muted);
  border: none;
}

.dining-table td:not(:last-child) {
  border-bottom: 1px solid rgba(124, 58, 237, 0.06);
}

.dining-table td::before {
  content: attr(data-label);
  font-weight: 600;
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 120px;
}

.dining-table td:first-child {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 2px solid rgba(124, 58, 237, 0.2);
}

.dining-table td:first-child::before {
  display: none;
}

/* Desktop: table layout */
@media (min-width: 768px) {
  .dining-table-wrap {
    overflow-x: auto;
  }

  .dining-table {
    min-width: 640px;
  }

  .dining-table thead {
    display: table-header-group;
  }

  .dining-table thead tr {
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: #fff;
  }

  .dining-table th {
    padding: 16px 18px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.3px;
  }

  .dining-table tbody tr {
    display: table-row;
    padding: 0;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
  }

  .dining-table tbody tr:hover {
    background: rgba(124, 58, 237, 0.04);
    box-shadow: none;
  }

  .dining-table tbody tr:nth-child(even) {
    background: rgba(124, 58, 237, 0.02);
  }

  .dining-table tbody tr:nth-child(even):hover {
    background: rgba(124, 58, 237, 0.06);
  }

  .dining-table td {
    display: table-cell;
    padding: 14px 18px;
    border: none;
  }

  .dining-table td::before {
    display: none;
  }

  .dining-table td:first-child {
    font-weight: 600;
    font-size: 14px;
    padding: 14px 18px;
    border-bottom: none;
  }
}

.dining-note {
  margin-top: 20px;
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 767px) {
  .dining-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }
}

/* Amenities */
.amenities-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.amenity {
  padding: 20px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  color: var(--text);
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.amenity-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.amenity-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.amenity-text {
  font-size: 12px;
  color: var(--muted);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #0f0f14;
  transform: translateY(24px);
  opacity: 0;
  filter: blur(6px);
  transition:
    transform 1.2s ease,
    opacity 1.2s ease,
    filter 1.2s ease;
}

.gallery-item.aos-animate {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
  display: block;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.45)
    );
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 30%,
      rgba(233, 196, 106, 0.25),
      rgba(124, 58, 237, 0.25),
      transparent 70%
    );
  opacity: 0;
  transform: translateX(-40%);
  transition:
    transform 1.6s ease,
    opacity 0.6s ease;
  z-index: 2;
}

.gallery-label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 3;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateX(40%);
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* Soft gradient surfaces for premium feel */
.card,
.amenity,
.rule-item,
.gallery-item,
.about-why-card,
.contact-map img {
  background-image: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

/* Rules */
.rules-grid {
  display: grid;
  gap: 16px;
}

.rule-item {
  position: relative;
  padding: 18px 20px 18px 42px;
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 999px;
  background: transparent;
  color: #1f2937;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  transition:
    background 300ms ease,
    border-color 300ms ease,
    opacity 300ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: ruleReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.rule-item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: rgba(124, 58, 237, 0.6);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 300ms ease;
}

@keyframes ruleReveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rule-item:nth-child(1) {
  animation-delay: 0.08s;
}
.rule-item:nth-child(2) {
  animation-delay: 0.16s;
}
.rule-item:nth-child(3) {
  animation-delay: 0.24s;
}
.rule-item:nth-child(4) {
  animation-delay: 0.32s;
}
.rule-item:nth-child(5) {
  animation-delay: 0.4s;
}
.rule-item:nth-child(6) {
  animation-delay: 0.48s;
}
.rule-item:nth-child(7) {
  animation-delay: 0.56s;
}
.rule-item:nth-child(8) {
  animation-delay: 0.64s;
}
.rule-item:nth-child(9) {
  animation-delay: 0.72s;
}

/* Resident Reviews */
#reviews {
  background: linear-gradient(180deg, #fffdf9 0%, #f0f7ff 100%);
}

.reviews-head {
  text-align: center;
}

.reviews-line {
  display: block;
  height: 4px;
  width: 60px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  border-radius: 2px;
}

.reviews-rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 36px 0;
}

.reviews-stars {
  color: #eab308;
  letter-spacing: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.08);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.25);
}

.review-stars {
  display: block;
  font-size: 20px;
  letter-spacing: 2px;
  color: #eab308;
  margin-bottom: 16px;
}

.review-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 20px 0;
  font-style: normal;
}

.review-author {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  font-style: normal;
}

.reviews-cta-wrap {
  text-align: center;
}

.reviews-cta {
  display: inline-flex;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* FAQ */
.faq-head {
  text-align: center;
}

.faq-line {
  display: block;
  height: 4px;
  width: 80px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  border-radius: 2px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.08);
}

.faq-item.is-open {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 6px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease, color 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-answer.is-open {
  max-height: 500px;
}

.faq-answer p {
  margin: 0 24px 20px 24px;
  padding: 16px 20px 16px 20px;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
  background: rgba(124, 58, 237, 0.06);
  border-radius: 0 10px 10px 0;
  line-height: 1.75;
  color: var(--muted);
}

.faq-answer a {
  color: var(--accent);
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0;
}

.contact-details p {
  margin-bottom: 8px;
  color: var(--muted);
}

.detail-label {
  color: var(--accent);
  font-weight: 600;
  margin-right: 6px;
}

.contact-support {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.contact-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.contact-map img {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.contact-map iframe {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: 100%;
  height: 320px;
}

/* Map section */
.map-section {
  padding: 90px 6%;
  background: linear-gradient(180deg, #faf7ff, #ffffff);
}

.map-header {
  text-align: center;
  margin-bottom: 32px;
}

.map-header h2 {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.map-header p {
  color: #6b7280;
  font-size: 1rem;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.15);
  opacity: 0;
  transform: translateY(40px);
  animation: mapReveal 0.9s ease forwards;
}

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

@keyframes mapReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.map-placeholder {
  height: 280px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #f0f7ff, #fff4ec);
  display: grid;
  place-items: center;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
}

/* Footer */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-legal {
  background: linear-gradient(180deg, #f0f7ff 0%, #fff4ec 100%);
  color: var(--text);
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  font-size: 12px;
}

.footer-legal-links a {
  color: var(--text);
  opacity: 0.85;
}

.footer-legal-links .divider {
  color: rgba(15, 23, 42, 0.4);
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  margin-top: 22px;
}

.footer-booking-note {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
  text-align: center;
}

.footer-booking-note a {
  color: inherit;
  text-decoration: underline;
}

.footer-booking-note a:hover {
  opacity: 1;
}

.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright > span:first-child {
  text-align: left;
}

.footer-copyright .footer-credit {
  text-align: right;
  margin-left: auto;
}


/* Buttons */
.glass-btn,
:is(
  .btn,
  .nav a,
  .nav-cta,
  .inxai-action,
  .chatbot-quick button,
  .chatbot-input button,
  .contact-actions .btn,
  .card .btn
) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.4px;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--text);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, filter 0.25s ease-out;
}

.glass-btn::after,
:is(
  .btn,
  .nav a,
  .nav-cta,
  .inxai-action,
  .chatbot-quick button,
  .chatbot-input button,
  .contact-actions .btn,
  .card .btn
)::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glass-btn:focus-visible,
:is(
  .btn,
  .nav a,
  .nav-cta,
  .inxai-action,
  .chatbot-quick button,
  .chatbot-input button,
  .contact-actions .btn,
  .card .btn
):focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.35);
  outline-offset: 2px;
}

.glass-btn:active,
:is(
  .btn,
  .nav a,
  .nav-cta,
  .inxai-action,
  .chatbot-quick button,
  .chatbot-input button,
  .contact-actions .btn,
  .card .btn
):active {
  transform: translateY(0);
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.btn-gold {
  color: var(--text);
  border: 1px solid rgba(124, 58, 237, 0.18);
}

.btn-primary {
  color: var(--text);
  border: 1px solid rgba(124, 58, 237, 0.18);
}

.btn-book-now {
  min-width: 140px;
}

.btn-outline {
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: var(--text);
}

/* Tablet */
@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section {
    padding: 120px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-wrap {
    text-align: left;
  }

}

/* Desktop */
@media (min-width: 980px) {
  .brand-logo {
    height: 64px;
  }

  .brand-text {
    font-size: 1.35rem;
  }

  .nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    transform: none;
    max-height: none;
    pointer-events: auto;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
    flex-shrink: 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-close {
    display: none;
  }

  .hero {
    padding: 32px 0 120px;
  }

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

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

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

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

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

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .footer-wrap {
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    text-align: left;
  }

}

@media (max-width: 979px) {
  .site-header .nav {
    overflow-x: visible;
    overflow-y: auto;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.18);
    z-index: 998;
  }

  .brand-logo {
    height: 44px;
  }

  .brand-text {
    font-size: 16px;
    white-space: normal;
    line-height: 1.2;
    max-width: 140px;
  }

  .nav-wrap {
    flex-wrap: nowrap;
    position: relative;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 50%;
    width: 92vw;
    max-width: 92vw;
    transform: translateX(-50%);
    height: auto;
    max-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 16px 16px;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  }

  .nav.open {
    max-height: 70vh;
  }

  .nav {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease;
  }

  .nav.open {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .nav-toggle {
    position: fixed;
    top: 84px;
    right: calc(50% - 46vw + 12px);
    z-index: 1001;
  }

  .nav {
    padding-top: 64px;
    padding-bottom: 16px;
    gap: 12px;
  }

  .nav-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    z-index: 1002;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0 20px;
    margin: 0;
    line-height: 1.3;
    font-size: 15px;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
    max-width: 100%;
    text-align: center;
    color: #2b2b2b;
  }

  .nav a + a {
    margin-top: 6px;
  }

  .nav a::after {
    display: none;
  }

  .nav::before,
  .nav::after,
  .nav a::before,
  .nav a::after {
    content: none;
    display: none;
  }

  .nav.open a {
    animation: navItemReveal 0.35s ease-out both;
  }

  .nav.open a:nth-child(1) {
    animation-delay: 0.03s;
  }
  .nav.open a:nth-child(2) {
    animation-delay: 0.06s;
  }
  .nav.open a:nth-child(3) {
    animation-delay: 0.09s;
  }
  .nav.open a:nth-child(4) {
    animation-delay: 0.12s;
  }
  .nav.open a:nth-child(5) {
    animation-delay: 0.15s;
  }
  .nav.open a:nth-child(6) {
    animation-delay: 0.18s;
  }
  .nav.open a:nth-child(7) {
    animation-delay: 0.21s;
  }
  .nav.open a:nth-child(8) {
    animation-delay: 0.24s;
  }
  .nav.open a:nth-child(9) {
    animation-delay: 0.27s;
  }
  .nav.open a:nth-child(10) {
    animation-delay: 0.3s;
  }

  .nav a:hover,
  .nav a:focus-visible {
    transform: scale(1.01);
  }

  .nav a:active {
    transform: scale(0.99);
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
    padding: 0 16px;
  }

  .hero-title {
    margin-left: 0;
    white-space: normal;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .card-grid,
  #rooms .card-grid {
    grid-template-columns: 1fr;
  }

  .card {
    width: 100%;
  }

  .card-media img {
    height: auto;
    object-fit: contain;
  }

  .card .btn,
  .card .btn-book-now {
    width: 100%;
    text-align: center;
  }

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

  .container,
  #rooms .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  #contact.section {
    padding: 64px 0;
  }

  .contact-grid {
    gap: 18px;
  }

  .contact-actions {
    margin: 12px 0;
    gap: 10px;
  }

  .contact-support {
    margin-bottom: 10px;
  }

  .contact-note {
    margin-top: 10px;
  }

  .contact-map iframe {
    height: 260px;
  }

  img,
  iframe,
  video {
    max-width: 100%;
    height: auto;
  }
}

@keyframes navItemReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .brand-logo {
    height: 56px;
  }
}

@media (min-width: 1200px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .card {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  #rooms .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* Hover effects only on desktop pointer devices */
@media (hover: hover) and (pointer: fine) {
  .nav a:hover {
    color: var(--text);
    opacity: 0.85;
  }

  .nav a:hover::before {
    opacity: 0.5;
    transform: scaleX(1);
  }

  .glass-btn:hover,
  :is(
    .btn,
    .nav a,
    .nav-cta,
    .inxai-action,
    .chatbot-quick button,
    .chatbot-input button,
    .contact-actions .btn,
    .card .btn
  ):hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
    box-shadow:
      0 18px 36px rgba(15, 23, 42, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .glass-btn:hover::after,
  :is(
    .btn,
    .nav a,
    .nav-cta,
    .inxai-action,
    .chatbot-quick button,
    .chatbot-input button,
    .contact-actions .btn,
    .card .btn
  ):hover::after {
    opacity: 1;
  }


  .card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 70px rgba(124, 58, 237, 0.18);
    border-color: rgba(124, 58, 237, 0.35);
  }

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

  .amenity:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.16);
  }

  .rules-grid:hover .rule-item {
    opacity: 0.6;
  }

  .rules-grid .rule-item:hover {
    opacity: 1;
    background: rgba(124, 58, 237, 0.04);
    border-color: rgba(124, 58, 237, 0.45);
  }

  .rules-grid .rule-item:hover::before {
    transform: translate(4px, -50%);
  }

  .amenity:hover .amenity-icon {
    color: var(--accent-strong);
  }

  .gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
  }

  .footer-legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}

@media (hover: hover) and (pointer: fine) {
  #rooms .card {
    transition:
      transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important,
      box-shadow 0.4s ease !important,
      border-color 0.4s ease !important;
  }

  #rooms .card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 32px 70px rgba(124, 58, 237, 0.18) !important;
    border-color: rgba(124, 58, 237, 0.35) !important;
    background: linear-gradient(
      180deg,
      rgba(124, 58, 237, 0.03),
      transparent
    ) !important;
  }

  #rooms .card img {
    transform: none !important;
    transition: none !important;
  }
}

/* Hero layout overrides (premium left alignment) */
.hero {
  position: relative;
  min-height: calc((var(--vh) * 100) - var(--announcement-height));
  background: url("../assets/images/background.png")
    center calc(50% + var(--hero-parallax, 0px)) / cover no-repeat;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.15) 70%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: calc(1 - var(--hero-fade, 0));
  transition: opacity 0.4s ease;
}

.hero-content {
  max-width: 560px;
  margin-left: 8%;
  text-align: left;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(2px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease,
    filter 1.2s ease;
}

.hero-content > :nth-child(1) {
  transition-delay: 0.2s;
}

.hero-content > :nth-child(2) {
  transition-delay: 0.4s;
}

.hero-content > :nth-child(3) {
  transition-delay: 0.6s;
}

.hero-content > :nth-child(4) {
  transition-delay: 0.8s;
}

.hero-loaded .hero-content > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero .eyebrow,
.hero-title,
.hero-tagline,
.hero-actions {
  animation: none;
  opacity: inherit;
  transform: none;
  filter: none;
}

.hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 68px;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.hero-loaded .hero-title::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (hover: hover) and (pointer: fine) {
  @supports (-webkit-background-clip: text) or (background-clip: text) {
    .hero .eyebrow:hover,
    .hero-title:hover,
    .hero-tagline:hover {
      background-image: linear-gradient(
        120deg,
        #6d28d9,
        #7c3aed,
        #c4b5fd,
        #e9c46a,
        #7c3aed
      );
      background-size: 300% 100%;
      background-position: 0% 50%;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      animation: movieGradientMove 1.8s ease-in-out forwards;
    }
  }
}

@keyframes movieGradientMove {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@media (max-width: 768px) {
  .hero-content {
    margin-left: 6%;
    max-width: 90%;
  }

}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .hero .eyebrow,
  .hero-title,
  .hero-tagline,
  .hero-actions {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Cursor follower */
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(
    circle,
    rgba(127, 92, 255, 0.8),
    rgba(127, 92, 255, 0.25),
    transparent
  );
  filter: blur(2px);
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, filter 0.25s ease;
}

.cursor-active {
  width: 40px;
  height: 40px;
  filter: blur(4px);
}

/* Chatbot */
.chatbot {
  position: fixed;
  --chatbot-gutter: 20px;
  --chatbot-launcher-size: 120px;
  right: var(--chatbot-gutter);
  bottom: var(--chatbot-gutter);
  left: auto;
  top: auto;
  z-index: 1200;
  display: block;
  pointer-events: none;
}

.chatbot-launcher {
  pointer-events: auto;
  width: var(--chatbot-launcher-size);
  height: var(--chatbot-launcher-size);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: none;
  cursor: pointer;
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chatbot-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
}

.inxai-wrap {
  perspective: 1000px;
  display: inline-block;
}

.inxai-3d {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation:
    inxaiFloat 6s ease-in-out infinite,
    inxaiGlow 4s ease-in-out infinite;
  transition: transform 0.4s ease;
}

.inxai-3d:hover {
  transform: scale(1.08) rotateX(10deg) rotateY(-10deg);
}

@keyframes inxaiFloat {
  0% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateY(-10px) rotateX(6deg) rotateY(-6deg);
  }
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
}

@keyframes inxaiGlow {
  0% {
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(168, 85, 247, 0.55));
  }
  100% {
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.35));
  }
}

.chatbot-launcher:hover {
  transform: scale(1.04);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.45);
}

.chatbot-panel {
  pointer-events: auto;
  width: min(92vw, 360px);
  height: min(70vh, 560px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  gap: 12px;
  padding: 16px;
  position: fixed;
  right: var(--chatbot-gutter);
  bottom: calc(var(--chatbot-gutter) + var(--chatbot-launcher-size) + 12px);
  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

@media (max-width: 720px) {
  .chatbot {
    --chatbot-gutter: 12px;
    --chatbot-launcher-size: 96px;
    right: var(--chatbot-gutter);
    bottom: var(--chatbot-gutter);
    left: auto;
  }

  .chatbot-panel {
    width: min(92vw, 340px);
    left: auto;
    right: var(--chatbot-gutter);
    height: min(76vh, 620px);
  }

  .chatbot-body {
    min-height: 0;
  }

  .chatbot-quick {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    align-content: start;
    min-height: 100px;
  }

  .chatbot-quick button {
    height: 28px;
    min-height: 28px;
    font-size: 10px;
  }

  .chatbot-launcher {
    width: var(--chatbot-launcher-size);
    height: var(--chatbot-launcher-size);
  }

  .chatbot-logo {
    width: 110px;
    height: 110px;
  }
}

.chatbot-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text);
}

.chatbot-close {
  border: none;
  background: transparent;
  font-size: 16px;
  cursor: pointer;
  color: var(--muted);
}

.chatbot-body {
  display: grid;
  gap: 10px;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 6px 8px 6px 2px;
  scrollbar-gutter: stable;
}

.chatbot-message {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.chatbot-message.user {
  background: #f0f7ff;
  color: var(--text);
  justify-self: end;
}

.chatbot-message.bot {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  justify-self: start;
}

.chatbot-message a {
  color: var(--accent);
  font-weight: 600;
}

.chatbot-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  overflow-y: auto;
  overflow-x: hidden;
  align-content: start;
  align-items: stretch;
  grid-auto-rows: 28px;
  min-height: 100px;
}

.chatbot-quick button {
  padding: 0 8px !important;
  font-size: 10px;
  cursor: pointer;
  min-height: 28px !important;
  height: 28px !important;
  max-height: none !important;
  line-height: 1.2 !important;
  width: 100%;
  opacity: 0.92;
}

@media (min-width: 721px) {
  .chatbot-quick {
    gap: 6px;
    grid-auto-rows: 28px;
  }

  .chatbot-quick button {
    min-height: 28px !important;
    height: 28px !important;
    font-size: 10px;
  }
}

.chatbot-input {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}

.chatbot-input input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 14px;
  height: 40px;
}

.chatbot-input button {
  border: none;
  padding: 10px 14px;
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  height: 40px;
  min-width: 72px;
}

.chatbot-footer {
  padding: 8px 0 4px;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 6px;
}

.chatbot-footer a {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.85;
  text-decoration: none;
}

.chatbot-footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* =========================================
   MASTER CTA BUTTON STYLE – SITE WIDE
========================================= */

:root {
  --cta-bg: rgba(255, 255, 255, 0.28);
  --cta-border: rgba(255, 255, 255, 0.45);
  --cta-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  --cta-shadow-hover: 0 18px 45px rgba(0, 0, 0, 0.25);
  --cta-text: #ffffff;
}

/* Apply to ALL buttons */
button,
.btn,
a.btn,
.nav a,
.hero-actions a,
.inxai-action,
.chatbot-input button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid var(--cta-border);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.18)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--cta-text);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--cta-shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

/* Hover = lift */
button:hover,
.btn:hover,
.nav a:hover,
.hero-actions a:hover,
.inxai-action:hover {
  transform: translateY(-2px);
  box-shadow: var(--cta-shadow-hover);
}

/* Active = press */
button:active,
.btn:active,
.nav a:active,
.hero-actions a:active,
.inxai-action:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

/* =========================================
   HEADER NAV ALIGNMENT
========================================= */

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.site-header .nav a {
  height: 42px;
  white-space: nowrap;
}

/* =========================================
   HERO CTA GROUP FIX
========================================= */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions a {
  min-width: 150px;
}

/* =========================================
   INXAI CTA BUTTONS
========================================= */
.inxai-action {
  width: 100%;
  margin-bottom: 10px;
}

.chatbot-input button {
  min-width: 90px;
}

/* =========================================
   HARD RESET – REMOVE ALL CIRCULAR UI
========================================= */

/* Kill any circular masks / overlays */
.mobile-menu::before,
.mobile-menu::after,
.nav-mobile::before,
.nav-mobile::after,
.menu-overlay::before,
.menu-overlay::after,
.nav::before,
.nav::after,
.nav a::before,
.nav a::after {
  content: none !important;
  display: none !important;
}

/* Remove clip-paths / masks / shapes */
.mobile-menu,
.nav-mobile,
.menu-overlay,
.nav {
  clip-path: none !important;
  mask: none !important;
  -webkit-mask: none !important;
  background-image: none !important;
}

/* =========================================
   MOBILE MENU – RECTANGLE PANEL ONLY
========================================= */

@media (max-width: 768px) {
  .mobile-menu,
  .nav-mobile,
  .nav {
    position: absolute;
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    z-index: 9999;
  }
}

/* =========================================
   MOBILE MENU ITEMS
========================================= */

@media (max-width: 768px) {
  .mobile-menu a,
  .nav-mobile a,
  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: #2b2b2b;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-menu a:hover,
  .nav-mobile a:hover,
  .nav a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(120, 90, 255, 0.25);
  }

  .mobile-menu a:last-child,
  .nav-mobile a:last-child,
  .nav a:last-child {
    margin-bottom: 0;
  }
}

/* =========================================
   MOBILE BACKDROP (NO HEAVY OVERLAY)
========================================= */

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 9998;
}

/* =========================================
   FINAL MOBILE MENU – FORCE RECTANGLE ONLY
========================================= */
@media (max-width: 768px) {
  .nav {
    background: #ffffff !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 14px !important;
    overflow: hidden;
  }

  .nav::before,
  .nav::after {
    content: none !important;
    display: none !important;
  }
}

