:root {
  /* --bg-dark: #0e1f1a; */
  --bg-overlay: rgba(8, 15, 13, 0.55);
  --text-light: #f4f8f6;
  --text-soft: #d4dfda;
  --accent: #ddb96f;
  --accent-dark: #bf8f45;
  --premium-gold-btn: linear-gradient(145deg, #f8e5b8 0%, #e8c47b 48%, #ce9d4f 100%);
  --premium-gold-btn-hover: linear-gradient(145deg, #f2d89f 0%, #ddba72 48%, #bc873e 100%);
  --premium-gold-btn-text: #3f2a10;
  --nav-bg-mobile: rgba(7, 16, 13, 0.95);
  --panel-bg: rgba(7, 18, 14, 0.78);
  --panel-border: rgba(255, 255, 255, 0.14);
  --input-bg: rgba(255, 255, 255, 0.06);
  --radius-pill: 999px;
  --section-padding-y: clamp(3.25rem, 6vw, 5.5rem);
  --section-heading-size: clamp(1.9rem, 3vw, 2.9rem);
  --section-heading-gap: 0.55rem;
  --section-head-margin: clamp(1.1rem, 2.2vw, 1.6rem);
  --font-heading: "Manrope", sans-serif;
  --font-section-heading: "Manrope", sans-serif;
}

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

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
}

button.is-submitting-btn {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

button.is-submitting-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  margin-left: -9px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: var(--premium-gold-btn-text);
  border-radius: 50%;
  animation: submit-button-spin 0.8s linear infinite;
}

@keyframes submit-button-spin {
  to {
    transform: rotate(360deg);
  }
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("assets/images/corp-bann.png");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 14, 11, 0.52) 10%, var(--bg-overlay) 50%);
  z-index: -1;
}

.navbar {
  width: 100%;
  margin: 0 auto;
  padding: 5px clamp(1rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 1200;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(16, 34, 27, 0.12);
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo-img {
  width: 70px;
  height: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav-links a {
  text-decoration: none;
  color: #1a2b24;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.book-btn,
.cta {
  text-decoration: none;
  color: var(--premium-gold-btn-text);
  background: var(--premium-gold-btn);
  border: 1px solid rgba(158, 108, 38, 0.45);
  border-radius: var(--radius-pill);
  padding: 0.72rem 1.25rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background-color 0.2s ease;
}

.book-btn:hover,
.cta:hover {
  background: var(--premium-gold-btn-hover);
}

.hero-layout {
  width: min(1200px, 92%);
  margin: clamp(0rem, 9vh, 2rem) auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 210px);
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.subtext {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
}

.hero-form-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9f6ef 100%);
  border: 1px solid rgba(191, 151, 87, 0.3);
  border-radius: 18px;
  padding: clamp(1rem, 2.2vw, 1.55rem);
  backdrop-filter: blur(2px);
  box-shadow: 0 16px 34px rgba(8, 12, 10, 0.22);
}

.hero-form-card h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: #1a211d;
}

.hero-form-card p {
  color: #4f6258;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.hero-form-card .form-group input,
.hero-form-card .form-group textarea,
.hero-form-card .form-group select {
  border: 1px solid rgba(181, 142, 81, 0.26);
  background: #ffffff;
  color: #1f2b25;
}

.hero-form-card .form-group input::placeholder,
.hero-form-card .form-group textarea::placeholder {
  color: #6f7f76;
}

.hero-form-card .form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffff;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(90, 68, 38, 0.9) 50%),
    linear-gradient(135deg, rgba(90, 68, 38, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.1rem;
}

.hero-form-card .form-group select:required:invalid {
  color: #6f7f76;
  background-color: #ffffff;
}

.hero-form-card .form-group input:focus,
.hero-form-card .form-group textarea:focus,
.hero-form-card .form-group select:focus {
  outline: 2px solid rgba(201, 152, 79, 0.24);
  border-color: rgba(173, 122, 50, 0.55);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

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

.form-group label {
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--panel-border);
  background: var(--input-bg);
  color: var(--text-light);
  border-radius: 10px;
  padding: 0.72rem 0.82rem;
  font: inherit;
}

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

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(212, 223, 218, 0.9) 50%),
    linear-gradient(135deg, rgba(212, 223, 218, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.1rem;
}

.form-group select:required:invalid {
  color: rgba(212, 223, 218, 0.72);
}

.form-group select option {
  color: #183327;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(212, 223, 218, 0.72);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid rgba(32, 196, 143, 0.28);
  border-color: var(--accent);
}

.form-submit {
  margin-top: 0.95rem;
  width: 100%;
  border: none;
  border-radius: 10px;
  background: var(--premium-gold-btn);
  color: var(--premium-gold-btn-text);
  border: 1px solid rgba(158, 108, 38, 0.45);
  font: inherit;
  font-weight: 800;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form-submit:hover {
  background: var(--premium-gold-btn-hover);
}

.usp-section {
  position: relative;
  padding: 65px 0 20px;
  background: transparent;
}

.usp-wrap {
  width: min(1200px, 95%);
  margin: 0 auto;
}

.usp-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a2b8af;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.usp-wrap h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.usp-intro {
  color: #c5d2cc;
  max-width: 60ch;
  line-height: 1.6;
  margin-bottom: 1.7rem;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.usp-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(176, 137, 76, 0.26);
  background:
    linear-gradient(160deg, #ffffff 0%, #fbf7ef 55%, #f5eddc 100%);
  border-radius: 20px;
  padding: 0.95rem 1rem;
  min-height: 110px;
  display: flex;
  flex-direction: row;
  gap: 0.9rem;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 28px rgba(13, 15, 12, 0.1);
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.usp-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(197, 154, 84, 0), rgba(197, 154, 84, 0.85), rgba(197, 154, 84, 0));
}

.usp-card::after {
  content: "";
  position: absolute;
  top: -38px;
  right: -46px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 179, 122, 0.18) 0%, rgba(212, 179, 122, 0) 68%);
  pointer-events: none;
}

.usp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(170, 136, 83, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 34px rgba(13, 15, 12, 0.15);
}

.usp-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 249, 232, 0.92), rgba(255, 249, 232, 0) 42%),
    linear-gradient(145deg, #f8e5b8 0%, #e8c47b 48%, #ce9d4f 100%);
  border: 1px solid rgba(158, 108, 38, 0.52);
  color: #4b3212;
  box-shadow:
    inset 0 1px 0 rgba(255, 251, 239, 0.9),
    inset 0 -3px 6px rgba(138, 93, 35, 0.16),
    0 8px 16px rgba(66, 44, 16, 0.24);
}

.usp-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.usp-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.usp-card h3 {
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #1b201c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.location-section {
      padding: 70px 0px 50px;
  /* background:
    radial-gradient(circle at 82% 15%, rgba(47, 125, 70, 0.14), transparent 35%),
    linear-gradient(180deg, #f2f8f4 0%, #e8f2ec 100%); */
  color: #12251d;
}

.location-wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
}

.location-content {
  max-width: 560px;
}

.location-head {
  margin-bottom: 1.2rem;
}

.location-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #3f6f56;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.location-head h2 {
  font-size: 32px;
  line-height: 1.15;
}

.location-intro {
  margin-top: 0.8rem;
  color: #355847;
  line-height: 1.6;
}

.location-list {
  list-style: none;
  display: grid;
  gap: 0.72rem;
}

.location-list li {
  border-radius: 12px;
  border: 1px solid rgba(27, 68, 50, 0.18);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.82rem 0.95rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  font-weight: 700;
  color: #183327;
}

.location-no {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f8e5b8 0%, #e8c47b 48%, #ce9d4f 100%);
  border: 1px solid rgba(158, 108, 38, 0.45);
  color: #4a3011;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 251, 239, 0.88),
    0 4px 10px rgba(86, 57, 18, 0.18);
}

.location-visual {
  min-height: clamp(320px, 45vw, 360px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(10, 36, 25, 0.2);
  background:
    linear-gradient(135deg, rgba(12, 22, 18, 0.2), rgba(12, 22, 18, 0.3)),
    url("assets/images/location.jpg") center/cover no-repeat;
}

.usecases-section {
  padding: 52px 0 60px;
  background:
    #f3f3f1;
}

.usecases-wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.usecases-head {
  margin-bottom: clamp(1.1rem, 2.1vw, 1.7rem);
  text-align: center;
}

.usecases-head h2 {
  font-size: 32px;
  line-height: 1.15;
  color: #20170f;
    margin-bottom: 35px;
        max-width: 760px;
    margin: auto;
}

.usecases-sub {
  margin: 0.7rem auto 0;
  max-width: 60ch;
  color: #355847;
  line-height: 1.55;
}

.usecases-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.usecase-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(186, 153, 107, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8f6330;
  background: linear-gradient(160deg, #faf7f0 0%, #f0e5cf 100%);
  flex-shrink: 0;
}

.usecase-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.usecase-card {
  grid-column: span 2;
  border-radius: 16px;
  border: 1px solid rgba(186, 153, 107, 0.24);
  background: #ffffff;
  padding: 0.95rem;
  display: flex;
  gap: 0.72rem;
  align-items: flex-start;
  box-shadow: 0 8px 18px rgba(9, 27, 19, 0.06);
}

.usecase-card h3 {
  color: #2b2114;
  font-size: 1.06rem;
  line-height: 1.3;
}

.usecase-card p {
  margin-top: 0.32rem;
  color: #5e5447;
  font-size: 0.92rem;
  line-height: 1.45;
}

.usecase-card-lg {
  grid-column: span 3;
}

.usecase-card-accent {
  background:
    linear-gradient(140deg, rgba(208, 166, 96, 0.12), rgba(208, 166, 96, 0.04)),
    #ffffff;
}

.venue-section {
      background: #f8f6f2;
    color: #12251d;
    padding: 45px 0 60px;
}

.venue-wrap {
 width: min(1200px, 95%);
  margin: 0 auto;
}

.venue-head {
  text-align: center;
  margin-bottom: 1rem;
}

.venue-head h2 {
  font-size: 32px;
  line-height: 1.1;
  color: #112b22;
      margin-bottom: 40px;
}

.venue-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
}

.venue-viewport {
  overflow: hidden;
  min-width: 0;
}

.venue-track {
  list-style: none;
  display: flex;
  gap: 0.95rem;
  transition: transform 0.42s ease;
  will-change: transform;
}

.venue-card {
  flex: 0 0 calc((100% - (0.95rem * 2)) / 3);
  border: 1px solid rgba(19, 49, 37, 0.16);
  border-radius: 18px;
  background: #ffffff;
  padding: 1rem;
  /* box-shadow: 0 10px 24px rgba(11, 28, 21, 0.08); */
}

.venue-card h3 {
  color: #0f281f;
  font-size: clamp(1.18rem, 0.8vw, 1.55rem);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.venue-image {
  width: 100%;
  min-height: clamp(210px, 26vw, 280px);
  border-radius: 14px;
  background-position: center;
  background-size: cover;
  margin-bottom: 0.85rem;
}

.venue-card p {
  font-size: 16px;
    font-weight: 500;
    color: #0f281f;
    line-height: 1.2;
    margin-top: 0;
}

.venue-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(20, 48, 38, 0.24);
  background: #ffffff;
  color: #143026;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(10, 26, 19, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.venue-nav:hover {
  background: #8d6230;
  color: #ffffff;
}

.venue-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.venue-dots,
.games-dots {
  display: flex;
  justify-content: center;
  gap: 0.44rem;
  margin-top: 0.9rem;
}

.venue-dots,
.games-dots,
.gallery-dots,
.testimonials-dots {
  display: none;
}

.carousel-dot,
.games-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(20, 48, 38, 0.36);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active,
.games-dot.active {
  background: #8d6230;
  transform: scale(1.08);
}

.gallery-section {
  /* padding: clamp(3rem, 6vw, 5.5rem) 0; */
  background:
    radial-gradient(circle at 84% 16%, rgba(208, 166, 96, 0.14), transparent 34%),
    linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
  color: #12251d;
  padding: 45px 0 50px;
}

.gallery-wrap {
  width: min(1200px, 95%);
  margin: 0 auto;
}

.gallery-head {
  text-align: center;
  margin-bottom: 1rem;
}

.gallery-head h2 {
  font-size: 32px;
  line-height: 1.1;
  color: #112b22;
      margin-bottom: 35px;
}

.gallery-head p {
  margin-top: 0.55rem;
  color: #3f6050;
}

.gallery-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.72rem;
}

.gallery-viewport {
  overflow: hidden;
  cursor: grab;
  min-width: 0;
}

.gallery-viewport.is-dragging {
  cursor: grabbing;
}

.gallery-track {
  list-style: none;
  display: flex;
  gap: 0.95rem;
  transition: transform 0.42s ease;
  will-change: transform;
  user-select: none;
}

.gallery-card {
  flex: 0 0 calc((100% - (0.95rem * 3)) / 4);
  min-height: clamp(250px, 34vw, 360px);
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  /* box-shadow: 0 16px 28px rgba(8, 24, 17, 0.16); */
}

.gallery-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(20, 48, 38, 0.24);
  background: #ffffff;
  color: #143026;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(10, 26, 19, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.gallery-nav:hover {
  background: #8d6230;
  color: #ffffff;
}

.gallery-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.44rem;
  margin-top: 0.9rem;
}

.explore-section {
      padding: 45px 0 60px;
  background:
    radial-gradient(circle at 12% 12%, rgb(248 246 242), transparent 34%), linear-gradient(180deg, #f8f6f2 0%, #ffffff 100%)
  color: #12251d;
}

.explore-wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.explore-head {
  text-align: center;
  margin-bottom: 1.25rem;
}

.explore-head h2 {
  font-size: 32px;
  line-height: 1.1;
  color: #112b22;
     margin-bottom: 35px;
}

.explore-head p {
  margin-top: 0.55rem;
  color: #3e6050;
}

.explore-carousel {
  position: relative;
}

.explore-viewport {
  min-width: 0;
}

.explore-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
}

.explore-nav {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(20, 48, 38, 0.24);
  background: #ffffff;
  color: #143026;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(10, 26, 19, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.explore-nav:hover {
  background: #8d6230;
  color: #ffffff;
}

.explore-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.explore-card {
  border: 1px solid rgba(19, 49, 37, 0.12);
  border-radius: 15px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
  box-shadow: 0 10px 20px rgba(10, 28, 20, 0.08);
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) 1.2fr;
  gap: 0.72rem;
  padding: 0.62rem;
  min-height: 178px;
}

.explore-image {
  min-height: 100%;
  border-radius: 11px;
  border: 1px solid rgba(18, 48, 37, 0.2);
  padding: 5px;
  background-color: #f4f8f6;
  background-origin: content-box;
  background-clip: content-box;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 6px 14px rgba(10, 28, 20, 0.14);
}

.explore-content {
  padding: 0.68rem 0.68rem 0.68rem 0.14rem;
}

.explore-content h3 {
  color: #123026;
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  line-height: 1.2;
}

.explore-time {
  margin-top: 0.3rem;
  color: #2f7d46;
  font-weight: 800;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.explore-content > p:not(.explore-time) {
  margin-top: 0.4rem;
  color: #436553;
  line-height: 1.4;
  font-size: 0.94rem;
}

.testimonials-section {
  background: #f4f0ea99;
  color: #12251d;
  padding: 45px 0 55px;
}

.testimonials-wrap {
  width: min(1200px, 95%);
  margin: 0 auto;
}

.testimonials-head {
  text-align: center;
  margin-bottom: 1rem;
}

.testimonials-head h2 {
  font-size: 32px;
  line-height: 1.1;
  color: #112b22;
  margin-bottom: 35px;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.72rem;
}

.testimonials-viewport {
  overflow: hidden;
  min-width: 0;
}

.testimonials-track {
  list-style: none;
  display: flex;
  gap: 0.95rem;
  transition: transform 0.42s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - (0.95rem * 2)) / 3);
  border: 1px solid rgba(20, 48, 38, 0.12);
  border-radius: 16px;
  background: #ffffff;
  padding: 0.95rem;
}

.testimonial-stars {
  color: #d4a017;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.testimonial-quote {
  color: #3c5348;
  line-height: 1.5;
  font-size: 0.95rem;
}

.testimonial-meta {
  margin-top: 0.68rem;
  display: flex;
  align-items: center;
  gap: 0.52rem;
}

.testimonial-meta h3 {
  font-size: 0.95rem;
  color: #1f352c;
  line-height: 1.2;
}

.testimonial-meta p {
  margin-top: 0.08rem;
  color: #738b7f;
  font-size: 0.8rem;
}

.testimonial-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #355d52;
  background: #dce5ff;
}

.testimonials-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(20, 48, 38, 0.24);
  background: #ffffff;
  color: #143026;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(10, 26, 19, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.testimonials-nav:hover {
  background: #8d6230;
  color: #ffffff;
}

.testimonials-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.44rem;
  margin-top: 0.9rem;
}

.inquiry-section {
      padding: 65px 0 70px;
  background: transparent;
  color: #12251d;
}

.inquiry-wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: stretch;
}

.inquiry-image {
  border-radius: 20px;
  min-height: clamp(300px, 34vw, 420px);
  border: 1px solid rgba(19, 49, 37, 0.16);
  box-shadow: 0 18px 34px rgba(9, 27, 19, 0.14);
  background:
    linear-gradient(140deg, rgba(12, 33, 24, 0.24), rgba(12, 33, 24, 0.12)),
    url("assets/images/event.jpg") center/cover no-repeat;
}

.inquiry-form-card {
  border-radius: 20px;
  border: 1px solid rgba(19, 49, 37, 0.14);
  background: #ffffff;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  box-shadow: 0 14px 28px rgba(9, 27, 19, 0.08);
}

.inquiry-form-card h2 {
  color: #112b22;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}

.inquiry-form-card p {
  margin-top: 0.55rem;
  color: #456553;
  line-height: 1.55;
}

.inquiry-form {
  margin-top: 1rem;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.inquiry-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.inquiry-group-wide {
  grid-column: 1 / -1;
}

.inquiry-group label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #214737;
}

.inquiry-group input,
.inquiry-group select {
  width: 100%;
  border: 1px solid rgba(19, 49, 37, 0.2);
  background: #ffffff;
  color: #183327;
  border-radius: 10px;
  padding: 0.72rem 0.78rem;
  font: inherit;
}

.inquiry-group input::placeholder {
  color: #6d877b;
}

.inquiry-group input:focus,
.inquiry-group select:focus {
  outline: 2px solid rgba(201, 152, 79, 0.24);
  border-color: rgba(173, 122, 50, 0.5);
}

.inquiry-submit {
  margin-top: 1rem;
  width: 100%;
  border: none;
  border-radius: 10px;
  background: var(--premium-gold-btn);
  color: var(--premium-gold-btn-text);
  border: 1px solid rgba(158, 108, 38, 0.45);
  font: inherit;
  font-weight: 800;
  padding: 0.82rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.inquiry-submit:hover {
  background: var(--premium-gold-btn-hover);
}

.proposal-cta-section {
  padding: clamp(1.8rem, 3.5vw, 2.8rem) 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 245, 217, 0.72), transparent 44%),
    linear-gradient(135deg, #f6e7c2 0%, #ebcd8f 55%, #e2be78 100%);
  color: #141414;
}

.proposal-cta-wrap {
  width: min(920px, 92%);
  margin: 0 auto;
  text-align: center;
}

.proposal-cta-wrap h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
}

.proposal-cta-wrap p {
  margin: 0.48rem auto 0;
  max-width: 62ch;
  color: #2a2a2a;
}

.proposal-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.8rem;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #fff9ea 0%, #f6e6be 100%);
  color: #131313;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(166, 120, 50, 0.45);
  box-shadow: 0 10px 20px rgba(86, 57, 18, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
      /* margin-bottom: 35px; */

}

.proposal-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(86, 57, 18, 0.18);
}

.proposal-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 14, 11, 0.62);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.proposal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.proposal-modal-dialog {
  position: relative;
  width: min(460px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    radial-gradient(circle at 100% 0%, rgba(208, 166, 96, 0.2), transparent 46%),
    linear-gradient(180deg, #ffffff 0%, #fbf7ee 100%);
  box-shadow: 0 24px 55px rgba(7, 23, 17, 0.34);
  padding: clamp(1.1rem, 2.2vw, 1.6rem);
  color: #123126;
}

.proposal-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(16, 45, 34, 0.18);
  background: #ffffff;
  color: #123126;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.proposal-modal-close:hover {
  background: #123126;
  color: #ffffff;
}

.proposal-modal-dialog h2 {
  font-size: 24px;
  line-height: 1.15;
}

.proposal-modal-dialog p {
  margin-top: 0.42rem;
  color: #3f5f4e;
  line-height: 1.5;
}

.proposal-modal-form {
  margin-top: 1rem;
}

.proposal-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "company company"
    "contact phone"
    "event event"
    "guest guest";
  gap: 0.9rem;
}

.proposal-modal-group {
  display: flex;
}

.proposal-modal-group-wide {
  grid-column: auto;
}

.proposal-company {
  grid-area: company;
}

.proposal-contact {
  grid-area: contact;
}

.proposal-phone {
  grid-area: phone;
}

.proposal-event {
  grid-area: event;
}

.proposal-guest {
  grid-area: guest;
}

.proposal-modal-group input,
.proposal-modal-group select {
  width: 100%;
  border: 1px solid rgba(19, 49, 37, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: #183327;
  border-radius: 12px;
  padding: 0.76rem 0.82rem;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.proposal-modal-group input::placeholder {
  color: #688276;
}

.proposal-modal-group input:focus,
.proposal-modal-group select:focus {
  outline: 2px solid rgba(201, 152, 79, 0.24);
  border-color: rgba(173, 122, 50, 0.58);
}

.proposal-modal-submit {
  margin-top: 0.95rem;
  width: 100%;
  border: none;
  border-radius: 12px;
  background: var(--premium-gold-btn);
  color: var(--premium-gold-btn-text);
  border: 1px solid rgba(158, 108, 38, 0.45);
  font: inherit;
  font-weight: 800;
  padding: 0.86rem 1rem;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(66, 44, 16, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.proposal-modal-submit:hover {
  transform: translateY(-1px);
  background: var(--premium-gold-btn-hover);
  box-shadow: 0 14px 24px rgba(66, 44, 16, 0.28);
}

body.modal-open {
  overflow: hidden;
}

.sticky-cta-desktop {
  position: fixed;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sticky-social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  text-decoration: none;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
  background: transparent;
  box-shadow: 0 8px 18px rgba(8, 20, 15, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.sticky-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(8, 20, 15, 0.34);
  color: #ffffff;
}

.sticky-social-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 8%, #fd5949 42%, #d6249f 67%, #285aeb 95%);
}

.sticky-social-facebook {
  background: linear-gradient(135deg, #1f74f2 0%, #1457c0 100%);
}

.sticky-social-whatsapp {
  background: linear-gradient(135deg, #1ea84a 0%, #168a3a 100%);
}

.sticky-cta-mobile {
  display: none;
}

.site-footer {
  padding: clamp(2.2rem, 4.8vw, 3.6rem) 0;
  background:
    linear-gradient(180deg, #f8f2e4 0%, #f3ead8 100%);
  color: #201911;
  border-top: 1px solid rgba(141, 104, 53, 0.45);
  box-shadow: inset 0 10px 26px rgba(255, 255, 255, 0.55);
}

.footer-wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.15fr;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.footer-copy {
  color: #3a2e20;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  width: min(1120px, 92%);
  margin: 0.85rem auto 0;
}

.footer-separator {
  width: 100%;
  margin: 1.25rem 0 0;
  border: 0;
  border-top: 1px solid rgba(141, 104, 53, 0.28);
}

.footer-col h3 {
  font-size: 1.2rem;
  color: #1f1710;
  margin-bottom: 0.8rem;
  font-family: var(--font-section-heading);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #1f1710;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.footer-logo-img {
  width: min(100px, 48vw);
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-about {
  margin-top: 0.75rem;
  line-height: 1.65;
  color: #4b3e30;
  max-width: 48ch;
}

.footer-links,
.footer-contact {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: #2a2218;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #8d6230;
}

.footer-contact li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.58rem;
  align-items: start;
}

.footer-icon {
  width: 33px;
  height: 33px;
  border-radius: 10px;
  border: 1px solid rgba(141, 104, 53, 0.38);
  background: linear-gradient(160deg, #fff9ea 0%, #f2e2be 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7f5729;
  flex-shrink: 0;
}

.footer-contact a,
.footer-contact span {
  color: #2b2219;
  text-decoration: none;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.amenities-section {
  padding: 42px 0 46px;
  /* background: #f3f3f1; */
  color: #142821;
}

.amenities-section [hidden] {
  display: none !important;
}

.amenities-wrap {
  width: min(1440px, 93%);
  margin: 0 auto;
}

.amenities-head {
  text-align: center;
  margin-bottom: 1.35rem;
}

.amenities-head h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.1;
  color: #12251d;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
      margin-bottom: -10px;
}

.amenities-block + .amenities-block {
  margin-top: 2rem;
}

.amenities-toggle-wrap {
  text-align: center;
  margin-top: 0.5rem;
}

.amenities-toggle-wrap + .amenities-block {
  margin-top: 2rem;
}

.amenities-toggle-btn {
  border: 1px solid rgba(166, 126, 70, 0.65);
  background: linear-gradient(160deg, #faf4e8 0%, #f0dfbf 100%);
  color: #523616;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.amenities-toggle-btn:hover {
  filter: brightness(0.97);
}

.amenities-toggle-btn:active {
  transform: translateY(1px);
}

.amenities-block h3 {
  text-align: center;
  font-size: clamp(1.12rem, 1.6vw, 1.4rem);
  font-weight: 500;
  color: #22382f;
  margin-bottom: 1.2rem;
}

.amenities-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.72rem;
}

.amenities-grid li {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  min-height: 74px;
  padding: 0.56rem 0.72rem;
  border-radius: 14px;
  border: 1px solid rgba(186, 153, 107, 0.45);
  background: linear-gradient(160deg, #fdfdfc 0%, #f8f6f1 100%);
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.22;
  color: #132820;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.amenities-grid li > span:last-child {
  font-weight: 600;
}

.amenity-dot {
  width: 55px;
    min-height: 55px;
    border-radius: 50%;
    border: 2px solid rgb(213 155 77 / 62%);
    /* background: linear-gradient(160deg, #faf7f0 0%, #f0e5cf 100%); */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a06d2f;
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.amenity-dot i {
  font-size: 1em;
}

.amenity-dot img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.games-section {
  padding: 25px 0 60px;
  background: #ffffff;
  color: #12251d;
}

.games-wrap {
     width: min(1200px, 95%);
  margin: 0 auto;
}

.games-head {
  text-align: center;
  margin-bottom: 1.2rem;
}

.games-kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #3d6d53;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.games-head h2 {
  font-size: 32px;
  line-height: 1.14;
  color: #143026;
      margin-bottom: 36px;
}

.games-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
}

.games-viewport {
  overflow: hidden;
  min-width: 0;
}

.games-track {
  list-style: none;
  display: flex;
  gap: 0.72rem;
  transition: transform 0.42s ease;
  will-change: transform;
}

.game-card {
  flex: 0 0 calc((100% - (0.72rem * 3)) / 4);
  min-height: clamp(240px, 33vw, 340px);
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 12px 24px rgba(11, 27, 20, 0.2); */
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 14, 0.08), rgba(8, 18, 14, 0.62));
}

.game-label {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.75rem;
  z-index: 1;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.games-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(20, 48, 38, 0.2);
  background: #ffffff;
  color: #143026;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(10, 26, 19, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.games-nav:hover {
  background: #8d6230;
  color: #ffffff;
}

.games-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(19, 49, 37, 0.25);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #1a2b24;
  border-radius: 2px;
}

/* Consistent section spacing and heading rhythm */
/* .usp-section,
.location-section,
.usecases-section,
.venue-section,
.gallery-section,
.explore-section,
.testimonials-section,
.inquiry-section,
.proposal-cta-section,
.amenities-section,
.games-section {
  padding: var(--section-padding-y) 0;
} */

.location-head,
.usecases-head,
.venue-head,
.gallery-head,
.explore-head,
.testimonials-head,
.amenities-head,
.games-head {
  margin-bottom: var(--section-head-margin);
}

.usp-wrap h2,
.location-head h2,
.usecases-head h2,
.venue-head h2,
.gallery-head h2,
.explore-head h2,
.testimonials-head h2,
.amenities-head h2,
.games-head h2,
.proposal-cta-wrap h2 {
  font-family: var(--font-section-heading);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-content h1,
.hero-form-card h2,
.inquiry-form-card h2,
.proposal-modal-dialog h2 {
  font-family: var(--font-section-heading);
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* .usp-wrap h2,
.location-head h2,
.usecases-head h2,
.venue-head h2,
.gallery-head h2,
.explore-head h2,
.testimonials-head h2,
.amenities-head h2,
.games-head h2,
.inquiry-form-card h2,
.proposal-cta-wrap h2 {
  font-size: var(--section-heading-size);
  line-height: 1.12;
  margin-bottom: var(--section-heading-gap);
} */

.location-intro,
.usecases-sub,
.gallery-head p,
.explore-head p,
.testimonials-head p,
.proposal-cta-wrap p {
  margin-top: 0;
}

/* Wider desktop containers to reduce excessive side gaps on 1300px+ screens */
.hero-layout,
.usp-wrap,
.location-wrap,
.usecases-wrap,
.venue-wrap,
.gallery-wrap,
.explore-wrap,
.testimonials-wrap,
.inquiry-wrap,
.games-wrap,
.footer-wrap,
.footer-copy {
  width: min(1380px, 94%);
}

@media (max-width: 900px) {
  .sticky-cta-desktop {
    display: none;
  }

  .sticky-cta-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    display: grid;
      grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 -10px 24px rgba(7, 18, 14, 0.28);
  }

  .sticky-mobile-btn {
    text-decoration: none;
    color: #ffffff;
    padding: 0.84rem 0.72rem calc(0.84rem + env(safe-area-inset-bottom, 0px));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
  }

  .sticky-mobile-whatsapp {
    background: var(--premium-gold-btn);
    color: var(--premium-gold-btn-text);
  }

  .sticky-mobile-book {
      background: var(--premium-gold-btn);
      color: var(--premium-gold-btn-text);
    }
/* 
  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  } */

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .book-btn {
      display: none;
    }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 4%;
    right: 4%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: #ffffff;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-layout {
    margin-top: 45px;
    min-height: auto;
  }

  .hero-form-card {
    max-width: 680px;
    margin-bottom: 50px;
  }

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

  .location-wrap {
    grid-template-columns: 1fr;
  }

  .location-visual {
    min-height: 280px;
  }

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

  .usecase-card,
  .usecase-card-lg {
    grid-column: span 1;
  }

  .venue-card {
    flex-basis: calc((100% - 0.95rem) / 2);
  }

  .gallery-card {
    flex-basis: calc((100% - 0.95rem) / 2);
  }

  .explore-track {
    grid-template-columns: 1fr;
  }

  .explore-card {
    grid-template-columns: minmax(180px, 0.82fr) 1.18fr;
    min-height: 172px;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .inquiry-wrap {
    grid-template-columns: 1fr;
  }

  .inquiry-image {
    min-height: 250px;
  }

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

  .venue-image {
    min-height: 220px;
  }

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

  .game-card {
    flex-basis: calc((100% - (0.72rem * 2)) / 3);
    min-height: 250px;
  }

  .proposal-modal-dialog {
    width: min(460px, 92vw);
  }
}

@media (max-width: 500px) {
  :root {
    --section-padding-y: clamp(2.6rem, 8vw, 3.4rem);
    --section-heading-size: clamp(1.55rem, 6.2vw, 2rem);
    --section-head-margin: 1rem;
  }

  .book-btn {
    padding: 0.62rem 0.95rem;
    font-size: 0.82rem;
  }

  .sticky-mobile-btn {
    font-size: 0.82rem;
    padding-top: 0.78rem;
    padding-bottom: calc(0.78rem + env(safe-area-inset-bottom, 0px));
  }

  .logo {
    font-size: 1.1rem;
  }

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

  .form-group-wide {
    grid-column: auto;
  }

  .usp-grid {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .usp-card {
    min-height: 86px;
    padding: 0.62rem 0.72rem;
    gap: 0.62rem;
  }

  .usp-icon {
    width: 40px;
    height: 40px;
  }

  .usp-icon img {
    width: 20px;
    height: 20px;
  }

  .usp-card h3 {
    font-size: 0.95rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .usecases-wrap {
    padding: 1rem 0.85rem;
  }

  .usecases-sub {
    font-size: 0.94rem;
  }

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

  .usecase-card,
  .usecase-card-lg {
    grid-column: span 1;
    padding: 0.85rem;
    gap: 0.62rem;
  }

  .usecase-icon {
    width: 38px;
    height: 38px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.58rem;
  }

  .amenities-grid li {
    min-height: 66px;
    padding: 0.5rem 0.62rem;
    font-size: 0.9rem;
  }

  .amenity-dot {
    width: 38px;
    min-height: 38px;
    font-size: 0.92rem;
  }

  .amenity-dot img {
    width: 20px;
    height: 20px;
  }

  .amenities-toggle-wrap {
    margin-top: 0.75rem;
  }

  .amenities-toggle-btn {
    font-size: 0.9rem;
    padding: 0.58rem 1.05rem;
  }

  .venue-carousel {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }

  .venue-nav {
    display: inline-flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
  }

  .venue-nav-prev {
    left: 6px;
  }

  .venue-nav-next {
    right: 6px;
  }

  .venue-card {
    flex-basis: 100%;
    padding: 0.9rem;
  }

  .venue-image {
    min-height: 210px;
  }

  .venue-card p {
            font-size: 17px;
  }

  .gallery-carousel {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }

  .gallery-nav {
    display: inline-flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
  }

  .gallery-nav-prev {
    left: 6px;
  }

  .gallery-nav-next {
    right: 6px;
  }

  .gallery-card {
    flex-basis: 100%;
    min-height: 240px;
  }

  .explore-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }

  .explore-viewport {
    overflow: hidden;
  }

  .explore-track {
    display: flex;
    gap: 0.78rem;
    transition: transform 0.42s ease;
    will-change: transform;
  }

  .explore-nav {
    display: inline-flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
  }

  .explore-nav-prev {
    left: 6px;
  }

  .explore-nav-next {
    right: 6px;
  }

  .explore-card {
    flex: 0 0 100%;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.58rem;
  }

  .explore-image {
    min-height: 150px;
  }

  .explore-content {
    padding: 0.7rem;
  }

  .testimonials-carousel {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }

  .testimonials-nav {
    display: inline-flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
  }

  .testimonials-nav-prev {
    left: 6px;
  }

  .testimonials-nav-next {
    right: 6px;
  }

  .testimonial-card {
    padding: 0.95rem;
  }

  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .inquiry-group-wide {
    grid-column: auto;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    width: 100%;
    padding-inline: 0.85rem;
  }

  .footer-col {
    min-width: 0;
  }

  .footer-logo-img {
    width: min(160px, 62vw);
  }

  .footer-about,
  .footer-contact li,
  .footer-contact span,
  .footer-contact a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .games-carousel {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }

  .games-nav {
    display: inline-flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
  }

  .games-nav-prev {
    left: 6px;
  }

  .games-nav-next {
    right: 6px;
  }

  .game-card {
    flex-basis: 100%;
    min-height: 230px;
  }

  .game-label {
    font-size: 1rem;
  }

  .proposal-modal {
    padding: 0.75rem;
  }

  .proposal-modal-dialog {
    border-radius: 18px;
    padding: 1rem;
  }

  .proposal-modal-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "company"
      "contact"
      "phone"
      "event"
      "guest";
    gap: 0.72rem;
  }

  .proposal-modal-group-wide {
    grid-column: auto;
  }
}
@media(max-width: 768px){
  .hero-content {
    max-width: 700px;
    margin-bottom: 30px;
}
  .usp-section {
    position: relative;
    padding: 55px 0;
    background: transparent;
}
.location-section

 {
    padding: 42px 0px 48px;
    /* background: radial-gradient(circle at 82% 15%, rgba(47, 125, 70, 0.14), transparent 35%), linear-gradient(180deg, #f2f8f4 0%, #e8f2ec 100%); */
    color: #12251d;
}
.usecases-section {
    padding: 23px 0 0px;
    background: #30725c12;
}
.games-section {
            padding: 38px 0 38px;
    background: #ffffff;
    color: #12251d;
}
.venue-section {
    background: #d0e6db70;
    color: #12251d;
    padding: 38px 0 34px;

}
.gallery-section {
    /* padding: clamp(3rem, 6vw, 5.5rem) 0; */
    background: radial-gradient(circle at 84% 16%, rgba(208, 166, 96, 0.14), transparent 34%), linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
    color: #12251d;
    padding: 38px 0 0px;
}
.explore-section {
            padding: 38px 0 47px;
    background: radial-gradient(circle at 12% 12%, rgba(208, 166, 96, 0.14), transparent 34%), linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
    color: #12251d;
}
.testimonials-section {
    background: radial-gradient(circle at 12% 18%, rgba(208, 166, 96, 0.14), transparent 34%), linear-gradient(180deg, #f4f8f6 0%, #ffffff 100%);
    color: #12251d;
            padding: 38px 0 38px;
    background: #f4f0ea;
}
.inquiry-section {
    /* padding: clamp(3rem, 6vw, 5.5rem) 0; */
    background: transparent;
    color: #12251d;
    padding: 50px 0px 45px;
}
.proposal-cta-section {
    padding: clamp(1.8rem, 3.5vw, 2.8rem) 0;
    background: radial-gradient(circle at 18% 24%, rgba(255, 245, 217, 0.72), transparent 44%), linear-gradient(135deg, #f6e7c2 0%, #ebcd8f 55%, #e2be78 100%);
    color: #141414;
            padding: 26px 0 30px;
}
.proposal-cta-wrap h2 {
    /* font-size: clamp(1.8rem, 3vw, 2.8rem); */
    line-height: 1.15;
    font-size: 21px;
}
.site-footer {
    padding: clamp(2.2rem, 4.8vw, 3.6rem) 0;
    background: linear-gradient(180deg, #f8f2e4 0%, #f3ead8 100%);
    color: #201911;
            padding: 45px 0 75px;
}
.hero-content h1 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.usecases-head h2 {
    font-size: 22px;
    line-height: 1.15;
    color: #143026;
    margin-bottom: 25px;
}
.location-head h2 {
    font-size: 22px;
    line-height: 1.15;
    text-align: center;
        margin-bottom: 10px;
}
.location-intro {
    margin-top: 0.8rem;
    color: #355847;
    line-height: 1.6;
    text-align: center;
}
.amenities-block h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 27px;
}
.games-head h2 {
    font-size: 25px;
    line-height: 1.14;
    color: #143026;
    margin-bottom: 27px;
}
.venue-head h2 {
    font-size: 25px;
    line-height: 1.1;
    color: #112b22;
    margin-bottom: 27px;
}
.gallery-head h2 {
    font-size: 25px;
    line-height: 1.1;
    color: #112b22;
    margin-bottom: 27px;
}
.explore-head h2 {
    font-size: 22px;
    line-height: 1.1;
    color: #112b22;
    margin-bottom: 27px;
}
.testimonials-head h2 {
    font-size: 22px;
    line-height: 1.1;
    color: #112b22;
    margin-bottom: 27px;
}
.proposal-modal-dialog h2 {
    font-size: 19px;
    line-height: 1.15;
}
.amenities-grid li > span:last-child {
    font-weight: 600;
    font-size: 13px;
}
.inquiry-form-card h2 {
    color: #112b22;
    font-size: 23px;
    line-height: 1.15;
}
.proposal-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.8rem;
    padding: 0.82rem 1.35rem;
    border-radius: 999px;
    background: linear-gradient(145deg, rgb(255, 249, 234) 0%, rgb(246, 230, 190) 100%);
    color: rgb(19, 19, 19);
    text-decoration: none;
    font-weight: 800;
    border: 1px solid rgba(166, 120, 50, 0.45);
    box-shadow: rgba(86, 57, 18, 0.12) 0px 10px 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 35px;
}
.hero {
    position: relative;
    min-height: 75vh;
    background-image: url(assets/images/corporate-newbanner.jpg);
    background-position: center;
    background-size: cover;
    isolation: isolate;
}
.navbar {
    width: 100%;
    margin: 0 auto;
    padding: 8px clamp(0.8rem, 3vw, 1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 1200;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(16, 34, 27, 0.12);
}

.navbar-logo-img {
    width: 54px;
}

.hero-content h1 {
    font-size: clamp(1.7rem, 8vw, 2.05rem);
    line-height: 1.12;
}

.subtext {
    font-size: 1rem;
    line-height: 1.6;
}

}
