html,
body {
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
}
input,
textarea,
select {
    user-select: text;
    -webkit-user-select: text;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #0b0b0b;
  --surface: #111111;
  --surface-soft: #181818;
  --surface-alt: #202020;
  --text: #ffffff;
  --text-muted: #bdbdbd;
  --gold-100: #f5e3a5;
  --gold-200: #e6c86b;
  --gold-300: #d4af37;
  --gold-400: #b88a1f;
  --gold-500: #8a6512;
  --gold-border: rgba(212, 175, 55, 0.2);
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-glow-strong: rgba(212, 175, 55, 0.5);
  --gold-gradient: linear-gradient(
    180deg,
    var(--gold-100) 0%,
    var(--gold-300) 55%,
    var(--gold-400) 100%
  );
  --gold-text-gradient: linear-gradient(
    135deg,
    var(--gold-100) 0%,
    var(--gold-300) 100%
  );
}

body {
  background: var(--bg);
  color: var(--text);
}

/* Anchor targets sit under the fixed navbar without this offset */
#home,
#about,
#plans,
#gallery,
#contact,
#location {
  scroll-margin-top: 90px;
}

/* Visually hidden but still available to assistive tech */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content link: hidden until keyboard-focused */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 10000;

  background: var(--gold-gradient);
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px var(--gold-glow);

  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 12px;
}
/* Subtle heartbeat for Google rating */
.rating-heartbeat {
    animation: ratingHeartbeat 2.2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes ratingHeartbeat {
    0%,
    100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.06);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.04);
    }

    40%,
    100% {
        transform: scale(1);
    }
}

/* Parking indicator */
.parking-letter {
    position: relative;
    display: inline-block;
}

.parking-p {
    display: inline-block;
    position: relative;
    z-index: 2;
    animation: parkingRun 0.45s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes parkingRun {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-2px) translateX(1px) rotate(-3deg);
    }

    50% {
        transform: translateY(0) translateX(2px) rotate(2deg);
    }

    75% {
        transform: translateY(-2px) translateX(1px) rotate(-2deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

/* Continuous wind behind P */
.wind-trail,
.wind-trail::before,
.wind-trail::after {
    position: absolute;
    content: "";
    height: 2px;
    border-radius: 10px;
    background: currentColor;
    pointer-events: none;
    opacity: 0;
}

.wind-trail {
    width: 26px;
    left: -28px;
    top: 58%;
    animation: windFlow 0.9s linear infinite;
}

.wind-trail::before {
    width: 18px;
    left: -9px;
    top: -7px;
    animation: windFlow 0.9s linear infinite;
    animation-delay: 0.15s;
}

.wind-trail::after {
    width: 22px;
    left: -5px;
    top: 7px;
    animation: windFlow 0.9s linear infinite;
    animation-delay: 0.3s;
}

@keyframes windFlow {
    0% {
        opacity: 0;
        transform: translateX(12px);
    }

    25% {
        opacity: 0.45;
    }

    100% {
        opacity: 0;
        transform: translateX(-22px);
    }
}


/* Consistent, visible keyboard focus ring across interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 3px;
  box-shadow: 0 0 12px var(--gold-glow);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Applied via JS while the mobile nav menu is open */
body.nav-open {
  overflow: hidden;
}

header {
  height: 100vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.navbar {
   height: 90px;
  padding: 0 8%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  /* padding: 16px 8%; */
  padding: 10px 8%; /* was 16px */


  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);

  z-index: 1000;
  transition: 0.4s;
}

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

.logo img {
  height: 90px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0%;
  height: 2px;

  background: var(--gold-text-gradient);

  transition: 0.35s;
}

.nav-links a:hover {
  color: var(--gold-300);
  text-shadow: 0 0 12px var(--gold-glow);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold-300);
  text-shadow: 0 0 12px var(--gold-glow);
}

.nav-links a.active::after {
  width: 100%;
}

.btn {
  display: inline-block;

  padding: 15px 38px;

  background: var(--gold-gradient);

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 600;

  position: relative;

  overflow: hidden;

  transition: 0.4s;

  border: none;

  box-shadow: 0 12px 32px var(--gold-glow);
}

.btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 50px var(--gold-glow-strong);
}

.hero {
  display: flex;
  align-items: center;
  height: 85vh;
  padding: 0 8%;
}

.hero-content {
   max-width: 650px;
    position: relative;
    top: 40px;

}

.hero h4 {
  color: #d4af37;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-shadow: 0 0 20px var(--gold-glow);
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px var(--gold-glow));
   display: block;
    opacity: 0;
    transform: translateY(25px);
    animation: heroLineReveal 0.7s ease-out forwards;
}
/* Hero heading entrance animation */
/* Hero text line-by-line entrance */


.hero h1 span:nth-child(1) {
    animation-delay: 0.1s;
}

.hero h1 span:nth-child(2) {
    animation-delay: 0.25s;
}

.hero h1 span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes heroLineReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-outline {
  padding: 12px 28px;
  border: 2px solid var(--gold-300);
  border-radius: 30px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold-gradient);
  box-shadow: 0 12px 32px var(--gold-glow);
  border-color: var(--gold-400);
}
.features {
  padding: 100px 8%;
  background: var(--surface);
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 3rem;
}

.section-title span {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  color: #aaa;
  margin-top: 15px;
}

.feature-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.feature-card {
  background: linear-gradient(180deg, #1d1d1d 0%, #151515 100%);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 22px;

  padding: 34px 28px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  min-height: 280px;

  text-align: center;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;

  overflow: hidden;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);

  border-color: rgba(212, 175, 55, 0.45);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.03);

  box-shadow:
    0 20px 50px rgba(212, 175, 55, 0.25),
    inset 0 0 20px rgba(212, 175, 55, 0.05);

  border: 1px solid rgba(212, 175, 55, 0.5);
}

.icon {
  width: 78px;
  height: 78px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  margin-bottom: 24px;

  background: rgba(212, 175, 55, 0.08);

  border: 1px solid rgba(212, 175, 55, 0.25);

  color: #d4af37;

  transition: 0.35s ease;
}

.feature-card:hover .icon {
  background: rgba(212, 175, 55, 0.15);

  border-color: #d4af37;

  transform: scale(1.08);
}

.icon svg {
  width: 38px;
  height: 38px;
}
.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.feature-card p {
  color: #bdbdbd;
  line-height: 1.7;
  font-size: 0.97rem;
}
.plans {
  padding: 100px 8%;
  background: #131313;
}

.plan-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 35px;
}

.plan-card {
  position: relative;

  background: var(--surface);

  padding: 45px 35px;

  border-radius: 20px;

  text-align: center;

  transition: 0.35s;
}

.plan-card:hover {
  transform: translateY(-12px) scale(1.03);

  box-shadow:
    0 20px 50px var(--gold-glow),
    inset 0 0 20px rgba(212, 175, 55, 0.05);

  border: 1px solid var(--gold-border);
}

.plan-card h3 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.price {
  font-size: 3rem;
  font-weight: 700;

  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  margin-bottom: 35px;
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.plan-card ul {
  list-style: none;

  margin-bottom: 35px;
}

.plan-card li {
  margin: 18px 0;

  color: #ddd;
}

.popular {
  border: 2px solid #d4af37;

  transform: scale(1.05);

  box-shadow:
    0 20px 50px var(--gold-glow),
    inset 0 0 20px rgba(212, 175, 55, 0.08);
}

.popular:hover {
  transform: scale(1.08);
}

.badge {
  position: absolute;

  top: -15px;

  left: 50%;

  transform: translateX(-50%);

  background: var(--gold-gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;

  font-size: 0.85rem;

  font-weight: 600;

  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}
/* ===================
   BMI Calculator
   =================== */
.bmi {
  padding: 100px 8%;
  background: #131313;
}

.bmi-card {
  max-width: 950px;
  margin: 0 auto;

  background: #1a1a1a;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 50px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(212, 175, 55, 0.03);
}

.bmi-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bmi-field label {
  display: block;
  margin-bottom: 8px;
  color: #bbb;
  font-size: 0.9rem;
  font-weight: 500;
}

.bmi-field input {
  width: 100%;
  padding: 16px 18px;
  background: #202b3a;
  border: 1px solid #2d3748;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.bmi-field input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.3);
}

.bmi-form .btn {
  border: none;
  margin-top: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.bmi-error {
  min-height: 20px;
  color: #ff6b6b;
  font-size: 0.85rem;
}

.bmi-result {
  text-align: center;
  border-left: 1px solid #2a2a2a;
  padding-left: 50px;
}

.bmi-score {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bmi-category {
  margin-top: 12px;
  color: #ddd;
  font-weight: 600;
  min-height: 24px;
}

.bmi-scale {
  position: relative;
  margin-top: 25px;
  height: 10px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    #3b82f6 0%,
    #3b82f6 25%,
    #22c55e 25%,
    #22c55e 50%,
    var(--gold-400) 50%,
    var(--gold-400) 75%,
    #ef4444 75%,
    #ef4444 100%
  );
}

.bmi-scale-fill {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  border: 3px solid #0f0f0f;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  transform: translate(-50%, -50%);
  transition: left 0.5s ease;
}

.gallery {
  padding: 100px 8%;
  background: #131313;
}

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  will-change: opacity, transform;
}

.js-enabled .gallery-grid img {
  opacity: 0;
  transform: translateY(12px);
}

.js-enabled .gallery-grid img.loaded {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid img:hover {
  transform: translateY(0) scale(1.05);

  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

.announcements {
  padding: 100px 8%;
  background: var(--surface);
}

.announcement-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 24px;
  align-items: start;
}
.announcement-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.announcement-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.announcement-category,
.announcement-priority {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

/* Categories */

.announcement-category.general {
  background: #d4af37;
}

.announcement-category.offer {
  background: #10b981;
}

.announcement-category.event {
  background: #3b82f6;
}

.announcement-category.notice {
  background: #f59e0b;
}

.announcement-category.holiday {
  background: #8b5cf6;
}

.announcement-category.maintenance {
  background: #ef4444;
}

/* Priorities */

.announcement-priority.normal {
  background: #6b7280;
}

.announcement-priority.important {
  background: #d4af37;
}

.announcement-priority.urgent {
  background: #dc2626;
}
.announcement-item {
  background: #171717;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
}

.announcement-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.announcement-card-header strong {
  display: block;
  font-size: 1.35rem;
}

.announcement-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #c7c7c7;
  font-size: 0.95rem;
  margin-top: 6px;
}

.announcement-priority {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.announcement-priority.important {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-200);
}

.announcement-priority.urgent {
  background: rgba(255, 101, 101, 0.12);
  border: 1px solid rgba(255, 101, 101, 0.25);
  color: #ff8b8b;
}

.announcement-content {
  color: #d3d3d3;
  line-height: 1.8;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.announcement-empty {
  text-align: center;
  padding: 40px;
  border-radius: 20px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #aaaaaa;
}

.status-pill {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}

.status-paid {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-200);
}

.status-pending {
  background: rgba(255, 255, 255, 0.08);
  color: #d1d1d1;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.action-button:hover {
  background: rgba(212, 175, 55, 0.14);
  transform: translateY(-1px);
}

.contact {
  padding: 100px 8%;

  background: #0f1720;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

.contact-left h2 {
  font-size: 3rem;

  margin-bottom: 20px;
}

.contact-left p {
  color: #bbb;

  line-height: 1.8;

  margin-bottom: 20px;
}

.contact-info p {
  color: white;

  margin: 15px 0;
}

.contact-info a,
.location-info a[href^="tel:"],
.location-info a[href^="mailto:"] {
  color: inherit;
  text-decoration: none;
}

.contact-info a:hover,
.location-info a[href^="tel:"]:hover,
.location-info a[href^="mailto:"]:hover {
  color: #d4af37;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  text-decoration: underline;
}

.contact form {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.contact input,
.contact textarea {
  padding: 18px;

  background: #1a1a1a;

  border: 1px solid rgba(212, 175, 55, 0.15);

  border-radius: 12px;

  color: #ffffff;

  font-size: 1rem;

  outline: none;

  transition: all 0.3s ease;
}

.contact textarea {
  resize: none;

  height: 160px;
}

.contact button {
  cursor: pointer;
}

/* Field wrapper + inline error messages */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-error {
  min-height: 16px;
  color: #ff6b6b;
  font-size: 0.8rem;
  padding-left: 4px;
}

.contact input.invalid,
.contact select.invalid,
.contact textarea.invalid {
  outline: 2px solid #ff6b6b;
  outline-offset: -1px;
}

.contact input.valid,
.contact select.valid {
  outline: 2px solid #22c55e;
  outline-offset: -1px;
}

/* Disabled/submitting state for the submit button */
.contact button.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* ===================
   Toast notification (replaces alert())
   =================== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 30px);

  background: #181818;
  border-left: 4px solid #d4af37;
  color: white;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 16px rgba(212, 175, 55, 0.05);

  padding: 16px 26px;
  border-radius: 12px;

  font-size: 0.95rem;
  max-width: 90%;

  opacity: 0;
  pointer-events: none;
  z-index: 6000;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast.error {
  border-left-color: #ef4444;
}

.toast.success {
  border-left-color: #22c55e;
}
/* ===================
   Location / Google Maps section
   =================== */
.location {
  padding: 100px 8%;
  background: #131313;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;

  max-width: 1100px;
  margin: 0 auto;
}

.map-embed {
  min-height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #2d3748;
}

.location-info {
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(212, 175, 55, 0.03);
}

.location-info h3 {
  margin: 18px 0 12px;
  font-size: 1.6rem;
}

.location-info p {
  color: #ddd;
  margin: 10px 0;
}

.hours-list {
  list-style: none;
  margin: 20px 0 28px;
  border-top: 1px solid #2d3748;
  padding-top: 20px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  color: #bbb;
  padding: 8px 0;
  font-size: 0.95rem;
}

.hours-list li span:first-child {
  color: white;
  font-weight: 500;
}

/* Live open/closed status badge, driven by js/script.js */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);

  font-size: 0.9rem;
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #666;
}

.status-badge.open .status-dot {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
}

.status-badge.open {
  color: #22c55e;
}

.status-badge.closed .status-dot {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
}

.status-badge.closed {
  color: #ef4444;
}

/* ================= FOOTER ================= */

.footer{
    background:#0f1720;
    padding:15px 7% 22px;
}

.footer-content{
    max-width:1400px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:70px;
}

/* ---------- LEFT ---------- */

.footer-left{
    display:flex;
    align-items:center;
}

.footer-location{
    display:flex;
    align-items:center;
    width:100%;
    color:var(--gold-300);
    font-size:.9rem;
    letter-spacing:4px;
    font-weight:500;
    white-space:nowrap;
transform: translateY(-33px);

}

.footer-location svg{
    width:20px;
    height:20px;
    margin-right:12px;
}

.footer-location::after{
    content:"";
    flex:1;
    height:1px;
    margin-left:22px;
    background:rgba(212,175,55,.30);
}

/* ---------- CENTER ---------- */

.footer-center{
    text-align:center;
}

.footer-center img{
    width:235px;
    display:block;
    margin:0 auto 2px;
}

.footer-center p{
    color:#c3c3c3;
    font-size:1rem;
    line-height:1.8;
    letter-spacing:.3px;
    margin:0;
}

/* ---------- RIGHT ---------- */

.footer-right{
    display:flex;
    flex-direction:column;
    justify-self:end;
    width:100%;
}

.footer-follow{
    display:flex;
    align-items:center;
    width:100%;
}

.footer-follow span{
    flex:1;
    height:1px;
    background:rgba(212,175,55,.30);
    margin-right:18px;
}

.footer-follow p{
    margin:0;

    color:var(--gold-300);

    font-size:.9rem;

    font-weight:500;

    letter-spacing:4px;

    white-space:nowrap;
}

.instagram-btn{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:18px auto 0;

    border-radius:50%;

    border:2px solid rgba(212,175,55,.45);

    color:#fff;

    text-decoration:none;

    transition:.35s ease;
    box-shadow:
        0 0 12px rgba(212,175,55,.18),
        0 0 24px rgba(212,175,55,.10);
}
.instagram-btn:hover{
    background:var(--gold-400);
    color:#111;
    transform:translateY(-4px);

    box-shadow:
        0 0 18px rgba(212,175,55,.45),
        0 0 35px rgba(212,175,55,.30),
        0 0 55px rgba(212,175,55,.15);
}
/* ---------- COPYRIGHT ---------- */

.footer-bottom{
    max-width:1400px;
    margin:45px auto 0;
    padding-top:12px;

    text-align:center;

    border-top:1px solid rgba(212,175,55,.12);

    color:#8f8f8f;
    font-size:.95rem;
}
.cta {
  padding: 120px 8%;

  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("../images/gallery-3.jpg");

  background-size: cover;
  background-position: center;

  text-align: center;
}

.cta-content {
  max-width: 850px;
  margin: auto;
}

.cta h2 {
  font-size: 3.5rem;

  margin-bottom: 25px;
}

.cta p {
  color: #ddd;

  line-height: 1.9;

  margin-bottom: 45px;

  font-size: 1.1rem;
}

#topBtn {
  position: fixed;

  right: 30px;
  bottom: 30px;

  width: 55px;
  height: 55px;

  border: none;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    var(--gold-300) 0%,
    var(--gold-400) 50%,
    var(--gold-400) 100%
  );

  color: white;

  font-size: 22px;

  cursor: pointer;

  display: none;

  transition: all 0.3s;

  z-index: 999;

  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
}

#topBtn:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.5);
}

/* ===================
   Floating WhatsApp button
   =================== */
.whatsapp-btn {
  position: fixed;
  left: 30px;
  bottom: 30px;

  width: 58px;
  height: 58px;

  background: #25d366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);

  z-index: 999;
  transition: transform 0.3s;
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.whatsapp-btn:hover {
  transform: translateY(-6px) scale(1.05);
}

/* Soft pulsing ring to draw the eye without being obnoxious */
.whatsapp-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: whatsapp-pulse 2.2s ease-out infinite;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.fade {
  opacity: 0;

  transform: translateY(50px);

  transition: 1s;
}

.fade.show {
  opacity: 1;

  transform: translateY(0);
}
.contact select {
  padding: 18px;

  background: #1a1a1a;

  color: white;

  border: 1px solid rgba(212, 175, 55, 0.15);

  border-radius: 12px;

  outline: none;

  font-size: 1rem;

  transition: all 0.3s ease;
}
/* Animated hamburger / mobile menu toggle (3 bars -> X) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  width: 32px;
  height: 24px;

  background: none;
  border: none;
  padding: 0;
  cursor: pointer;

  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: white;

  transition:
    transform 0.35s ease,
    opacity 0.25s ease;
}

/* Top and bottom bars rotate into an X, middle bar fades out */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.lightbox {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.9);

  display: none;

  justify-content: center;
  align-items: center;

  z-index: 5000;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;

  border-radius: 15px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.close {
  position: absolute;

  top: 30px;
  right: 40px;

  font-size: 3rem;

  color: white;

  cursor: pointer;

  background: none;
  border: none;
  line-height: 1;
  padding: 0;
}

/* Lightbox prev/next arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: white;

  width: 55px;
  height: 55px;
  border-radius: 50%;

  font-size: 1.4rem;
  cursor: pointer;

  transition:
    background 0.3s,
    transform 0.3s;
}

.lightbox-nav:hover {
  background: rgba(212, 175, 55, 0.25);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.4);
}

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);

  color: #ccc;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.plan-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
/* -------------------- ULTIMATE PLAN -------------------- */

.plan-card.ultimate {
  position: relative;

  /* Place below other cards */
  grid-column: 1 / -1;

  max-width: 900px;
  width: 100%;
  margin: 10px auto 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

  padding: 45px 55px;

  background: linear-gradient(145deg, #181818, #111);
  border: 2px solid #d4af37;
  border-radius: 22px;

  box-shadow:
    0 0 25px rgba(212, 175, 55, 0.2),
    0 0 60px rgba(212, 175, 55, 0.08);

  transition: 0.35s;
}

.plan-card.ultimate:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 35px rgba(212, 175, 55, 0.35),
    0 0 80px rgba(212, 175, 55, 0.15);
}

/* ---------- VIP Badge ---------- */

.plan-card.ultimate::before {
  content: "👑 VIP";
  position: absolute;

  top: -18px;
  left: 50%;
  transform: translateX(-50%);

  background: linear-gradient(135deg, #ffd700, #d4af37);

  color: #111;
  font-weight: 700;
  font-size: 0.9rem;

  padding: 8px 24px;

  border-radius: 50px;

  letter-spacing: 1px;

  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.35);
}

/* ---------- Left ---------- */

.ultimate .left {
  flex: 0 0 33%;
  border-right: 1px solid rgba(255, 215, 0, 0.2);
  padding-right: 40px;
}

.ultimate h3 {
  color: #ffd700;
  font-size: 3rem;
  margin-bottom: 20px;
}

.ultimate .price {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.ultimate .price span {
  font-size: 1.5rem;
  color: #d4af37;
}

.ultimate .btn {
  margin-top: 35px;
  display: inline-block;
}

/* ---------- Right ---------- */

.ultimate .right {
  flex: 1;
}

.ultimate ul {
  list-style: none;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 18px 45px;

  padding: 0;
  margin: 0;
}

.ultimate li {
  color: #f1f1f1;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .plan-card.ultimate {
    flex-direction: column;
    text-align: center;
    gap: 30px;

    padding: 40px 30px;
  }

  .ultimate .left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);

    width: 100%;

    padding-right: 0;
    padding-bottom: 30px;
  }

  .ultimate ul {
    grid-template-columns: 1fr;
  }
}
.vip-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);

  background: linear-gradient(135deg, #ffd700, #d4af37);
  color: #111;

  padding: 8px 22px;
  border-radius: 40px;

  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.stat-card .stat-number {
    display: inline-block;
    min-width: 4.5em;
    text-align: center;
    white-space: nowrap;
}
.stats-section{
    padding:120px 8%;

    background:
        linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.82)),
        url("../images/gallery-2.jpg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.stats-grid{
    margin-top:60px;

    display:grid;
    grid-template-columns:repeat(6,1fr);

   background:rgba(18,18,18,.55);

backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);

border:1px solid rgba(212,175,55,.18);
    border-radius:30px;

    overflow:hidden;


    position:relative;   /* ← Add this line */
    box-shadow:
    0 25px 80px rgba(0,0,0,.45),
    0 0 40px rgba(212,175,55,.05);
}
.stats-grid::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

background:linear-gradient(
    90deg,
    transparent,
    #D4AF37,
    transparent
);
}
.stat-card{

    padding:60px 30px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    min-height:260px;

    transition:.35s ease;

    position:relative;

}


.stat-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card:hover{
    background:rgba(212,175,55,.04);

    box-shadow:
        inset 0 0 35px rgba(212,175,55,.05);
}

.stat-card h3 {
  font-size: 2.7rem;

  font-weight: 800;
  margin-bottom:22px;
  color: #d4af37;

  margin-bottom: 16px;

  line-height: 1;
}

.stat-card p {
  color: #9d9d9d;
  font-size: 0.82rem;
  margin-top:18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns:1fr;
    width: 100%;
    box-sizing: border-box;
    gap:0;
  }
    .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  

  .stat-card {
    border-right: none !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

