:root {
  --green: #7a1a2b;
  --green-dark: #0b1f3d;
  --red: #a3271b;
  --cream: #fdf6ec;
  --gold: #d4a017;
  --gold-light: #f0c85a;
  --text: #23241f;
  --muted: #5c5c56;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 31, 61, 0.18);
  --shadow-lg: 0 18px 50px rgba(11, 31, 61, 0.28);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  background: var(--green-dark);
  color: white;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 14px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

nav a:hover { opacity: 1; text-decoration: underline; }

.nav-phone-link { white-space: nowrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  margin: 6px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #2b2200;
  box-shadow: 0 6px 18px rgba(212, 160, 23, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 160, 23, 0.5);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.nav-book-btn {
  padding: 8px 18px;
  border-radius: 20px;
  margin-left: 20px;
}

/* Trust bar */
.trust-bar {
  background: var(--green);
  color: #eafff0;
  padding: 14px 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 600;
}

.trust-badge-new {
  background: rgba(255, 255, 255, 0.16);
  padding: 4px 14px;
  border-radius: 20px;
  animation: badge-pulse 2.2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 210, 59, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(255, 210, 59, 0); }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, #0b1c3d 0%, #142a54 55%, #1c3a6b 100%);
  color: white;
  overflow: hidden;
  position: relative;
  padding: 90px 20px 80px;
  text-align: left;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  flex: 1 1 420px;
  max-width: 560px;
  text-align: left;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(212, 160, 23, 0.16);
  border: 1px solid rgba(212, 160, 23, 0.55);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.hero-text p { font-size: 1.1rem; margin-bottom: 26px; color: #dce6f5; }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-photo-wrap {
  flex: 1 1 420px;
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.hero-photo-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45), 0 0 0 4px rgba(212,160,23,0.25);
}

.lights-strand {
  position: relative;
  height: 20px;
  background: linear-gradient(to bottom, transparent 48%, rgba(255,255,255,0.25) 48%, rgba(255,255,255,0.25) 52%, transparent 52%);
}

.lights-strand::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, #e63946 4px, transparent 5px),
    radial-gradient(circle, #d4a017 4px, transparent 5px),
    radial-gradient(circle, #2a9d8f 4px, transparent 5px);
  background-size: 90px 20px;
  background-position: 0 center, 30px center, 60px center;
  background-repeat: repeat-x;
  filter: drop-shadow(0 0 3px rgba(255,255,255,0.5));
}

.hero-text h1 .accent {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), #e63946, var(--gold-light));
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: accentShimmer 5s ease-in-out infinite;
}

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

.bulb {
  transform-box: fill-box;
  transform-origin: center;
  animation: twinkle 1.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.15s);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.25); }
}

.c-red { fill: #ff4d4d; filter: drop-shadow(0 0 6px #ff4d4d); }
.c-gold { fill: #ffd23b; filter: drop-shadow(0 0 6px #ffd23b); }
.c-green { fill: #4ade80; filter: drop-shadow(0 0 6px #4ade80); }
.c-blue { fill: #60a5fa; filter: drop-shadow(0 0 6px #60a5fa); }

.window { animation: glow 3s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }

@keyframes glow { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }

.star { fill: white; animation: twinkle 2.4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.star:nth-of-type(2) { animation-delay: 0.4s; }
.star:nth-of-type(3) { animation-delay: 0.8s; }
.star:nth-of-type(4) { animation-delay: 1.2s; }
.star:nth-of-type(5) { animation-delay: 1.6s; }
.star:nth-of-type(6) { animation-delay: 2s; }

.snowfall { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.snowfall span { position: absolute; top: -10px; width: 6px; height: 6px; background: white; border-radius: 50%; opacity: 0.8; animation: fall linear infinite; }
@keyframes fall { to { transform: translateY(320px) translateX(20px); opacity: 0; } }
.snowfall span:nth-child(1) { left: 5%; animation-duration: 7s; animation-delay: 0s; }
.snowfall span:nth-child(2) { left: 15%; animation-duration: 9s; animation-delay: 1s; }
.snowfall span:nth-child(3) { left: 25%; animation-duration: 6s; animation-delay: 2s; }
.snowfall span:nth-child(4) { left: 35%; animation-duration: 8s; animation-delay: 0.5s; }
.snowfall span:nth-child(5) { left: 45%; animation-duration: 10s; animation-delay: 1.5s; }
.snowfall span:nth-child(6) { left: 55%; animation-duration: 7.5s; animation-delay: 2.5s; }
.snowfall span:nth-child(7) { left: 65%; animation-duration: 9.5s; animation-delay: 0.8s; }
.snowfall span:nth-child(8) { left: 75%; animation-duration: 6.5s; animation-delay: 1.8s; }
.snowfall span:nth-child(9) { left: 85%; animation-duration: 8.5s; animation-delay: 2.2s; }
.snowfall span:nth-child(10) { left: 95%; animation-duration: 7s; animation-delay: 3s; }
.snowfall span:nth-child(11) { left: 50%; animation-duration: 9s; animation-delay: 0.2s; }
.snowfall span:nth-child(12) { left: 10%; animation-duration: 6s; animation-delay: 2.8s; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 12px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: white;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 860px) {
  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  #site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: var(--green-dark);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px 20px 20px;
    box-shadow: var(--shadow-lg);
    z-index: 50;
  }

  #site-nav.nav-open {
    display: flex;
  }

  #site-nav a {
    margin-left: 0;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.05rem;
  }

  #site-nav .nav-book-btn {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .hero-text { text-align: center; }

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

  #roof-map { height: 320px !important; }

  .map-btn-row { justify-content: center; }
}

.about {
  padding: 60px 20px;
  text-align: center;
  background: var(--green-dark);
}

.about .container {
  max-width: 720px;
}

.about h2 {
  color: white;
}

.about p {
  color: #dce9df;
  font-size: 1.05rem;
}

section h2 {
  text-align: center;
  color: var(--green);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 30px;
}

.services { padding: 65px 20px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; max-width: 980px; margin: 0 auto; padding: 0; list-style: none; }
.service-card { background: white; border-radius: var(--radius); padding: 22px 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease; border-top: 3px solid transparent; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }
.service-card .service-icon { font-size: 1.6rem; display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%; background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; }
.service-card h3 { margin: 0 0 6px; font-size: 1.05rem; color: var(--green); }
.service-card p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

.packages { padding: 55px 20px; background: white; }

.package-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }

.package-card {
  position: relative;
  border: 1px solid #e6e6df;
  border-radius: var(--radius);
  padding: 30px 25px;
  width: 270px;
  text-align: center;
  background: var(--cream);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.package-card .package-icon { font-size: 2.2rem; display: block; margin-bottom: 6px; }

.package-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  background: white;
  animation: featured-glow 3s ease-in-out infinite;
}

@keyframes featured-glow {
  0%, 100% { box-shadow: var(--shadow), 0 0 0 rgba(212, 160, 23, 0); }
  50% { box-shadow: var(--shadow), 0 0 26px rgba(212, 160, 23, 0.35); }
}

.package-card .ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #2b2200;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  animation: ribbon-pulse 2.2s ease-in-out infinite;
}

@keyframes ribbon-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.55); }
  50% { box-shadow: 0 0 0 7px rgba(212, 160, 23, 0); }
}

.package-card .price { font-size: 1.5rem; color: var(--red); font-weight: 700; margin: 6px 0; }

.minimum-note { text-align: center; font-size: 0.9rem; color: var(--muted); margin-top: 24px; }

/* Accuracy section */
.accuracy {
  padding: 60px 20px;
  background: linear-gradient(180deg, #eef3f9 0%, var(--cream) 100%);
}

.accuracy-inner { max-width: 780px; margin: 0 auto; text-align: center; }

.accuracy-points {
  list-style: none;
  padding: 0;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  text-align: left;
}

.accuracy-points li {
  background: white;
  border-radius: 10px;
  padding: 16px 18px 16px 44px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.accuracy-points li::before {
  content: "\2713";
  position: absolute;
  left: 14px;
  top: 16px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}
.accuracy-points li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Gallery */
.gallery { padding: 75px 20px; background: linear-gradient(180deg, #0d1611 0%, #081009 100%); }
.gallery h2 { color: #fff; position: relative; padding-bottom: 16px; }
.gallery h2::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 60px; height: 3px; background: var(--gold); border-radius: 2px; }
.gallery > .container > p:first-of-type { color: #cfe3d4; max-width: 640px; margin: 0 auto 10px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 24px 0; }
.gallery-grid figure { position: relative; margin: 0; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,0.18); background: #fff; cursor: pointer; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.gallery-grid figure:hover { transform: translateY(-6px); box-shadow: 0 14px 34px rgba(212,160,23,0.35), 0 14px 30px rgba(0,0,0,0.28); }
.gallery-grid img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.5s ease, filter 0.3s ease; }
.gallery-grid figure:hover img { transform: scale(1.08); filter: brightness(1.05); }
.gallery-grid .view-hint { position: absolute; top: 10px; right: 10px; background: rgba(11,31,61,0.85); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; opacity: 0; transform: translateY(-6px); transition: opacity 0.25s ease, transform 0.25s ease; }
.gallery-grid figure:hover .view-hint { opacity: 1; transform: translateY(0); }
.gallery-grid figcaption { padding: 10px 12px; font-size: 0.9rem; color: var(--text); text-align: center; }
.gallery-note { font-size: 0.85rem; color: #9fb6a6; font-style: italic; margin-top: 10px; }

.lightbox-overlay { position: fixed; inset: 0; background: rgba(10, 20, 15, 0.92); display: flex; align-items: center; justify-content: center; padding: 30px 20px; z-index: 200; }
.lightbox-overlay[hidden] { display: none !important; }
.lightbox-content { position: relative; max-width: 900px; width: 100%; text-align: center; }
.lightbox-content img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-caption { color: #fdf6ec; margin-top: 14px; font-size: 1rem; }
.lightbox-close { position: absolute; top: -44px; right: 0; background: none; border: 2px solid #fff; color: #fff; width: 36px; height: 36px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; line-height: 1; }
.lightbox-close:hover { background: rgba(255,255,255,0.15); }

/* Areas */
.areas { padding: 65px 20px; background: linear-gradient(180deg, var(--cream) 0%, #eef3f9 100%); }
.areas-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 16px 0; }
.areas-list li { background: white; color: var(--green); padding: 7px 16px 7px 14px; border-radius: 20px; font-size: 0.9rem; font-weight: 700; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.areas-list li::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-right: 8px; vertical-align: middle; }
.areas-list li:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(11,31,61,0.15); }

/* Calculator / cart builder */
.calculator { padding: 60px 20px; background: var(--cream); }

.calc-intro { text-align: center; max-width: 640px; margin: -14px auto 30px; color: var(--muted); }

.map-trace-box { border: 1px solid #e6e6df; border-radius: var(--radius); padding: 20px; margin-bottom: 28px; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.map-trace-box h3 { margin-top: 0; color: var(--green); }
.map-search-row { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.map-search-row input { flex: 1; min-width: 200px; padding: 10px; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem; }
#roof-map { height: 400px; width: 100%; display: none; border-radius: 8px; margin-bottom: 10px; border: 1px solid #ccc; }
#map-status { font-size: 0.9rem; color: var(--green); min-height: 1.2em; }
#map-use-btn, #map-clear-btn, #map-preview-btn { margin-right: 8px; margin-top: 6px; }
.map-btn-row { display: flex; flex-wrap: wrap; align-items: center; }
.map-trace-box .btn-secondary { background: #fff; color: var(--green); border: 2px solid var(--green); }
.map-trace-box .btn-secondary:hover { background: var(--green); color: #fff; }
.map-trace-box [hidden] { display: none !important; }

.cart-builder {
  margin-top: 32px;
  padding: 26px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cart-builder h3 { margin-top: 0; color: var(--green); }

.item-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 16px 0 22px;
  padding: 0;
}

.item-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 10px;
  border: 2px solid #e6e6df;
  border-radius: 12px;
  background: var(--cream);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.item-type-card:hover { transform: translateY(-3px); }

.item-type-card.active {
  border-color: var(--gold);
  background: #fffaf0;
  box-shadow: 0 6px 16px rgba(212, 160, 23, 0.25);
}

.item-type-icon { font-size: 1.8rem; }

.item-fields { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }

.cart-builder label { font-weight: 600; margin-top: 10px; font-size: 0.92rem; }

.cart-builder input, .cart-builder select {
  padding: 11px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.checkbox-label { display: flex; align-items: center; gap: 8px; font-weight: normal !important; }

.live-preview {
  margin-top: 18px;
  padding: 14px 18px;
  background: #eef7f0;
  border: 1px dashed var(--green);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--green);
  text-align: center;
}

.live-preview strong { font-size: 1.25rem; }

.cart-box { margin-top: 26px; padding: 24px; border: 1px solid #e6e6df; border-radius: var(--radius); background: white; }

.cart-list { list-style: none; margin: 0; padding: 0; }

.cart-item { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #eee; }
.cart-item-info { flex: 1; }
.cart-item-price { font-weight: 700; white-space: nowrap; color: var(--green); }

.cart-remove-btn {
  background: none;
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: 20px;
  padding: 5px 12px;
  cursor: pointer;
  font-size: 0.8rem;
}

.cart-remove-btn:hover { background: var(--red); color: white; }

.cart-empty { color: #888; font-style: italic; padding: 10px 0; }

.cart-total { font-size: 1.4rem; font-weight: 700; margin-top: 16px; color: var(--green); }

.cart-note { font-size: 0.9rem; color: var(--muted); }

/* Mini cart */
.mini-cart {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  background: var(--green-dark);
  color: white;
  border-radius: 50px;
  padding: 10px 12px 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

.mini-cart span { font-weight: 600; font-size: 0.92rem; }
.mini-cart .btn { margin: 0; padding: 10px 18px; font-size: 0.88rem; }

.result {
  max-width: 560px;
  margin: 30px auto 0;
  background: white;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.result-price { font-size: 2rem; color: var(--green); font-weight: 700; }
.result-note { font-size: 0.9rem; color: var(--muted); }

#reservation-wrap { margin-top: 24px; padding-top: 20px; border-top: 1px solid #ddd; text-align: left; }
#reservation-wrap h4 { color: var(--green); margin-bottom: 8px; text-align: center; }
#reservation-wrap p { font-size: 0.9rem; color: var(--muted); text-align: center; }
#reservation-form { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
#reservation-form label { font-weight: 600; margin-top: 8px; font-size: 0.95rem; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
#reservation-form label input, #reservation-form label textarea { width: 100%; }
#reservation-form input, #reservation-form textarea { padding: 11px; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem; font-family: inherit; }
#reservation-form button {
  margin-top: 16px;
  border: none;
  cursor: pointer;
  font-size: 1.02rem;
  padding: 13px 24px;
  border-radius: 50px;
  background: var(--green);
  color: white;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
#res-status { font-size: 0.9rem; color: var(--green); text-align: center; }

.how-it-works { padding: 55px 20px; }
.how-it-works ol { max-width: 640px; margin: 0 auto; }
.how-it-works li { padding: 8px 0; }

.faq { padding: 55px 20px; background: white; }
.faq-item { max-width: 720px; margin: 0 auto 16px; border: 1px solid #e6e6df; border-radius: var(--radius); overflow: hidden; background: var(--cream); transition: box-shadow 0.2s ease; }
.faq-item.faq-open { box-shadow: var(--shadow); }
.faq-question { margin: 0; padding: 18px 50px 18px 20px; cursor: pointer; position: relative; color: var(--green); }
.faq-question::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--gold); font-weight: 700; transition: transform 0.25s ease; }
.faq-item.faq-open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { margin: 0; padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--muted); }
.faq-item.faq-open .faq-answer { max-height: 300px; padding: 0 20px 18px; }
.faq-item h3 { color: var(--green); margin-bottom: 4px; }

.site-footer { background: var(--green-dark); color: white; text-align: left; padding: 55px 20px 40px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer-col { flex: 1 1 280px; }
.footer-heading { color: var(--gold-light); font-size: 1.1rem; margin: 0 0 12px; }
.footer-cta { margin-top: 14px; }
.site-footer .footer-cta { color: #2b2200; text-decoration: none; }
.footer-note { font-size: 0.85rem; color: #cde; margin-top: 15px; }

.mini-cart[hidden] { display: none !important; }

[hidden] { display: none !important; }

.light-bulb-dot { animation: bulbTwinkle 1.6s ease-in-out infinite; }
@keyframes bulbTwinkle { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.footer-contact a, .site-footer a {
color: var(--gold-light);
font-weight: 600;
text-decoration: underline;
}

.footer-contact a:hover, .site-footer a:hover {
color: var(--gold);
}

.areas a {
color: var(--green);
font-weight: 600;
}

.icon-svg {
width: 1em;
height: 1em;
display: inline-block;
vertical-align: -0.15em;
fill: currentColor;
}

.service-icon, .item-type-icon {
color: var(--green);
display: inline-block;
}

.package-icon {
color: var(--gold);
display: inline-block;
}

.trust-badge-new .icon-svg {
width: 0.9em;
height: 0.9em;
vertical-align: -0.1em;
}

.nav-phone-link .icon-svg {
margin-right: 2px;
}
