/* Post 42 Golf — Dark theme with lime green accents */

:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-bg-card: #1a1a1a;
  --color-bg-light: #ffffff;
  --color-bg-light-alt: #f8f9fa;
  --color-text: #f1f5f9;
  --color-text-light: #94a3b8;
  --color-text-muted: #7b8da2;
  --color-text-dark: #1a1a1a;
  --color-text-dark-light: #555555;
  --color-text-dark-muted: #888888;
  --color-accent: #B7D166;
  --color-accent-dark: #9ab84e;
  --color-border: #2a2a2a;
  --color-border-light: #e5e7eb;
  --gradient-accent: linear-gradient(135deg, #B7D166 0%, #8BC34A 50%, #CDDC39 100%);
  --font-main: 'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(183, 209, 102, 0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--color-text); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { color: var(--color-text-light); }

.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-link {
  position: absolute; top: -100px; left: 0; background: var(--color-accent);
  color: #0a0a0a; padding: 8px 16px; z-index: 1000; text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

.accent-text {
  color: var(--color-accent);
}

.gradient-text {
  display: inline;
  background: var(--gradient-accent);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
}

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

/* ================================================
   BLOB BACKGROUNDS
   ================================================ */

.blob-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; overflow: hidden;
  opacity: 0.15; filter: blur(80px);
}
.blob {
  position: absolute; border-radius: 50%;
  animation: blob-wobble 6s ease-in-out alternate infinite;
}
.blob-1 {
  width: 400px; height: 400px;
  background: rgba(183, 209, 102, 1);
  top: -10%; left: -5%;
  animation: blob-wobble 6s ease-in-out alternate infinite, blob-move-1 16s ease-in-out infinite;
}
.blob-2 {
  width: 350px; height: 350px;
  background: rgba(139, 195, 74, 1);
  top: 10%; right: -5%;
  animation: blob-wobble 5s ease-in-out alternate infinite, blob-move-2 20s ease-in-out infinite;
}
.blob-3 {
  width: 300px; height: 300px;
  background: rgba(205, 220, 57, 1);
  bottom: -5%; left: 20%;
  animation: blob-wobble 7s ease-in-out alternate infinite, blob-move-3 18s ease-in-out infinite;
}
.blob-4 {
  width: 250px; height: 250px;
  background: rgba(104, 159, 56, 1);
  bottom: 20%; right: 15%;
  animation: blob-wobble 5.5s ease-in-out alternate infinite, blob-move-4 22s ease-in-out infinite;
}
.blob-5 {
  width: 200px; height: 200px;
  background: rgba(183, 209, 102, 1);
  top: 40%; left: 40%;
  animation: blob-wobble 4.5s ease-in-out alternate infinite, blob-move-5 14s ease-in-out infinite;
}

@keyframes blob-wobble {
  0%   { border-radius: 50%; }
  50%  { border-radius: 42% 58% 70% 30% / 45% 55% 60% 40%; }
  100% { border-radius: 58% 42% 30% 70% / 55% 45% 40% 60%; }
}
@keyframes blob-move-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(120px, 80px) scale(1.1); }
  66%      { transform: translate(-60px, 120px) scale(0.9); }
}
@keyframes blob-move-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-100px, 100px) scale(0.9); }
  66%      { transform: translate(60px, -80px) scale(1.1); }
}
@keyframes blob-move-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(80px, -100px) scale(1.1); }
  66%      { transform: translate(-120px, -40px) scale(0.95); }
}
@keyframes blob-move-4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-80px, -60px) scale(1.05); }
  66%      { transform: translate(100px, 80px) scale(0.9); }
}
@keyframes blob-move-5 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, -100px) scale(1.1); }
  66%      { transform: translate(-80px, 60px) scale(0.95); }
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

/* ================================================
   TOP BAR
   ================================================ */

.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 201;
  background: var(--color-accent); height: 36px;
  transform: translateY(-100%); opacity: 0;
}
.top-bar.visible { transform: translateY(0); opacity: 1; }
.top-bar .container {
  display: flex; justify-content: center; align-items: center;
  height: 100%; gap: 32px;
}
.top-bar-item {
  display: inline-flex; align-items: center; gap: 6px;
  color: #0a0a0a; text-decoration: none; font-size: 0.8rem;
  font-weight: 600; transition: opacity 0.2s;
}
.top-bar-item:hover { opacity: 0.7; }
.top-bar-item svg { width: 14px; height: 14px; }

/* ================================================
   INTRO LAYER
   ================================================ */

.intro-layer {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh;
  z-index: 600; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0;
  background: var(--color-bg);
}

.intro-logo {
  width: min(60vw, 300px);
  height: auto;
  border-radius: 50%;
  z-index: 1;
}

.intro-loader {
  position: absolute; bottom: 15%; left: 0; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 2;
}
.loader-bar-track {
  width: 100%; height: 3px;
  background: var(--color-border); overflow: hidden;
}
.loader-bar-fill {
  width: 100%; height: 100%;
  background: var(--gradient-accent);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  border-radius: 3px;
  transform: scaleX(0); transform-origin: center;
}
.loader-number {
  font-family: var(--font-main); font-size: 3rem; font-weight: 900;
  color: var(--color-text); letter-spacing: 0.05em; font-variant-numeric: tabular-nums;
}

/* ================================================
   HEADER
   ================================================ */

.header {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 200;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transform: translateY(-100%); opacity: 0;
}
.header.visible { transform: translateY(0); opacity: 1; }

.header .container {
  display: flex; justify-content: space-between; align-items: center; height: 72px;
}

.logo { display: flex; align-items: center; text-decoration: none; gap: 12px; }
.logo img { height: 44px; width: 44px; border-radius: 50%; }
.logo-text {
  font-weight: 800; font-size: 1.1rem; color: var(--color-text);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.logo-text span { color: var(--color-accent); }

.nav { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link {
  color: var(--color-text-light); text-decoration: none; font-weight: 500;
  font-size: 0.9rem; transition: color 0.2s; letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--color-accent); }

.nav-toggle {
  display: none; background: none; border: none;
  color: var(--color-text); cursor: pointer; padding: 4px;
}
.nav-toggle svg { width: 24px; height: 24px; }

.btn-book {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; font-size: 0.9rem; font-weight: 700;
  color: #0a0a0a; background: var(--color-accent);
  border: none; border-radius: var(--radius);
  text-decoration: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.btn-book:hover { background: var(--color-accent-dark); transform: translateY(-2px); }

/* ================================================
   BUTTONS
   ================================================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px; font-size: 1rem; font-weight: 700; line-height: 1;
  text-decoration: none; border-radius: var(--radius); border: none; cursor: pointer;
  text-align: center; transition: all 0.2s; font-family: inherit;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.btn-primary { background: var(--color-accent); color: #0a0a0a; }
.btn-primary:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-secondary { background: transparent; color: var(--color-text); border: 2px solid var(--color-border); }
.btn-secondary:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-full { width: 100%; }

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: 140px 0 80px; overflow: hidden;
}

.hero-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; overflow: hidden; background: #0a0a0a;
}
.hero-video .wistia_responsive_padding { padding: 0 !important; height: 100% !important; }
.hero-video .wistia_responsive_wrapper { height: 100% !important; }
.hero-video .wistia_embed { height: 100% !important; width: 100% !important; }
.hero-video video { object-fit: cover; width: 100%; height: 100%; }

/* Hide Wistia UI chrome — keep video visible */
.hero-video .w-bottom-bar,
.hero-video .w-vulcan-v2-button,
.hero-video [data-handle="clickForSoundButton"],
.hero-video [data-handle="bigPlayButton"] {
  display: none !important;
}

.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2; text-align: center; max-width: 800px;
  padding: 48px 40px; border-radius: var(--radius-xl);
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.veteran-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; margin-bottom: 24px;
  background: rgba(183, 209, 102, 0.1);
  border: 1px solid rgba(183, 209, 102, 0.3);
  border-radius: 24px; font-size: 0.85rem; font-weight: 600;
  color: var(--color-accent); letter-spacing: 0.05em; text-transform: uppercase;
}
.veteran-badge svg { width: 16px; height: 16px; }

.hero h1 { margin-bottom: 20px; }
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--color-text-light); max-width: 600px;
  margin: 0 auto 16px; line-height: 1.5;
}

.hero-price {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-bottom: 40px; font-size: 1.1rem; color: var(--color-text-muted);
}
.hero-price .price {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: var(--color-accent);
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================
   SECTIONS — General
   ================================================ */

.section {
  position: relative; padding: 100px 0; overflow: hidden;
}
.section-alt { background: var(--color-bg-alt); }

/* Light (white) sections */
.section-light { background: var(--color-bg-light); }
.section-light-alt { background: var(--color-bg-light-alt); }

.section-light h2,
.section-light h3,
.section-light h4,
.section-light-alt h2,
.section-light-alt h3,
.section-light-alt h4 { color: var(--color-text-dark); }

.section-light p,
.section-light-alt p { color: var(--color-text-dark-light); }

.section-light .section-label,
.section-light-alt .section-label { color: var(--color-accent-dark); }

.section-light .section-header p,
.section-light-alt .section-header p { color: var(--color-text-dark-light); }

/* Light section cards */
.section-light .service-card,
.section-light-alt .service-card {
  background: var(--color-bg-light);
  border-color: var(--color-border-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.section-light .service-card:hover,
.section-light-alt .service-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.section-light .service-card-body h3,
.section-light-alt .service-card-body h3 { color: var(--color-text-dark); }
.section-light .service-card-body p,
.section-light-alt .service-card-body p { color: var(--color-text-dark-light); }

/* Light section hours */
.section-light .hours-table td:first-child,
.section-light-alt .hours-table td:first-child { color: var(--color-text-dark); }
.section-light .hours-table td:last-child,
.section-light-alt .hours-table td:last-child { color: var(--color-text-dark-light); }
.section-light .hours-table tr,
.section-light-alt .hours-table tr { border-color: var(--color-border-light); }
.section-light .hours-table tr.today td,
.section-light-alt .hours-table tr.today td { color: var(--color-accent-dark); }
.section-light .hours-info h3,
.section-light-alt .hours-info h3 { color: var(--color-text-dark); }
.section-light .contact-detail a,
.section-light-alt .contact-detail a { color: var(--color-text-dark-light); }
.section-light .contact-detail a:hover,
.section-light-alt .contact-detail a:hover { color: var(--color-accent-dark); }
.section-light .hours-note,
.section-light-alt .hours-note { background: rgba(183, 209, 102, 0.12); }

/* Light section FAQ */
.section-light .faq-question,
.section-light-alt .faq-question { color: var(--color-text-dark); }
.section-light .faq-question:hover,
.section-light-alt .faq-question:hover { color: var(--color-accent-dark); }
.section-light .faq-answer p,
.section-light-alt .faq-answer p { color: var(--color-text-dark-light); }
.section-light .faq-item,
.section-light-alt .faq-item { border-color: var(--color-border-light); }

/* Light section pricing */
.section-light .pricing-card,
.section-light-alt .pricing-card {
  background: var(--color-bg-light);
  border-color: var(--color-border-light);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.section-light .pricing-amount,
.section-light-alt .pricing-amount { color: var(--color-accent-dark); }
.section-light .pricing-per,
.section-light-alt .pricing-per { color: var(--color-text-dark-light); }
.section-light .pricing-detail,
.section-light-alt .pricing-detail { color: var(--color-text-dark-muted); }
.section-light .pricing-features li,
.section-light-alt .pricing-features li { color: var(--color-text-dark-light); border-color: var(--color-border-light); }
.section-light .pricing-features svg,
.section-light-alt .pricing-features svg { color: var(--color-accent-dark); }
.section-light .payment-methods,
.section-light-alt .payment-methods { color: var(--color-text-dark-muted); }

/* Light section reviews */
.section-light .review-card,
.section-light-alt .review-card {
  background: var(--color-bg-light);
  border-color: var(--color-border-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.section-light .review-card:hover,
.section-light-alt .review-card:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); }
.section-light .review-heading,
.section-light .review-author-name,
.section-light-alt .review-heading,
.section-light-alt .review-author-name { color: var(--color-text-dark); }
.section-light .review-text,
.section-light-alt .review-text { color: var(--color-text-dark-light); }
.section-light .review-author,
.section-light-alt .review-author { border-color: var(--color-border-light); }

/* Light section about */
.section-light .about-content h2,
.section-light-alt .about-content h2 { color: var(--color-text-dark); }
.section-light .about-content p,
.section-light-alt .about-content p { color: var(--color-text-dark-light); }

/* Light section forms */
.section-light .contact-form,
.section-light-alt .contact-form {
  background: var(--color-bg-light);
  border-color: var(--color-border-light);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.section-light .form-group label,
.section-light-alt .form-group label { color: var(--color-text-dark); }
.section-light .form-group input,
.section-light .form-group select,
.section-light .form-group textarea,
.section-light-alt .form-group input,
.section-light-alt .form-group select,
.section-light-alt .form-group textarea {
  background: var(--color-bg-light-alt);
  border-color: var(--color-border-light);
  color: var(--color-text-dark);
}

/* Light blobs — darker tones */
.section-light .blob,
.section-light-alt .blob { opacity: 0.5; }

.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 1.1rem; color: var(--color-text-light);
  max-width: 600px; margin: 0 auto;
}

.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  color: var(--color-accent); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.about-image {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 16px; }

/* ================================================
   SERVICES CARDS
   ================================================ */

.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.services-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0; transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-glow);
}

.service-card-image {
  width: 100%; height: 220px; object-fit: cover; display: block;
}

.service-card-body { padding: 28px; }
.service-card-body h3 {
  font-size: 1.3rem; margin-bottom: 12px; color: var(--color-text);
}
.service-card-body p {
  font-size: 0.95rem; line-height: 1.6; color: var(--color-text-light);
}

.service-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  background: rgba(183, 209, 102, 0.1);
  color: var(--color-accent);
}
.service-card-icon svg { width: 24px; height: 24px; }

/* ============================================
   CMS Card Grid (Tournaments & Leagues)
   ============================================ */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
  max-width: 900px; margin: 0 auto;
}
.cms-card {
  background: var(--color-bg-card); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cms-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.cms-card-image {
  width: 100%; height: 200px; object-fit: cover; display: block;
}
.cms-card-body { padding: 24px; }
.cms-card-body h3 {
  font-size: 1.2rem; margin-bottom: 8px; color: var(--color-text);
}
.cms-card-body p {
  font-size: 0.9rem; line-height: 1.6; color: var(--color-text-light); margin-bottom: 16px;
}
.card-meta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px;
}
.card-meta-item {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.8rem; color: var(--color-text-muted);
}
.card-meta-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.status-badge {
  display: inline-block; padding: 4px 12px; border-radius: 24px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 12px;
}
.status-upcoming { background: rgba(183, 209, 102, 0.15); color: var(--color-accent); }
.status-registration_open { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.status-registration_closed { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.status-active { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.status-in_progress { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.status-completed { background: rgba(148, 163, 184, 0.15); color: var(--color-text-muted); }
.status-cancelled { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.btn-sm {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; font-size: 0.85rem; border-radius: var(--radius);
  font-weight: 600; text-decoration: none; transition: all 0.3s ease;
  background: var(--gradient-accent); color: #0a0a0a; line-height: 1;
}
.btn-sm:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.section-empty {
  text-align: center; padding: 48px 24px;
}
.section-empty p {
  font-size: 1rem; color: var(--color-text-muted);
}
.section-empty a {
  color: var(--color-accent); text-decoration: underline;
}

/* Light section CMS card overrides */
.section-light .cms-card,
.section-light-alt .cms-card {
  background: var(--color-bg-light); border-color: var(--color-border-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.section-light .cms-card:hover,
.section-light-alt .cms-card:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); }
.section-light .cms-card-body h3,
.section-light-alt .cms-card-body h3 { color: var(--color-text-dark); }
.section-light .cms-card-body p,
.section-light-alt .cms-card-body p { color: var(--color-text-dark-light); }
.section-light .card-meta-item,
.section-light-alt .card-meta-item { color: var(--color-text-dark-muted); }
.section-light .section-empty p,
.section-light-alt .section-empty p { color: var(--color-text-dark-muted); }
.section-light .section-empty a,
.section-light-alt .section-empty a { color: var(--color-accent-dark); }

/* ================================================
   PRICING
   ================================================ */

.pricing-card {
  max-width: 600px; margin: 0 auto; text-align: center;
  padding: 48px 40px; border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(183, 209, 102, 0.2);
  box-shadow: var(--shadow-glow);
}

.pricing-amount {
  font-size: clamp(3rem, 8vw, 5rem); font-weight: 900;
  color: var(--color-accent); line-height: 1; margin-bottom: 8px;
}
.pricing-per { font-size: 1.1rem; color: var(--color-text-light); margin-bottom: 8px; }
.pricing-detail { font-size: 0.95rem; color: var(--color-text-muted); margin-bottom: 32px; }

.pricing-features {
  list-style: none; text-align: left; margin-bottom: 32px;
}
.pricing-features li {
  padding: 12px 0; border-bottom: 1px solid var(--color-border);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--color-text-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features svg {
  width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0;
}

.payment-methods {
  margin-top: 24px; font-size: 0.8rem; color: var(--color-text-muted);
}

/* ================================================
   HOURS TABLE
   ================================================ */

.hours-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}

.hours-table {
  width: 100%; border-collapse: collapse;
}
.hours-table tr { border-bottom: 1px solid var(--color-border); }
.hours-table td {
  padding: 16px 0; font-size: 1rem;
}
.hours-table td:first-child { font-weight: 600; color: var(--color-text); }
.hours-table td:last-child { text-align: right; color: var(--color-text-light); }
.hours-table tr.today td { color: var(--color-accent); }

.hours-note {
  margin-top: 24px; padding: 16px 20px; border-radius: var(--radius);
  background: rgba(183, 209, 102, 0.08);
  border-left: 3px solid var(--color-accent);
  font-size: 0.9rem; color: var(--color-text-light);
}

.hours-info h3 { margin-bottom: 20px; font-size: 1.5rem; }
.hours-info p { margin-bottom: 16px; line-height: 1.7; }

.contact-detail {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; font-size: 1rem;
}
.contact-detail svg {
  width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0;
}
.contact-detail a {
  color: var(--color-text-light); text-decoration: none; transition: color 0.2s;
}
.contact-detail a:hover { color: var(--color-accent); }
.contact-detail-fb svg { color: #999; transition: color 0.2s; }
.contact-detail-fb:hover svg { color: #1877F2; }
.contact-detail-fb a:hover { color: #1877F2; }

/* ================================================
   FAQ
   ================================================ */

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

.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1.05rem; font-weight: 600;
  color: var(--color-text); text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--color-accent); }
.faq-question svg {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform 0.3s; color: var(--color-text-muted);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); color: var(--color-accent); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding-bottom: 20px; font-size: 0.95rem;
  line-height: 1.7; color: var(--color-text-light);
}

/* ================================================
   CONTACT / CTA
   ================================================ */

.cta-section {
  position: relative; padding: 100px 0; text-align: center; overflow: hidden;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; margin-bottom: 40px; color: var(--color-text-light); }

.cta-section.section-light-alt h2 { color: var(--color-text-dark); }
.cta-section.section-light-alt p { color: var(--color-text-dark-light); }
.cta-section.section-light-alt .section-label { color: var(--color-accent-dark); }
.cta-section.section-light-alt .btn-secondary {
  color: var(--color-text-dark); border-color: var(--color-border-light);
}
.cta-section.section-light-alt .btn-secondary:hover { border-color: var(--color-accent-dark); color: var(--color-accent-dark); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; text-align: left;
}

.contact-form {
  padding: 32px; border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; margin-bottom: 6px; font-weight: 500;
  font-size: 0.85rem; color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; font-size: 0.95rem; font-family: inherit;
  border: 1px solid var(--color-border); border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05); color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(183, 209, 102, 0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-status {
  margin-top: 12px; padding: 10px; border-radius: var(--radius);
  text-align: center; display: none; font-size: 0.9rem;
}
.form-status.success { display: block; background: rgba(183, 209, 102, 0.15); color: var(--color-accent); }
.form-status.error { display: block; background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.form-status.loading { display: block; background: rgba(255, 255, 255, 0.05); color: var(--color-text-light); }

.contact-info { display: flex; flex-direction: column; justify-content: center; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; line-height: 1.7; }

.map-placeholder {
  width: 100%; height: 200px; border-radius: var(--radius-lg);
  background: var(--color-bg-card); border: 1px solid var(--color-border);
  overflow: hidden;
}
.map-placeholder iframe {
  width: 100%; height: 100%; border: 0;
}

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

.footer {
  padding: 40px 0; border-top: 1px solid var(--color-border);
  background: var(--color-bg); text-align: center;
}
.footer-content {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer p { font-size: 0.85rem; color: var(--color-text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: var(--color-text-muted); text-decoration: none;
  font-size: 0.85rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-accent); }

.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: none; color: var(--color-text-muted);
  transition: color 0.2s;
}
.social-link:hover { color: #1877F2; }
.social-link svg { width: 20px; height: 20px; }

/* ================================================
   TESTIMONIALS
   ================================================ */

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

.review-card {
  padding: 28px; border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }

.review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-stars svg {
  width: 18px; height: 18px; fill: var(--color-accent); stroke: var(--color-accent);
}
.review-stars svg.empty { fill: none; stroke: var(--color-text-muted); }

.review-heading { font-weight: 700; font-size: 1rem; color: var(--color-text); margin-bottom: 8px; }
.review-text { font-size: 0.9rem; line-height: 1.6; color: var(--color-text-light); margin-bottom: 16px; }

.review-author {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px; border-top: 1px solid var(--color-border);
}
.review-author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(183, 209, 102, 0.15); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.review-author-name { font-weight: 600; font-size: 0.85rem; color: var(--color-text); }
.review-author-date { font-size: 0.75rem; color: var(--color-text-muted); }

.testimonials-actions { text-align: center; }
.testimonials-empty { text-align: center; padding: 40px; margin-bottom: 24px; }
.testimonials-empty p { font-size: 1rem; }

/* Star rating input */
.star-rating { display: flex; gap: 4px; }
.star-rating .star {
  background: none; border: none; cursor: pointer; padding: 2px;
  color: var(--color-text-muted); transition: color 0.15s;
}
.star-rating .star svg { width: 28px; height: 28px; fill: none; stroke: currentColor; }
.star-rating .star.active svg { fill: var(--color-accent); stroke: var(--color-accent); color: var(--color-accent); }
.star-rating .star:hover svg,
.star-rating .star:hover ~ .star svg { color: var(--color-accent); }

.review-form-wrapper { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ================================================
   GALLERY
   ================================================ */

.gallery-video { margin-bottom: 32px; }
.gallery-video-wrapper {
  position: relative; padding-top: 56.25%; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.gallery-video-wrapper iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 40px;
}
.gallery-item {
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  aspect-ratio: 1; transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.virtual-tour { text-align: center; }
.virtual-tour h3 { margin-bottom: 16px; }
.section-light-alt .virtual-tour h3 { color: var(--color-text-dark); }
.virtual-tour-wrapper {
  position: relative; padding-top: 50%; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.virtual-tour-wrapper iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

/* ================================================
   LIGHTBOX
   ================================================ */

.lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.92); z-index: 1000;
  display: none; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: var(--radius-lg);
}

.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: #fff; font-size: 2.5rem;
  cursor: pointer; opacity: 0.7; transition: opacity 0.2s; line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1); border: none; color: #fff;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev svg,
.lightbox-next svg { width: 24px; height: 24px; }

/* Elfsight widget — hide their built-in heading */
[class*="elfsight"] [class*="header"],
[class*="elfsight"] [class*="title"] {
  display: none !important;
}

/* ================================================
   CHAT WIDGET
   ================================================ */

.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 500; }

.chat-toggle {
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--color-accent); color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(183, 209, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-toggle:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(183, 209, 102, 0.4); }
.chat-toggle svg { width: 24px; height: 24px; }
.chat-icon-close { display: none; }
.chat-widget.open .chat-icon-open { display: none; }
.chat-widget.open .chat-icon-close { display: block; }

.chat-window {
  position: absolute; bottom: 72px; right: 0;
  width: 360px; max-height: 480px;
  border-radius: var(--radius-xl); overflow: hidden;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  display: none; flex-direction: column;
}
.chat-widget.open .chat-window { display: flex; }

.chat-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; background: var(--color-accent);
}
.chat-header-info { display: flex; align-items: center; gap: 10px; color: #0a0a0a; }
.chat-header-info strong { font-size: 0.9rem; display: block; }
.chat-avatar { width: 32px; height: 32px; border-radius: 50%; }
.chat-status { font-size: 0.7rem; opacity: 0.7; }
.chat-close {
  background: none; border: none; cursor: pointer; color: #0a0a0a; padding: 4px;
  opacity: 0.7; transition: opacity 0.2s;
}
.chat-close:hover { opacity: 1; }
.chat-close svg { width: 18px; height: 18px; }

.chat-messages {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px; max-height: 320px;
}

.chat-msg p {
  padding: 10px 14px; border-radius: 16px;
  font-size: 0.88rem; line-height: 1.5; max-width: 85%;
}
.chat-msg-bot p {
  background: rgba(255, 255, 255, 0.08); color: var(--color-text);
  border-bottom-left-radius: 4px;
}
.chat-msg-user { display: flex; justify-content: flex-end; }
.chat-msg-user p {
  background: var(--color-accent); color: #0a0a0a;
  border-bottom-right-radius: 4px;
}

.chat-msg-typing p { color: var(--color-text-muted); font-style: italic; }

.chat-input-form {
  display: flex; padding: 12px; gap: 8px;
  border-top: 1px solid var(--color-border);
}
.chat-input {
  flex: 1; padding: 10px 14px; font-size: 0.88rem; font-family: inherit;
  border: 1px solid var(--color-border); border-radius: 24px;
  background: rgba(255, 255, 255, 0.05); color: var(--color-text);
  outline: none;
}
.chat-input:focus { border-color: var(--color-accent); }
.chat-input::placeholder { color: var(--color-text-muted); }
.chat-send {
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--color-accent); color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.chat-send:hover { background: var(--color-accent-dark); }
.chat-send svg { width: 18px; height: 18px; }

/* ================================================
   SCROLL REVEAL
   ================================================ */

.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  /* Mobile nav */
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: fixed; top: 108px; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 24px; flex-direction: column; gap: 12px; z-index: 10;
  }
  .nav-links.open { display: flex; }
  .nav-links .btn-book { text-align: center; justify-content: center; }

  /* Hero */
  .hero { min-height: 100vh; min-height: 100dvh; padding: 120px 0 60px; }
  .hero-content { padding: 32px 20px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image { max-height: 300px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card-image { height: 180px; }

  /* CMS card grid */
  .card-grid { grid-template-columns: 1fr; }

  /* Hours */
  .hours-grid { grid-template-columns: 1fr; gap: 40px; }

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

  /* Blobs */
  .blob-1 { width: 200px; height: 200px; }
  .blob-2 { width: 180px; height: 180px; }
  .blob-3 { width: 160px; height: 160px; }
  .blob-4 { width: 140px; height: 140px; }
  .blob-5 { width: 120px; height: 120px; }

  /* Intro */
  .intro-logo { width: min(50vw, 200px); }

  /* Pricing */
  .pricing-card { padding: 32px 24px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px; }

  /* Footer */
  .footer-content { justify-content: center; text-align: center; }

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

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Chat widget */
  .chat-widget { bottom: 16px; right: 16px; }
  .chat-window { width: calc(100vw - 32px); right: 0; bottom: 64px; max-height: 60vh; }
  .chat-toggle { width: 48px; height: 48px; }
  .chat-toggle svg { width: 20px; height: 20px; }

  /* Top bar */
  .top-bar .container { gap: 16px; }
  .top-bar-item { font-size: 0.7rem; }
  .top-bar-item svg { width: 12px; height: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-price .price { font-size: 1.5rem; }
  .pricing-amount { font-size: clamp(2.5rem, 12vw, 4rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .intro-layer { display: none !important; }
  .header { transform: none; opacity: 1; }
  .fade-up { opacity: 1; transform: none; }
}
