/* VERSION: 1.1
   CHANGES FROM v1.0:
   - .stars          — added `svg` child rule so SVG stars get fill:gold (fixes missing stars)
   - .fab-calendly:hover — was hsla(gold,0.9) [transparent]; now solid darker gold hsl(40 52% 44%)
   - .fab-whatsapp:hover — kept as-is (was already a valid solid colour #1da851)
   All other rules are byte-for-byte identical to v1.0.
   ============================================================ */
 
/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
 
.hero-media {
  position: absolute;
  inset: 0;
}
 
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.2);
}
 
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
 
.hero-eyebrow {
  color: hsl(var(--gold));
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero-eyebrow { font-size: 1.25rem; }
}
 
.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
 
.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 42rem;
  margin: 0 auto 2rem;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }
 
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
 
.cta-section .hero-actions {
  justify-content: center;
  align-items: center;
}
 
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.375rem;
}
.scroll-dot {
  width: 0.375rem;
  height: 0.625rem;
  border-radius: 9999px;
  background-color: hsl(var(--gold));
}
 
/* ============================================================
   CARD BASE
   ============================================================ */
.card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
 
/* ============================================================
   SECTION SYSTEM (component-level overrides)
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
 
/* ============================================================
   WHY CHOOSE US — feature cards
   ============================================================ */
.why-us { padding: 5rem 0; }
 
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
 
.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--gold) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: hsl(var(--gold));
}
 
.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.75rem;
}
 
.feature-text {
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}
 
/* ============================================================
   IMAGE CAROUSEL
   ============================================================ */
.gallery-section { padding: 5rem 0; }
 
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}
 
.carousel-track {
  display: flex;
  transition: transform 0.7s ease-in-out;
}
 
.carousel-slide {
  width: 100%;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
 
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: hsl(var(--midnight) / 0.6);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 0.5rem;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.carousel-arrow:hover { background-color: hsl(var(--midnight) / 0.85); }
.carousel-arrow-prev { left: 0.75rem; }
.carousel-arrow-next { right: 0.75rem; }
 
.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background-color: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.dot:hover { background-color: rgba(255,255,255,0.75); }
.dot-active {
  background-color: hsl(var(--gold));
  transform: scale(1.25);
}
 
/* ============================================================
   EXPERIENCES GRID
   ============================================================ */
.experiences-section {
  padding: 5rem 0;
  background: hsl(var(--midnight));
  color: #fff;
}
 
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) { .experience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .experience-grid { grid-template-columns: 1fr; } }
 
.experience-card {
  display: block;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  text-decoration: none;
  color: #fff;
  height: 100%;
  transition: background-color 0.15s ease;
}
.experience-card:hover { background-color: rgba(255,255,255,0.08); }
 
.experience-icon { color: hsl(var(--gold)); margin-bottom: 1rem; }
 
.experience-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
 
.experience-text {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255,255,255,0.6);
}
 
.experience-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: hsl(var(--gold));
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: gap 0.2s ease;
}
.experience-card:hover .experience-link { gap: 0.5rem; }
 
/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 5rem 0; }
 
.testimonial-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
 
/* Stars container */
.stars {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: hsl(var(--gold));
  fill: hsl(var(--gold));
}
 
/* CHANGED v1.1: explicit rule for SVG children so inline SVG stars
   pick up the gold fill regardless of how they are rendered in the HTML */
.stars svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: hsl(var(--gold));
  color: hsl(var(--gold));
  flex-shrink: 0;
}
 
.star {
  color: hsl(var(--gold));
  fill: hsl(var(--gold));
}
 
.testimonial-text {
  font-size: 0.875rem;
  font-style: italic;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}
 
.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: hsl(var(--primary));
}
 
/* ============================================================
   TRIPADVISOR STRIP
   ============================================================ */
.tripadvisor-strip { padding: 2.5rem 0; text-align: center; }
 
.tripadvisor-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.15s ease;
}
.tripadvisor-link:hover { color: hsl(var(--primary)); }
.tripadvisor-label { font-size: 0.875rem; font-weight: 500; }
.tripadvisor-brand {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--primary));
  transition: color 0.15s ease;
}
.tripadvisor-link:hover .tripadvisor-brand { color: hsl(var(--gold)); }
 
/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { padding: 5rem 0; background: hsl(var(--midnight)); }
 
.video-wrapper {
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  width: 100%;
}
 
.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
 
.video-placeholder {
  aspect-ratio: 16 / 9;
  background-color: rgba(255,255,255,0.04);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  border: 1px dashed rgba(255,255,255,0.15);
}
 
/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  padding: 6rem 0;
  background-color: hsl(var(--midnight));
  color: #fff;
  text-align: center;
}
 
.cta-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    hsl(var(--midnight)),
    hsl(var(--primary) / 0.8),
    hsl(var(--midnight))
  );
}
 
.cta-content { position: relative; z-index: 10; }
 
.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .cta-title { font-size: 3rem; } }
 
.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 42rem;
  margin: 0 auto 2rem;
  opacity: 1;
}
 
.cta-actions { justify-content: center; }
 
/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: hsl(var(--midnight));
  color: rgba(255,255,255,0.8);
}
 
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
 
.footer-logo { margin-bottom: 1rem; }
.footer-logo-title { font-size: 0.875rem; }
 
.footer-text { font-size: 0.875rem; line-height: 1.625; margin-bottom: 1rem; }
.footer-credit { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
 
.footer-heading {
  font-family: 'Raleway', sans-serif;
  color: hsl(var(--gold));
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
 
.footer-links,
.footer-list,
.footer-contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
 
.footer-links a,
.footer-list a,
.footer-contact a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}
.footer-links a:hover,
.footer-list a:hover,
.footer-contact a:hover { color: hsl(var(--gold)); }
 
.footer-link-strong { font-weight: 500; }
 
.footer-contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
 
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}
.footer-contact-link:hover { color: hsl(var(--gold)); }
 
.social-links,
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
 
.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: background-color 0.15s ease, color 0.15s ease;
  padding: 0.5rem;
}
.social-icon:hover {
  background-color: hsl(var(--gold) / 0.2);
  color: hsl(var(--gold));
}
 
.footer-tripadvisor {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}
.footer-tripadvisor:hover { color: hsl(var(--gold)); }
 
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  margin-top: 1rem;
}
 
.trust-badges,
.protection-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
 
.badge-pill {
  display: inline-block;
  border: 1px solid hsl(var(--gold) / 0.3);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  color: hsl(var(--gold));
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.15s ease;
}
.badge-pill:hover { background-color: hsl(var(--gold) / 0.1); }
 
.legal-links,
.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.legal-links a,
.footer-legal-links a { transition: color 0.15s ease; color: rgba(255,255,255,0.5); }
.legal-links a:hover,
.footer-legal-links a:hover { color: hsl(var(--gold)); }
 
.copyright,
.footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.5rem; }
 
/* ============================================================
   FLOATING ACTION BUTTONS — WhatsApp + Calendly
   ============================================================ */
.fab {
  position: fixed;
  bottom: 1.5rem;
  z-index: 50;
  border-radius: 9999px;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fab:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
  transform: scale(1.1);
}
 
.fab-whatsapp {
  right: 1.5rem;
  background-color: #25D366;
  color: #fff;
}
.fab-whatsapp:hover { background-color: #1da851; }
 
.fab-calendly {
  right: 5rem;
  background-color: hsl(var(--gold));
  color: hsl(var(--midnight));
}
/* CHANGED v1.1: was hsla(var(--gold), 0.9) — same transparent bug as buttons.
   Now darkens gold by ~10% lightness to match .btn-gold:hover behaviour. */
.fab-calendly:hover {
  background-color: hsl(40 52% 44%);
  color: hsl(var(--midnight));
}
 
/* ============================================================
   FOOTER LOGO
   ============================================================ */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  margin-bottom: 1.25rem;
}
 
.footer-logo-img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
 
.footer-logo-text { display: flex; flex-direction: column; }
 
.footer-logo-text .logo-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.25;
}
 
.footer-logo-text .logo-tagline {
  font-size: 0.75rem;
  color: hsl(var(--gold));
  font-style: italic;
}
 
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.75rem;
}
 
/* ============================================================
   FAB GROUP WRAPPER — v1.2
   footer.php uses .fab-group + BEM modifiers (.fab--whatsapp,
   .fab--calendly). The original .fab rules used flat names
   (.fab-whatsapp, .fab-calendly) with individual right: values.
   This block adds the group wrapper and BEM aliases so both
   the HTML and CSS are consistent.
   ============================================================ */
 
/* Stack both buttons in a fixed column, bottom-right */
.fab-group {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
}
 
/* Override the per-button right: values — group handles positioning */
.fab-group .fab {
  position: relative;  /* override position:fixed from base .fab rule */
  right: auto;
  bottom: auto;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;          /* override the 1rem padding; size is set by width/height */
  border-radius: 9999px;
}
 
/* BEM modifier aliases — map to same colours as original flat names */
.fab--whatsapp,
.fab-group .fab--whatsapp {
  background-color: #25D366;
  color: #fff;
}
.fab--whatsapp:hover,
.fab-group .fab--whatsapp:hover {
  background-color: #1da851;
}
 
.fab--calendly,
.fab-group .fab--calendly {
  background-color: hsl(var(--gold));
  color: hsl(var(--midnight));
}
.fab--calendly:hover,
.fab-group .fab--calendly:hover {
  background-color: hsl(40 52% 44%);
  color: hsl(var(--midnight));
}
 
/* SVG icons inside FABs */
.fab-group .fab svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  display: block;
}
 
/* Tooltip label */
.fab-label {
  position: absolute;
  right: calc(100% + 0.6rem);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 0.25rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.fab:hover .fab-label { opacity: 1; }
 
@media (max-width: 480px) {
  .fab-group {
    bottom: 1rem;
    right: 1rem;
  }
  .fab-group .fab {
    width: 2.9rem;
    height: 2.9rem;
  }
}

/* =====================================================
   GUIDE DOWNLOAD MODAL
   Append to components.css
   ===================================================== */
 
/* Overlay */
.guide-modal {
  display: contents;
}
 
.guide-modal[hidden] {
  display: none;
}
 
.guide-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  cursor: pointer;
}
 
/* Panel */
.guide-modal__panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}
 
/* Close button */
.guide-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--muted-foreground, #6b7280);
  line-height: 1;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
 
.guide-modal__close:hover {
  color: var(--foreground, #0f172a);
  background: var(--mist, #f0f4f4);
}
 
/* Header */
.guide-modal__header {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}
 
.guide-modal__title {
  font-family: var(--font-heading, 'Raleway', sans-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary, #1a3a3a);
  margin: 0 0 0.5rem;
}
 
.guide-modal__subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground, #6b7280);
  margin: 0;
  line-height: 1.5;
}
 
.guide-modal__highlight {
  color: var(--gold, #b8860b);
  font-weight: 600;
}
 
/* Form layout */
.guide-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
 
.guide-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
 
@media (max-width: 480px) {
  .guide-modal__row {
    grid-template-columns: 1fr;
  }
}
 
.guide-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
 
.guide-modal__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary, #1a3a3a);
}
 
.guide-modal__input,
.guide-modal__select {
  height: 2.5rem;
  width: 100%;
  border: 1px solid var(--border, #d1d5db);
  border-radius: 6px;
  background: #fff;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground, #0f172a);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
 
.guide-modal__input:focus,
.guide-modal__select:focus {
  outline: none;
  border-color: var(--gold, #b8860b);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}
 
.guide-modal__input::placeholder {
  color: var(--muted-foreground, #9ca3af);
}
 
/* Select arrow */
.guide-modal__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
 
/* Divider section */
.guide-modal__divider {
  border-top: 1px solid var(--border, #e5e7eb);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
 
.guide-modal__section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary, #1a3a3a);
  margin: 0;
}
 
/* Checkbox row */
.guide-modal__checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(184, 134, 11, 0.05);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 8px;
  padding: 0.875rem;
}
 
.guide-modal__checkbox {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  accent-color: var(--gold, #b8860b);
  cursor: pointer;
  flex-shrink: 0;
}
 
.guide-modal__checkbox-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary, #1a3a3a);
  cursor: pointer;
  display: block;
  margin-bottom: 0.25rem;
}
 
.guide-modal__checkbox-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground, #6b7280);
  margin: 0;
  line-height: 1.4;
}
 
/* Error message */
.guide-modal__error {
  font-size: 0.8125rem;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 0.625rem 0.875rem;
}
 
.guide-modal__error[hidden] {
  display: none;
}
 
/* Submit button */
.guide-modal__submit {
  width: 100%;
  margin-top: 0.25rem;
}
 
/* Privacy note */
.guide-modal__privacy {
  font-size: 0.75rem;
  color: var(--muted-foreground, #9ca3af);
  text-align: center;
  margin: 0;
}
 
/* Scrollbar styling for panel */
.guide-modal__panel::-webkit-scrollbar {
  width: 6px;
}
 
.guide-modal__panel::-webkit-scrollbar-track {
  background: transparent;
}
 
.guide-modal__panel::-webkit-scrollbar-thumb {
  background: var(--border, #d1d5db);
  border-radius: 3px;
}
 
/* Mobile adjustments */
@media (max-width: 640px) {
  .guide-modal__panel {
    padding: 1.5rem 1.25rem;
    width: 95%;
    max-height: 95vh;
  }
 
  .guide-modal__title {
    font-size: 1.2rem;
  }
}