:root {
  --brand: rgb(255, 42, 42);
  --brand-600: rgb(252, 136, 136);
  --on-brand: rgb(255, 255, 255);

  --bg-900: rgb(10, 10, 10);
  --bg-850: rgb(18, 18, 18);
  --bg-800: rgb(22, 22, 22);
  --bg-750: rgb(27, 27, 27);
  --bg-700: rgb(34, 34, 34);
  --line-700: rgb(47, 47, 47);
  --line-650: rgb(52, 52, 52);

  --text-100: rgb(255, 255, 255);
  --text-200: rgb(232, 232, 232);
  --text-300: rgb(199, 199, 199);
  --text-400: rgb(174, 176, 180);

  --shadow-1: 0 1px 2px rgba(0, 0, 0, .5), 0 8px 18px rgba(0, 0, 0, .35);
  --shadow-2: 0 2px 6px rgba(0, 0, 0, .55), 0 14px 32px rgba(0, 0, 0, .4);

  --focus: 0 0 0 3px rgba(255, 42, 42, .65);
  --r-4: 4px;
  --r-8: 8px;
  --r-12: 12px;
  --t-fast: .2s ease;
  --t: .3s ease;
  --t-slow: .4s ease;
}

@media (prefers-reduced-motion: reduce) {

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

@media (prefers-contrast: more) {
  :root {
    --line-650: rgb(74, 74, 74);
  }
}

@media (forced-colors: active) {
  :root {
    --focus: 0 0 0 2px Highlight;
  }

  a:focus-visible,
  button:focus-visible {
    outline: 2px solid Highlight;
    outline-offset: 2px;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-900);
  color: var(--text-200);
  line-height: 1.6;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-100);
  line-height: 1.25;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--text-300);
}

p {
  margin-bottom: 1rem;
  color: var(--text-300);
}

ul {
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 0;
}

li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: .6rem;
  color: var(--text-300);
}

li::before {
  content: '•';
  color: var(--brand);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--t);
}

a:hover,
a:focus {
  color: var(--brand-600);
  text-decoration: underline;
}

a:focus-visible {
  outline: var(--focus);
  border-radius: 2px;
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

section {
  padding: 3rem 1.5rem;
}

.section-dark {
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  margin: 2.5rem 0;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-align: center;
  color: var(--brand);
  margin-bottom: 2.5rem;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 2rem;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 32px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--line-650);
}

/* Header Actions Container */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.brand a {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  line-height: 1;
}

.brand a:focus-visible {
  outline: var(--focus);
  border-radius: var(--r-4);
}

.brand img {
  width: 40px;
  height: 40px;
  display: block;
  flex-shrink: 0;
  transition: transform var(--t), filter var(--t);
}

.brand a:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(255, 42, 42, 0.4));
}

.brand span,
.brand-text {
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  color: var(--brand);
  letter-spacing: .6px;
  line-height: 1.1;
  white-space: nowrap;
}

/* Header Icons */
.header-actions {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
}

.icon-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgb(25, 25, 25);
  outline: none;
  border: 1px solid rgb(42, 42, 42);
  transition: transform .12s ease, background .12s ease;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: #222;
}

.icon-btn:active {
  transform: translateY(0);
}

.icon-btn svg,
.icon-btn img {
  width: 22px;
  height: 22px;
  display: block;
}

.icon-btn svg {
  fill: rgb(229, 229, 229);
}

.icon-btn img {
  opacity: 0.9;
}

.icon-btn:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
}

/* Menu icon - always visible */
.icon-btn .menu-icon {
  display: block !important;
}

@media (max-width: 480px) {
  .header-actions {
    gap: 8px;
  }

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

  .icon-btn svg,
  .icon-btn img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 380px) {
  .header-actions {
    gap: 6px;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
  }

  .icon-btn svg,
  .icon-btn img {
    width: 18px;
    height: 18px;
  }
}

/* Primary Navigation Dropdown */
#primary-nav {
  position: fixed;
  right: 12px;
  top: 70px;
  background: rgb(18, 18, 18);
  border: 1px solid rgb(42, 42, 42);
  border-radius: 14px;
  padding: 12px;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

#primary-nav[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#primary-nav .close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-200);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

#primary-nav .close-btn:hover {
  color: var(--brand);
}

/* === NEW NAVIGATION LINKS & SUB-MENU === */

/* Wrapper for nav links */
#primary-nav .nav-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
  min-width: 180px;
}

/* Main Nav Links */
#primary-nav .nav-link {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-200);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 1rem;
  font-family: inherit;
  text-align: left;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
}

#primary-nav .nav-link:hover {
  background: rgb(27, 27, 27);
  color: var(--brand-600);
}

/* Sub-menu Button specific styles */
#primary-nav .has-submenu>button.nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#primary-nav .has-submenu>button span {
  transition: transform 0.2s ease;
  display: inline-block;
}

#primary-nav .has-submenu>button[aria-expanded="true"] span {
  transform: rotate(180deg);
}

/* The sub-menu list */
#primary-nav .mobile-submenu {
  display: block;
  /* This forces it to be present so height animates */
  list-style: none;
  padding-left: 1.5rem;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

#primary-nav .mobile-submenu.open {
  max-height: 500px;
  /* Animates open */
  transition: max-height 0.3s ease-in;
}

#primary-nav .mobile-submenu li {
  margin: 0;
  padding: 0;
}

#primary-nav .mobile-submenu li::before {
  display: none;
}

#primary-nav .mobile-submenu a {
  display: block;
  padding: 8px 10px;
  font-size: 0.95rem;
  color: var(--text-300);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

#primary-nav .mobile-submenu a:hover {
  background: rgb(27, 27, 27);
  color: var(--brand-600);
}

/* Hours Popup */
#hoursPopup {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 1rem;
  background: #111;
  color: var(--text-200);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #2e2e2e;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .55);
  font-size: .95rem;
  line-height: 1.5;
  white-space: nowrap;
  min-width: 220px;
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity var(--t), visibility var(--t), transform var(--t);
}

#hoursPopup.open,
#hoursPopup.visible {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#hoursPopup strong {
  color: var(--brand);
}

@media (max-width: 480px) {
  #primary-nav {
    right: 8px;
    top: 64px;
  }

  #hoursPopup {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-5px);
  }

  #hoursPopup.open,
  #hoursPopup.visible {
    transform: translateX(-50%) translateY(0);
  }
}

/* Responsive Header Adjustments */
@media (max-width: 768px) {
  .site-header {
    padding: 0.8rem 1.5rem;
  }

  #hoursPopup {
    right: .75rem;
    left: .75rem;
    width: auto;
    top: 64px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span,
  .brand-text {
    font-size: 1.05rem;
    max-width: 60vw;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 0.7rem 1rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span,
  .brand-text {
    font-size: 1rem;
    max-width: 55vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 521px) and (max-width: 680px) {
  .site-header {
    padding: 0.75rem 1.5rem;
  }

  .brand span,
  .brand-text {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.2rem;
  }
}

/* ====================================
   END HEADER STYLES
   ==================================== */

.grid-3col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
}

.card,
.service-card,
.rev-card,
.package-card,
.booking-card,
.checkout-form,
fieldset,
.content-container {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-1);
  transition: transform var(--t), box-shadow var(--t), background-color var(--t), border-color var(--t);
  position: relative;
}

.booking-card,
.checkout-form,
fieldset {
  padding: 2rem;
}

.package-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.content-container {
  padding: 2.5rem;
}

.card:hover,
.service-card:hover,
.package-card:hover,
.booking-card:hover,
.checkout-form:hover,
fieldset:hover,
.content-container:hover,
.rev-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  background: var(--bg-800);
  border-color: rgba(255, 42, 42, 0.3);
}

.card::after,
.service-card::after,
.review-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
      rgba(255, 42, 42, 0.05) 0%,
      transparent 50%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}

.card:hover::after,
.service-card:hover::after,
.review-card:hover::after {
  opacity: 1;
}

.service-card h3,
.package-card h2,
.booking-card h2,
.checkout-form h2,
fieldset legend,
.content-container h1 {
  margin-top: 0;
  color: var(--brand);
}

.service-card p,
.package-card li,
.rev-card p,
.content-container p,
.content-container li {
  font-size: .95rem;
  color: var(--text-300);
}

.package-card li {
  padding-left: 1.5em;
  margin-bottom: .5rem;
  position: relative;
}

.package-card li::before {
  content: '✓';
  color: rgb(204, 46, 46);
  left: 0;
  font-size: 1em;
  position: absolute;
  top: 0;
}

.btn,
.hero-cta,
.cta-btn,
.purchase-button,
.booking-btn.primary,
#submitBtn,
#submit-button,
.home-button {
  background: var(--brand);
  color: var(--on-brand);
  padding: 1rem 1.6rem;
  font-weight: 700;
  border-radius: 999px;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn:hover,
.hero-cta:hover,
.cta-btn:hover,
.purchase-button:hover,
.booking-btn.primary:hover,
#submitBtn:hover,
#submit-button:hover,
.home-button:hover {
  background: var(--brand-600);
  color: var(--on-brand);
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
  text-decoration: none;
}

.btn:active,
.hero-cta:active,
.cta-btn:active,
.purchase-button:active,
.booking-btn.primary:active,
#submitBtn:active,
#submit-button:active,
.home-button:active {
  transform: none;
  box-shadow: none;
}

.btn::before,
.hero-cta::before,
.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%);
  transform: translateX(-100%) translateY(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.btn:hover::before,
.hero-cta:hover::before,
.cta-btn:hover::before {
  transform: translateX(0) translateY(0);
}

.hero-cta.primary,
.cta-btn.primary {
  animation: subtle-pulse 3s infinite;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.pill-row button {
  background: var(--bg-800);
  color: var(--text-200);
  border: 1px solid var(--line-650);
  padding: .6rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: .95rem;
  transition: background var(--t), border-color var(--t), color var(--t);
}

.pill-row button:hover {
  background: var(--bg-750);
  border-color: var(--line-700);
}

.pill-row button.selected {
  background: var(--brand);
  color: var(--on-brand);
  border-color: var(--brand);
  font-weight: 600;
}

.hero-section {
  padding: 4.5rem 1.5rem 3rem;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-media-wrap {
  max-width: 1400px;
  margin: 0 auto 2.25rem;
  position: relative;
}

.hero-media-wrap figure {
  margin: 0;
}

.hero-media-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: var(--bg-800);
  border-radius: 14px;
  box-shadow: 0 10px 34px -6px rgba(0, 0, 0, .65);
  aspect-ratio: 960 / 720;
}

.hero-media-wrap figcaption {
  font-size: .8rem;
  color: var(--text-400);
  margin-top: .8rem;
  text-align: right;
  padding-right: .5rem;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 600px) {
  .hero-cta-group {
    flex-direction: row;
    gap: 1.5rem;
  }
}

@media (min-width: 1100px) {
  .hero-section {
    padding: 6rem 2rem 4rem;
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex-basis: calc(50% - .5rem);
  }
}

.gallery-swiper .swiper-slide {
  background: none;
  padding: 0;
}

.gallery-fig {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  width: 100%;
}

.gallery-fig img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
  background: var(--bg-800);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .45);
  transition: transform 0.4s ease, box-shadow var(--t);
}

.gallery-fig:hover img {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.gallery-fig figcaption {
  font-size: .8rem;
  color: var(--text-400);
  text-align: right;
  padding: .3rem .8rem .5rem;
  background: var(--bg-750);
  border-radius: 8px;
}

.swiper-pagination-bullet {
  background: var(--text-400);
  opacity: .8;
}

.swiper-pagination-bullet-active {
  background: var(--brand);
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--brand);
  --swiper-navigation-size: 30px;
  background: rgba(0, 0, 0, .7);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background var(--t), color var(--t);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: saturate(120%) blur(2px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--brand);
  color: var(--on-brand);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px;
  font-weight: bold;
}

.map-section {
  text-align: center;
}

.map-container,
.map-embed {
  max-width: 1000px;
  margin: 2rem auto 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line-650);
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.map-container iframe,
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  background: var(--bg-850);
  color: var(--text-400);
  padding: 2.5rem 1rem;
  text-align: center;
  font-size: .95rem;
  border-top: 1px solid var(--line-650);
  margin-top: 3rem;
  background: linear-gradient(180deg, var(--bg-850) 0%, var(--bg-900) 100%);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 42, 42, 0.2) 50%,
      transparent);
}

.site-footer p {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

@media (min-width: 600px) {
  .site-footer p {
    flex-direction: row;
    gap: .75rem;
  }
}

.site-footer a {
  color: #e3e3e3;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

.site-footer a:focus-visible {
  outline: 2px solid rgb(227, 227, 227);
  outline-offset: 2px;
  border-radius: 2px;
}

.cta-inline {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem auto;
  flex-wrap: wrap;
}

.cta-inline .cta-btn {
  font-weight: 700;
  font-size: 1.05rem;
  padding: .9rem 1.6rem;
  border-radius: var(--r-8);
  transition: background var(--t), color var(--t);
}

.cta-inline .cta-btn.primary {
  background: var(--brand);
  color: rgb(255, 255, 255);
}

.cta-inline .cta-btn.primary:hover {
  background: var(--brand-600);
}

.cta-inline .cta-btn.secondary {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.cta-inline .cta-btn.secondary:hover {
  background: var(--brand);
  color: rgb(255, 255, 255);
}

.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-evenly;
  gap: .4rem;
  background: rgba(27, 27, 27, 0.95);
  border-top: 1px solid var(--line-700);
  padding: .6rem 0;
  transition: transform var(--t);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-cta-bar a {
  flex: 1;
  margin: 0 .4rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--r-8);
  padding: .75rem 0;
  text-decoration: none;
  color: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
}

.sticky-cta-bar .cta-call {
  background: var(--brand);
  color: var(--on-brand);
}

.sticky-cta-bar .cta-text {
  background: var(--bg-800);
  border: 1px solid var(--brand);
  color: rgb(255, 255, 255);
}

.sticky-cta-bar.expanded {
  transform: translateY(-6px);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, .4);
}

.sticky-cta-bar a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.1),
      transparent);
  opacity: 0;
  transition: opacity var(--t);
}

.sticky-cta-bar a:hover::before,
.sticky-cta-bar a:active::before {
  opacity: 1;
}

@media (max-width: 768px) {

  /* .sticky-cta-bar { display: flex; } */
  /* Re-enable if you want it on mobile */
  .fab-chat {
    display: flex;
  }
}

.dp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  z-index: 100000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.dp-lightbox figure {
  margin: 0;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.dp-lightbox img {
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
  transition: transform .25s ease;
  cursor: grab;
}

.dp-lightbox figcaption {
  font-size: .85rem;
  color: rgb(204, 204, 204);
  text-align: center;
}

.dp-lightbox .lb-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--brand);
  cursor: pointer;
}

.dp-lightbox .lb-ctrls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .75rem;
}

.dp-lightbox .lb-ctrls button {
  background: rgb(18, 18, 18);
  color: rgb(255, 255, 255);
  border: 1px solid rgb(51, 51, 51);
  padding: .6rem .9rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.dp-lightbox .lb-ctrls button:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.dp-lightbox:focus {
  outline: none;
}

.faq-tiles {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-tiles {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-tile {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), background-color var(--t);
  position: relative;
}

.faq-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  background: var(--bg-800);
}

.faq-tile::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg,
      rgba(255, 42, 42, 0.3),
      transparent 50%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--t);
  z-index: -1;
}

.faq-tile:hover::before {
  opacity: 1;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-100);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--t-fast);
  font-family: inherit;
}

.faq-q:hover {
  background: rgba(255, 42, 42, 0.05);
}

.faq-q:focus-visible {
  outline: var(--focus);
  outline-offset: -2px;
}

.faq-emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.faq-ind {
  margin-left: auto;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  transition: transform var(--t);
}

.faq-ind::before,
.faq-ind::after {
  content: '';
  position: absolute;
  background: var(--brand);
  border-radius: 2px;
  transition: transform var(--t);
}

.faq-ind::before {
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-ind::after {
  left: 50%;
  top: 50%;
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-q[aria-expanded="true"] .faq-ind::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  overflow: hidden;
  transition: max-height var(--t-slow) ease, padding var(--t-slow) ease;
}

.faq-a[hidden] {
  display: none;
}

.faq-a:not([hidden]) {
  padding: 0 1.5rem 1.5rem;
}

.faq-a>div {
  padding-top: .5rem;
  border-top: 1px solid var(--line-650);
}

.faq-a p {
  margin: 0;
  color: var(--text-300);
  line-height: 1.7;
  font-size: .95rem;
}

.faq-a strong {
  color: var(--text-100);
  font-weight: 600;
}

.services-cta,
.section .services-cta {
  max-width: 900px;
  margin: 1.5rem auto 0;
  text-align: center;
}

.services-cta h3 {
  margin-bottom: .25rem;
}

.services-cta p {
  margin-bottom: .75rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.reviews-deck {
  position: relative;
  overflow: hidden;
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  box-shadow: var(--shadow-1);
  padding: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-track {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 2.2rem 2rem;
  min-height: 320px;
  box-shadow: var(--shadow-1);
  max-width: 820px;
  width: 92%;
  margin: 0 auto;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.review-card blockquote {
  position: relative;
  max-width: 58ch;
  margin: 0 auto .75rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-200);
  font-weight: 500;
  letter-spacing: .1px;
}

.review-card blockquote::before,
.review-card blockquote::after {
  content: '\201C';
  position: absolute;
  font-size: 3.5rem;
  line-height: 0;
  color: rgba(255, 255, 255, .08);
  pointer-events: none;
}

.review-card blockquote::before {
  left: -.25rem;
  top: -.5rem;
}

.review-card blockquote::after {
  content: '\201D';
  right: -.25rem;
  bottom: -.2rem;
}

.review-card .meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  color: var(--text-400);
  font-size: .95rem;
  margin-top: .25rem;
  margin-bottom: .35rem;
}

.review-card .meta strong span::before {
  content: '\2014\00A0';
  opacity: .9;
}

.review-card .stars {
  display: none;
}

.review-card .dot {
  opacity: .6;
  margin: 0 .35rem;
}

.review-card .city,
.review-card time {
  display: none;
}

/* Make review cards a tighter "box" centered in the slide */
#reviews-swiper .swiper-wrapper {
  align-items: stretch;
}

#reviews-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.review-card {
  max-width: 560px;
  width: min(92%, 560px);
  margin: 0 auto;
  padding: 1.1rem 1.2rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line-650);
  background: var(--bg-800);
  box-shadow: var(--shadow-1);
  min-height: 220px;
  flex: 0 0 auto;
}

.review-text {
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 0.75rem;
  color: var(--text-200);
}

/* Reviewer line with star icon */
.review-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  opacity: 0.9;
  font-size: 0.9rem;
  color: var(--text-400);
}

.review-meta::before {
  content: '★';
  color: var(--brand);
  font-size: 0.9rem;
}

.source {
  display: flex;
  gap: .5rem;
  align-items: center;
  justify-content: center;
  margin-top: .25rem;
}

.badge {
  font-size: .75rem;
  padding: .15rem .45rem;
  border-radius: 999px;
  background: var(--bg-750);
  border: 1px solid var(--line-650);
}

.reviews-prev,
.reviews-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 12px;
  padding: .5rem .65rem;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  cursor: pointer;
  transition: background var(--t), transform var(--t-fast);
  z-index: 10;
}

.reviews-prev:hover,
.reviews-next:hover {
  background: rgba(0, 0, 0, .65);
  transform: translateY(-50%) scale(1.05);
}

.reviews-prev:focus-visible,
.reviews-next:focus-visible {
  outline: var(--focus);
}

.reviews-prev:active,
.reviews-next:active {
  transform: translateY(-50%) scale(0.95);
}

.reviews-prev {
  left: .5rem;
}

.reviews-next {
  right: .5rem;
}

.reviews-dots {
  display: flex;
  gap: .4rem;
  justify-content: center;
  margin-top: .75rem;
}

.reviews-dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: var(--line-650);
  cursor: pointer;
  transition: background var(--t), transform var(--t-fast);
  opacity: 1;
}

.reviews-dots .swiper-pagination-bullet:hover {
  background: var(--line-700);
  transform: scale(1.2);
}

.reviews-dots .swiper-pagination-bullet-active {
  background: var(--brand);
}

.reviews-dots .swiper-pagination-bullet:focus-visible {
  outline: var(--focus);
}

.summary {
  max-width: 860px;
  margin: 0 auto 1.25rem;
  text-align: center;
  color: var(--text-300);
  font-size: 1.05rem;
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
  margin: 0 auto 1.75rem;
  max-width: 1100px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.reviews-grid .rev-card {
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-1);
  transition: transform var(--t), box-shadow var(--t), background-color var(--t);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.reviews-grid .rev-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  background: var(--bg-750);
}

.reviews-grid .rev-card p {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--text-200);
  margin: 0 0 .75rem;
}

.reviews-grid .rev-card .author {
  font-size: .8rem;
  color: var(--text-400);
  letter-spacing: .2px;
}

.reviews-grid .rev-card .stars {
  display: none;
}

.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  padding: 1.25rem 1rem 1.75rem;
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow-1);
}

.reviews-cta img {
  border-radius: var(--r-8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .45);
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  padding: .4rem;
}

.reviews-cta a.btn.btn-secondary {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  padding: .85rem 1.4rem;
}

.reviews-cta a.btn.btn-secondary:hover {
  background: var(--brand);
  color: #fff;
}

.footer-disclaimer {
  font-size: .65rem;
  color: #777;
  max-width: 900px;
  margin: .75rem auto 0;
  line-height: 1.4;
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

*:focus-visible {
  outline: 3px solid rgba(255, 42, 42, 0.5);
  outline-offset: 3px;
  border-radius: 4px;
}

img {
  background: linear-gradient(90deg,
      var(--bg-800) 0%,
      var(--bg-750) 50%,
      var(--bg-800) 100%);
  background-size: 200% 100%;
}

img:not([src]) {
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  box-shadow: var(--shadow-1);
  margin: 2rem auto;
  max-width: 1200px;
}

.carousel .track {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
}

.carousel .slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0;
}

.carousel .prev,
.carousel .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background var(--t), transform var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel .prev:hover,
.carousel .next:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-50%) scale(1.1);
}

.carousel .prev:active,
.carousel .next:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel .prev:focus-visible,
.carousel .next:focus-visible {
  outline: var(--focus);
}

.carousel .prev {
  left: 1rem;
}

.carousel .next {
  right: 1rem;
}

@media (max-width: 768px) {

  .carousel .prev,
  .carousel .next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .carousel .prev {
    left: 0.5rem;
  }

  .carousel .next {
    right: 0.5rem;
  }
}

@media (max-width: 480px) {

  .carousel .prev,
  .carousel .next {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}

.swiper {
  width: 100%;
  position: relative;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

#reviews-swiper .swiper-slide {
  padding: 1rem;
}

#gallery-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--r-8);
  border-radius: 22px;
}

.fab-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(224, 16, 42);
  color: rgb(255, 255, 255);
  font-weight: 800;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(224, 16, 42, 0.35), 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.fab-chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224, 16, 42, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.fab-chat:active {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fab-chat {
    transition: none;
  }

  .swiper,
  .swiper * {
    transition: none !important;
    animation: none !important;
  }
}

/* Trust Badge / Star Rating */
.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
  padding: 12px 20px;
  background: rgba(27, 27, 27, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.trust-badge img {
  width: auto;
  height: 24px;
  display: block;
}

.trust-badge span {
  color: var(--text-200);
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 480px) {
  .trust-badge {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
  }

  .trust-badge img {
    height: 20px;
  }

  .trust-badge span {
    font-size: 0.85rem;
  }
}

/* Additional Swiper CDN Support Styles */
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
}

/* Trust Signals Pills */
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* Bubble / pill style like your screenshot */
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.9rem;
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  border-radius: 999px;
  box-shadow: var(--shadow-1);
  color: var(--text-200);
  font-size: 0.98rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Use your SVGs as icons */
.trust-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.35));
  transition: transform var(--t-fast);
}

.trust-item:hover {
  background: var(--bg-750);
  border-color: rgba(255, 42, 42, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.trust-item:hover img {
  transform: scale(1.07);
}

/* On very small screens let them stretch nicely */
@media (max-width: 480px) {
  .trust-item {
    width: 100%;
    justify-content: center;
  }
}