/* ================================================================
   K&H Jumping Castles — styles.css  (v2)
   Mobile-first · Single source of truth · No duplicates
   ================================================================ */
 
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@600;700&family=Quicksand:wght@400;500;600;700&display=swap');
 
/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
 
/* Design Tokens */
:root {
  --blue:          #1a8fd1;
  --blue-dark:     #0d6fa3;
  --blue-light:    #e8f4fc;
  --orange:        #7B2FBE;   /* Deep purple — accent & CTA */
  --orange-dark:   #5e1a9e;
  --yellow:        #FFD700;
  --green:         #25D366;
  --nav-green:     #00AA00;   /* Logo green — Book Now button */
  --nav-green-dark:#008800;
  --white:         #ffffff;
  --text:          #1e293b;
  --text-light:    #64748b;
  --text-muted:    #94a3b8;
  --bg:            #ffffff;
  --bg-soft:       #f1f5f9;
  --bg-card:       #ffffff;
  --border:        #e2e8f0;
  --nav-bg:        rgba(255,255,255,0.88);
  --nav-h:         74px;
  --radius:        14px;
  --radius-pill:   100px;
  --shadow-sm:     0 1px 6px rgba(0,0,0,0.07);
  --shadow-md:     0 6px 22px rgba(0,0,0,0.11);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.15);
  --transition:    0.22s ease;
}
 
body { font-family: 'Quicksand', sans-serif; color: var(--text); line-height: 1.65; background: var(--bg); }
h1, h2, h3, h4 { font-family: 'Fredoka', sans-serif; color: var(--blue); line-height: 1.2; }
p { margin-bottom: 0; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
 
/* Nav uses full viewport width with edge padding — logo left, links right */
.main-nav { width: 100%; }
.main-nav .container {
  max-width: 100%;
  padding: 0 2rem;
}
main { min-height: calc(100vh - var(--nav-h) - 280px); }
section { padding: 4.5rem 0; }
 
/* ================================================================
   NAVIGATION — sticky glass
   ================================================================ */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
.main-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.13); }
 
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}
 
/* Logo — image + text always side by side */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img { height: 56px; width: auto; object-fit: contain; flex-shrink: 0; }
.logo-text {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  display: block;
  line-height: 1.2;
}
 
/* Desktop nav links */
.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links li a {
  display: inline-block;
  padding: 0.42rem 0.95rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.93rem;
  /* Always visible as a light-blue pill */
  color: var(--blue-dark);
  background: var(--blue-light);
  border: 2px solid var(--blue-light);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-links li a:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,143,209,0.3);
}
/* Active page — pink like the logo */
.nav-links li a.active {
  background: #FF69B4;
  color: var(--white);
  border-color: #FF69B4;
  box-shadow: 0 4px 12px rgba(255,105,180,0.35);
}
.nav-links li a:active { transform: translateY(1px); }
 
/* Book Now — green pill matching logo */
.nav-links li a.btn-cta {
  background: var(--orange);
  color: var(--white) !important;
  border-color: var(--orange);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1.2rem;
  box-shadow: 0 4px 14px rgba(123,47,190,0.35);
  font-weight: 700;
}
.nav-links li a.btn-cta:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(123,47,190,0.45);
  transform: translateY(-2px);
  color: var(--white) !important;
}
 
/* Hamburger */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.45rem;
  border-radius: 8px;
  transition: background var(--transition);
}
.mobile-menu-btn:hover { background: var(--bg-soft); }
.menu-icon { width: 24px; height: 24px; stroke: var(--text); }
.bar1, .bar2, .bar3 { transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; }
.mobile-menu-btn.open .bar1 { transform: translate(0,6px) rotate(45deg); }
.mobile-menu-btn.open .bar2 { opacity: 0; }
.mobile-menu-btn.open .bar3 { transform: translate(0,-6px) rotate(-45deg); }
 
/* Mobile nav */
@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .logo-text { font-size: 1rem; }
  .logo-img  { height: 44px; }
 
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    padding: 0.85rem 1rem 1rem;
    gap: 0.4rem;
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    text-align: center;
    width: 100%;
    display: block;
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
    color: var(--blue-dark);
    background: var(--blue-light);
    border: 2px solid var(--blue-light);
    transform: none !important;
  }
  .nav-links li a:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
  }
  .nav-links li a.active {
    background: #FF69B4;
    color: var(--white);
    border-color: #FF69B4;
    box-shadow: 0 4px 12px rgba(255,105,180,0.3);
  }
  .nav-links li a.btn-cta {
    background: var(--orange);
    color: var(--white) !important;
    border-color: var(--orange);
    border-radius: var(--radius-pill);
    margin-top: 0.2rem;
    box-shadow: 0 4px 14px rgba(123,47,190,0.3);
  }
  .nav-links li a.btn-cta:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
  }
}
 
/* ================================================================
   GLOBAL BUTTONS
   ================================================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  border: 2px solid transparent;
}
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 4px 14px rgba(26,143,209,0.35); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(26,143,209,0.45); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.75); }
.btn-secondary:hover { background: rgba(255,255,255,0.18); border-color: var(--white); transform: translateY(-2px); }
.btn:active { transform: translateY(1px) !important; }
 
/* ================================================================
   HERO — clean blue, crisp white text
   ================================================================ */
.hero-section {
  background: linear-gradient(150deg, #1a8fd1 0%, #0d6fa3 55%, #094f7a 100%);
  color: var(--white);
  padding: 3.5rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
}
 
/* Two-column layout: logo | text */
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
 
/* Logo column */
.hero-logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  width: clamp(240px, 32vw, 420px);
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
  animation: heroLogoBounce 3s ease-in-out infinite;
}
@keyframes heroLogoBounce {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-10px); }
}
 
/* Text column */
.hero-content {
  flex: 1;
  min-width: 0;
}
.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
  line-height: 1.15;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
 
/* Mini badge strip */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  letter-spacing: 0.01em;
}
.hero-badge--pink   { background: rgba(255,105,180,0.22); border: 1px solid rgba(255,105,180,0.5); color: #ffcce8; }
.hero-badge--green  { background: rgba(0,200,0,0.18);     border: 1px solid rgba(0,200,0,0.4);     color: #b8ffb8; }
.hero-badge--yellow { background: rgba(255,215,0,0.18);   border: 1px solid rgba(255,215,0,0.4);   color: #fff3a0; }
 
.hero-buttons { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-section .btn-primary { background: var(--white); color: var(--blue-dark); box-shadow: 0 4px 18px rgba(0,0,0,0.2); border-color: var(--white); }
.hero-section .btn-primary:hover { background: var(--yellow); color: var(--text); border-color: var(--yellow); }
.hero-section .btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.hero-section .btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
 
/* ================================================================
   SECTION TITLE
   ================================================================ */
.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  color: var(--blue);
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0.55rem auto 0;
}
 
/* ================================================================
   FEATURES
   ================================================================ */
.features-section { background: var(--bg-soft); padding: 2.5rem 0; }
.features-grid {
  display: grid;
  /* 6 equal columns on desktop — single row */
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 0.85rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--blue);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
 
/* Colour variants — matching logo palette */
.feature-card--pink  { border-top-color: #FF69B4; }
.feature-card--green { border-top-color: #00CC00; }
.feature-card--yellow{ border-top-color: #FFD700; }
.feature-card--blue  { border-top-color: var(--blue); }
 
.feature-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.3rem;
  transition: transform var(--transition);
}
.feature-card:hover .feature-icon { transform: scale(1.12); }
 
/* Icon background + colour per variant */
.feature-card--pink   .feature-icon { background: #fff0f6; color: #FF69B4; }
.feature-card--green  .feature-icon { background: #f0fff0; color: #00AA00; }
.feature-card--yellow .feature-icon { background: #fffbea; color: #e6a800; }
.feature-card--blue   .feature-icon { background: var(--blue-light); color: var(--blue); }
 
.feature-title { font-family: 'Fredoka', sans-serif; font-size: 0.95rem; color: var(--text); margin-bottom: 0.3rem; line-height: 1.2; }
.feature-text  { font-size: 0.78rem; color: var(--text-light); line-height: 1.45; }
 
/* ================================================================
   CASTLES GRID
   ================================================================ */
.castles-section { padding: 4.5rem 0; }
.castles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.75rem; }
.castle-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.castle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.castle-image { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.castle-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.castle-card:hover .castle-image img { transform: scale(1.04); }
.castle-content { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; }
.castle-name { font-family: 'Fredoka', sans-serif; font-size: 1.25rem; color: var(--text); margin-bottom: 0.2rem; }
.castle-size { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.55rem; font-weight: 600; }
.castle-description { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0.75rem; flex: 1; }
.castle-features { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 1rem; }
.castle-features li { font-size: 0.77rem; background: var(--blue-light); color: var(--blue-dark); padding: 0.18rem 0.55rem; border-radius: var(--radius-pill); font-weight: 700; }
.castle-price { font-family: 'Fredoka', sans-serif; font-size: 1.5rem; color: var(--orange); margin-bottom: 0.75rem; font-weight: 700; }
.castle-button {
  width: 100%; padding: 0.65rem;
  background: var(--blue); color: var(--white);
  border-radius: var(--radius);
  font-family: 'Fredoka', sans-serif; font-size: 1rem; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.castle-button:hover { background: var(--blue-dark); transform: translateY(-1px); }
 
/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section { background: var(--bg-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.testimonial-text { font-size: 0.93rem; color: var(--text); font-style: italic; flex: 1; line-height: 1.6; }
.testimonial-author { font-weight: 700; font-size: 0.88rem; color: var(--blue-dark); }
.testimonial-stars { display: flex; gap: 0.2rem; }
.star-icon { width: 17px; height: 17px; fill: var(--yellow); flex-shrink: 0; }
 
/* ================================================================
   CTA BAND
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, #7B2FBE 0%, #9b4dca 100%);
  text-align: center;
  padding: 4.5rem 1.25rem;
}
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-title { font-family: 'Fredoka', sans-serif; font-size: clamp(1.75rem, 4vw, 2.25rem); color: var(--white); margin-bottom: 0.75rem; text-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.cta-subtitle { color: rgba(255,255,255,0.92); font-size: 1.05rem; margin-bottom: 1.75rem; }
.cta-buttons { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary { background: var(--white); color: var(--orange); border-color: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
.cta-section .btn-primary:hover { background: var(--yellow); color: var(--text); border-color: var(--yellow); }
.cta-section .btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.75); }
.cta-section .btn-secondary:hover { background: rgba(255,255,255,0.18); border-color: var(--white); }
 
/* ================================================================
   PAGE HEADER
   ================================================================ */
.page-header {
  background: linear-gradient(150deg, #1a8fd1 0%, #0d6fa3 55%, #094f7a 100%);
  padding: 3.5rem 1.25rem 3rem;
  text-align: center;
}
.page-title { font-family: 'Fredoka', sans-serif; font-size: clamp(2rem, 5vw, 3rem); color: var(--white); margin-bottom: 0.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.page-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.88); }
 
/* ================================================================
   GALLERY
   ================================================================ */
.filter-section { padding: 2rem 0 1.25rem; background: var(--bg-soft); }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.filter-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.48rem 1.05rem;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.88rem;
  background: var(--white); color: var(--text);
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); box-shadow: 0 4px 12px rgba(26,143,209,0.35); }
.filter-badge { background: rgba(0,0,0,0.1); padding: 0.08rem 0.42rem; border-radius: 20px; font-size: 0.76rem; }
.filter-btn.active .filter-badge { background: rgba(255,255,255,0.28); }
 
.gallery-section { padding: 2rem 0 4rem; background: var(--bg-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.gallery-card {
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-image-wrapper { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.gallery-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-card:hover .gallery-image { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-title { font-family: 'Fredoka', sans-serif; color: var(--white); font-size: 1.1rem; }
.gallery-size { color: rgba(255,255,255,0.78); font-size: 0.8rem; }
.gallery-search-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all var(--transition);
}
.gallery-search-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.gallery-card:hover .gallery-search-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }
 
/* ================================================================
   MODAL
   ================================================================ */
.modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.65);
  align-items: center; justify-content: center; padding: 1rem;
  backdrop-filter: blur(6px);
}
.modal.active { display: flex; }
.modal-content {
  background: var(--white); border-radius: var(--radius);
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}
.modal-close-btn {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 34px; height: 34px; background: var(--bg-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; z-index: 1;
  transition: background var(--transition);
}
.modal-close-btn:hover { background: var(--border); }
.modal-close-btn svg { width: 18px; height: 18px; stroke: var(--text); }
.modal-body { padding: 1.75rem; }
.modal-image { width: 100%; border-radius: var(--radius); margin-bottom: 1.25rem; aspect-ratio: 16/9; object-fit: cover; }
.modal-title { font-family: 'Fredoka', sans-serif; font-size: 1.6rem; color: var(--text); margin-bottom: 1rem; }
.modal-info { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.modal-info-item { background: var(--bg-soft); border-radius: 8px; padding: 0.75rem; }
.modal-info-label { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 0.2rem; }
.modal-description { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; }
.modal-features { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.modal-features li { font-size: 0.8rem; background: var(--blue-light); color: var(--blue-dark); padding: 0.22rem 0.62rem; border-radius: var(--radius-pill); font-weight: 700; }
.modal-button {
  display: block; width: 100%; padding: 0.75rem;
  background: var(--blue); color: var(--white); border-radius: var(--radius);
  font-family: 'Fredoka', sans-serif; font-size: 1.05rem; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.modal-button:hover { background: var(--blue-dark); transform: translateY(-1px); }
 
/* ================================================================
   PRICING
   ================================================================ */
.pricing-toggle-section { padding: 2rem 0 1.25rem; background: var(--bg-soft); }
.toggle-buttons {
  display: flex; justify-content: center;
  border-radius: var(--radius-pill); overflow: hidden;
  box-shadow: var(--shadow-sm); width: fit-content; margin: 0 auto;
  border: 2px solid var(--border); background: var(--white);
}
.toggle-btn {
  padding: 0.58rem 1.75rem;
  background: transparent; color: var(--text-light);
  font-family: 'Fredoka', sans-serif; font-size: 1rem; font-weight: 600;
  transition: all var(--transition); border: none;
}
.toggle-btn:first-child { border-right: 1px solid var(--border); }
.toggle-btn.active { background: var(--blue); color: var(--white); }
.toggle-btn:not(.active):hover { background: var(--bg-soft); color: var(--blue); }
 
.pricing-section { background: var(--bg-soft); padding: 2rem 0 4.5rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.pricing-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pricing-card-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white); padding: 1.5rem; text-align: center;
}
.pricing-card-name { font-family: 'Fredoka', sans-serif; font-size: 1.3rem; color: var(--white); margin-bottom: 0.25rem; }
.pricing-card-size { font-size: 0.82rem; color: rgba(255,255,255,0.82); }
.pricing-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pricing-card-price { font-family: 'Fredoka', sans-serif; font-size: 2.5rem; color: var(--orange); line-height: 1; margin-bottom: 0.3rem; font-weight: 700; }
.pricing-card-period { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.pricing-card-features { flex: 1; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-card-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--text); }
.pricing-card-features li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-card-button {
  width: 100%; padding: 0.7rem;
  background: var(--blue); color: var(--white); border-radius: var(--radius);
  font-family: 'Fredoka', sans-serif; font-size: 1rem; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.pricing-card-button:hover { background: var(--blue-dark); transform: translateY(-1px); }
 
.pricing-info-section { padding: 4rem 0; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.info-card {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); border-left: 4px solid var(--blue);
}
.info-title { font-family: 'Fredoka', sans-serif; font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; }
.info-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
 
/* ================================================================
   FOOTER — deep navy, crisp text
   ================================================================ */
.footer {
  background: linear-gradient(150deg, #083a5e 0%, #0d5e8f 100%);
  color: var(--white);
  padding: 3.5rem 0 1.5rem;
}
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-bottom: 2.5rem; text-align: center; }
.footer-title { font-family: 'Fredoka', sans-serif; font-size: 1.1rem; color: var(--white); margin-bottom: 0.75rem; }
.footer-text { font-size: 0.87rem; color: rgba(255,255,255,0.78); margin-bottom: 0.4rem; line-height: 1.6; }
.footer-link { display: inline-flex; align-items: center; gap: 0.45rem; margin-bottom: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.82); transition: color var(--transition); }
.footer-link:hover { color: var(--yellow); }
.icon-small { width: 1.05rem; height: 1.05rem; flex-shrink: 0; }
.stars-container { display: flex; justify-content: center; gap: 0.2rem; margin-bottom: 0.5rem; }
.star { width: 1.1rem; height: 1.1rem; fill: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 1.25rem; text-align: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.62);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
}
 
/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
/* WhatsApp chatbot widget — see below */
 
/* ================================================================
   COOKIE BANNER
   ================================================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1800;
  background: rgba(8,58,94,0.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--white); padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; font-size: 0.87rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2); line-height: 1.5;
}
#accept-cookies {
  background: var(--yellow); color: var(--text); border: none;
  border-radius: var(--radius-pill); padding: 0.45rem 1.3rem;
  font-family: 'Fredoka', sans-serif; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
#accept-cookies:hover { background: #e6c000; transform: scale(1.04); }
 
/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.fade-in { animation: fadeUp 0.45s ease both; }
 
/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .hero-section { padding: 2.5rem 1.25rem; }
  /* Stack hero vertically on tablet */
  .hero-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .hero-logo  { width: clamp(180px, 55vw, 280px); }
  .hero-badges { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .modal-info { grid-template-columns: 1fr; }
  /* 2 columns on tablet */
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
  .castles-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-buttons, .cta-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn, .cta-buttons .btn { min-width: 200px; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .pricing-card-price { font-size: 2rem; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  /* 2 columns on small mobile */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .footer-content { text-align: center; }
}
 
/* ================================================================
   GALLERY CARD FOOTER (PHP static version)
   ================================================================ */
.gallery-card {
  display: flex;
  flex-direction: column;
}
.gallery-card-footer {
  background: var(--white);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
}
.gallery-card-info { flex: 1; min-width: 0; }
.gallery-card-price {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  margin-bottom: 0.3rem;
}
.gallery-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.gallery-card-features li {
  font-size: 0.72rem;
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.gallery-card-btn {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.gallery-card-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
 
/* ================================================================
   PRICING CARD IMAGE (PHP static version)
   ================================================================ */
.pricing-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 1rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
 
/* Toggle buttons as anchor links */
.toggle-buttons a.toggle-btn {
  text-decoration: none;
  display: inline-block;
}
 
/* ================================================================
   GALLERY — showcase updates
   ================================================================ */
.page-header-link {
  color: var(--yellow);
  text-decoration: underline;
  font-weight: 700;
}
.page-header-link:hover { color: var(--white); }
 
.gallery-card-name {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.gallery-card-size-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.gallery-card-qty {
  display: inline-block;
  font-size: 0.75rem;
  background: #fff0f6;
  color: #d63384;
  border: 1px solid #ffb3d1;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.gallery-cta {
  margin-top: 3rem;
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.gallery-cta p {
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 600;
}
.gallery-cta p a { color: var(--blue-dark); text-decoration: underline; font-weight: 700; }
.gallery-cta .btn-primary i { margin-right: 0.4rem; }
 
/* ================================================================
   PRICING — both rates layout
   ================================================================ */
.pricing-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.pricing-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.pricing-qty-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: #FF69B4;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.pricing-qty-badge i { margin-right: 0.3rem; }
 
.pricing-card-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 1rem 1.25rem;
}
.pricing-card-name { font-family: 'Fredoka', sans-serif; font-size: 1.3rem; color: var(--white); margin-bottom: 0.2rem; }
.pricing-card-size { font-size: 0.82rem; color: rgba(255,255,255,0.82); }
.pricing-card-size i { margin-right: 0.3rem; opacity: 0.8; }
 
/* Dual rate display */
.pricing-rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.pricing-rate {
  border-radius: var(--radius);
  padding: 0.75rem 0.6rem;
  text-align: center;
}
.pricing-rate--daily   { background: #fffbea; border: 2px solid #FFD700; }
.pricing-rate--weekend { background: #f0fff0; border: 2px solid #00CC00; }
.pricing-rate-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  color: var(--text-light);
}
.pricing-rate--daily   .pricing-rate-label { color: #b38600; }
.pricing-rate--weekend .pricing-rate-label { color: #007a00; }
.pricing-rate-label i { margin-right: 0.25rem; }
.pricing-rate-amount {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}
.pricing-rate--daily   .pricing-rate-amount { color: #b38600; }
.pricing-rate--weekend .pricing-rate-amount { color: #007a00; }
 
/* Book actions — call + whatsapp */
.pricing-book-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}
.pricing-card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.pricing-card-button--call {
  background: var(--blue);
  color: var(--white);
}
.pricing-card-button--call:hover { background: var(--blue-dark); transform: translateY(-1px); }
.pricing-card-button--whatsapp {
  background: #25D366;
  color: var(--white);
}
.pricing-card-button--whatsapp:hover { background: #1ead52; transform: translateY(-1px); }
 
/* Info card icon */
.info-title i { margin-right: 0.45rem; color: var(--blue); }
 
/* CTA button icons */
.cta-buttons .btn i { margin-right: 0.4rem; }
 
/* Responsive tweaks for pricing rates */
@media (max-width: 360px) {
  .pricing-rates { grid-template-columns: 1fr; }
  .pricing-book-actions { grid-template-columns: 1fr; }
}
 
/* ================================================================
   CAROUSEL
   ================================================================ */
.carousel-hint {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: -1.25rem;
  margin-bottom: 1.75rem;
}
.carousel-hint i { margin-right: 0.3rem; }
 
/* ── Outer wrapper ── */
.carousel-wrap {
  position: relative;
  width: 100%;
}
 
/* Remove flex gap when in marquee mode; position:relative anchors the abs buttons */
.carousel-wrap--marquee {
  display: block;
  position: relative;
}
 
/* Fade edges for a polished infinite feel */
.carousel-wrap--marquee::before,
.carousel-wrap--marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.carousel-wrap--marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}
.carousel-wrap--marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}
 
/* ── Viewport — clips the marquee ── */
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  width: 100%;
}
 
/* ── Track — CSS marquee animation ── */
.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  will-change: transform;
  /* animation duration is set by JS proportionally to slide count */
  animation: castleMarquee 28s linear infinite;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  padding: 0.5rem 0 1rem; /* breathing room for hover lift */
}
 
@keyframes castleMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
 
/* ── Individual slide ── */
.carousel-slide {
  flex-shrink: 0;
  width: 280px;        /* fixed card width */
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  /* pointer-events kept ON so clicks work */
  transition: border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}
 
.carousel-slide:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px) scale(1.02);
  z-index: 5;
  position: relative;
}
 
/* Clones should behave identically */
.carousel-clone {
  pointer-events: auto;
}
.carousel-clone:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px) scale(1.02);
}
 
/* ── Image wrap ── */
.carousel-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.carousel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  pointer-events: none;
  -webkit-user-drag: none;
}
.carousel-slide:hover .carousel-img-wrap img,
.carousel-clone:hover .carousel-img-wrap img {
  transform: scale(1.06);
}
 
.carousel-qty-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: #FF69B4;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.18rem 0.6rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
 
/* ── Caption ── */
.carousel-caption {
  padding: 0.9rem 1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.carousel-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.2;
}
.carousel-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;            /* standard property for compatibility */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 
/* "View & Book" CTA */
.carousel-cta-label {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.carousel-slide:hover .carousel-cta-label,
.carousel-clone:hover .carousel-cta-label {
  opacity: 1;
  transform: translateX(0);
}
 
/* ── Prev / Next buttons — overlaid on the fade edges ── */
.carousel-btn {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--blue);
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition);
}
.carousel-btn--prev { left: 6px; }
.carousel-btn--next { right: 6px; }
 
.carousel-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}
.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}
 
/* ── Dots — hidden in marquee mode ── */
.carousel-dots { display: none; }
 
/* ── Responsive widths ── */
@media (max-width: 600px) {
  .carousel-slide,
  .carousel-clone { width: 220px; }
  .carousel-wrap--marquee::before,
  .carousel-wrap--marquee::after { width: 40px; }
}
 
/* ================================================================
   GALLERY — showcase updates
 
   ================================================================ */
.page-header-link {
  color: var(--yellow);
  text-decoration: underline;
  font-weight: 700;
}
.page-header-link:hover { color: var(--white); }
 
.gallery-card-name {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.gallery-card-size-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.gallery-card-qty {
  display: inline-block;
  font-size: 0.75rem;
  background: #fff0f6;
  color: #d63384;
  border: 1px solid #ffb3d1;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.gallery-cta {
  margin-top: 3rem;
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.gallery-cta p {
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 600;
}
.gallery-cta p a { color: var(--blue-dark); text-decoration: underline; font-weight: 700; }
.gallery-cta .btn-primary i { margin-right: 0.4rem; }
 
/* ================================================================
   PRICING — both rates layout
   ================================================================ */
.pricing-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.pricing-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.pricing-qty-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: #FF69B4;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.pricing-qty-badge i { margin-right: 0.3rem; }
 
.pricing-card-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 1rem 1.25rem;
}
.pricing-card-name { font-family: 'Fredoka', sans-serif; font-size: 1.3rem; color: var(--white); margin-bottom: 0.2rem; }
.pricing-card-size { font-size: 0.82rem; color: rgba(255,255,255,0.82); }
.pricing-card-size i { margin-right: 0.3rem; opacity: 0.8; }
 
/* Dual rate display */
.pricing-rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.pricing-rate {
  border-radius: var(--radius);
  padding: 0.75rem 0.6rem;
  text-align: center;
}
.pricing-rate--daily   { background: #fffbea; border: 2px solid #FFD700; }
.pricing-rate--weekend { background: #f0fff0; border: 2px solid #00CC00; }
.pricing-rate-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  color: var(--text-light);
}
.pricing-rate--daily   .pricing-rate-label { color: #b38600; }
.pricing-rate--weekend .pricing-rate-label { color: #007a00; }
.pricing-rate-label i { margin-right: 0.25rem; }
.pricing-rate-amount {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}
.pricing-rate--daily   .pricing-rate-amount { color: #b38600; }
.pricing-rate--weekend .pricing-rate-amount { color: #007a00; }
 
/* Book actions — call + whatsapp */
.pricing-book-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}
.pricing-card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.pricing-card-button--call {
  background: var(--blue);
  color: var(--white);
}
.pricing-card-button--call:hover { background: var(--blue-dark); transform: translateY(-1px); }
.pricing-card-button--whatsapp {
  background: #25D366;
  color: var(--white);
}
.pricing-card-button--whatsapp:hover { background: #1ead52; transform: translateY(-1px); }
 
/* Info card icon */
.info-title i { margin-right: 0.45rem; color: var(--blue); }
 
/* CTA button icons */
.cta-buttons .btn i { margin-right: 0.4rem; }
 
/* Responsive tweaks for pricing rates */
@media (max-width: 360px) {
  .pricing-rates { grid-template-columns: 1fr; }
  .pricing-book-actions { grid-template-columns: 1fr; }
}
 
/* ================================================================
   CAROUSEL
   ================================================================ */
.carousel-hint {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: -1.5rem;
  margin-bottom: 1.75rem;
}
.carousel-hint i { margin-right: 0.3rem; }
 
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
 
/* ── Viewport clips the track ── */
.carousel-viewport {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius);
}
 
/* ── Track holds all slides in a row ── */
.carousel-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.carousel-track:active { cursor: grabbing; }
 
/* ── Individual slide ── */
.carousel-slide {
  flex: 0 0 calc((100% - 3rem) / 3);   /* 3 visible on desktop */
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.carousel-slide:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.carousel-slide--active {
  border-color: var(--orange);
}
 
/* ── Image ── */
.carousel-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.carousel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  pointer-events: none;
}
.carousel-slide:hover .carousel-img-wrap img { transform: scale(1.05); }
 
.carousel-qty-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: #FF69B4;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.18rem 0.6rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
 
/* ── Caption ── */
.carousel-caption {
  padding: 1rem 1.1rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.carousel-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.2;
}
.carousel-rates {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.carousel-rate {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.carousel-rate--day     { background: #fffbea; color: #b38600; border: 1px solid #FFD700; }
.carousel-rate--weekend { background: #f0fff0; color: #007a00; border: 1px solid #00CC00; }
 
.carousel-cta-label {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.carousel-slide:hover .carousel-cta-label {
  opacity: 1;
  transform: translateX(0);
}
 
/* ── Prev / Next buttons ── */
.carousel-btn {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition);
  z-index: 2;
}
.carousel-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: scale(1.08);
}
.carousel-btn:active { transform: scale(0.96); }
 
/* ── Dots ── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}
.carousel-dot.active {
  background: var(--orange);
  width: 26px;
  border-radius: 5px;
  transform: none;
}
.carousel-dot:hover:not(.active) { background: var(--blue); transform: scale(1.2); }
 
/* ── Responsive ── */
@media (max-width: 1023px) {
  .carousel-slide {
    flex: 0 0 calc((100% - 1.5rem) / 2);  /* 2 visible on tablet */
  }
}
@media (max-width: 639px) {
  .carousel-slide {
    flex: 0 0 100%;  /* 1 visible on mobile */
  }
  .carousel-btn { width: 36px; height: 36px; font-size: 0.85rem; }
}
 
/* ── Highlight the anchor target on pricing page ── */
.pricing-card:target {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
  animation: highlight-pulse 1.2s ease;
}
@keyframes highlight-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(123,47,190,0.45); }
  50%  { box-shadow: 0 0 0 16px rgba(123,47,190,0); }
  100% { box-shadow: 0 0 0 0 rgba(123,47,190,0); }
}
 
/* ================================================================
   CAROUSEL — image overlay + description additions
   ================================================================ */
.carousel-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, transparent 100%);
  padding: 0.6rem 0.8rem 0.55rem;
  display: flex;
  align-items: flex-end;
}
.carousel-img-overlay span {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
 
.carousel-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
  /* Clamp to 2 lines so cards stay equal height */
  display: -webkit-box;
  display: box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
}
 
/* ================================================================
   PRICING — single Book Now button
   ================================================================ */
.pricing-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(123,47,190,0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.pricing-book-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123,47,190,0.45);
}
.pricing-book-btn:active { transform: translateY(1px); }
 
/* WhatsApp button in CTA section */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  background: #25D366;
  color: var(--white);
  border: 2px solid #25D366;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-wa:hover {
  background: #1ead52;
  border-color: #1ead52;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}
 
/* ================================================================
   BOOKING POPUP
   ================================================================ */
.booking-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.booking-overlay.active {
  display: flex;
  animation: fadeIn 0.22s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
 
.booking-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 2.25rem 2rem 2rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  animation: slideUp 0.28s cubic-bezier(0.34,1.4,0.64,1);
  text-align: center;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
 
.booking-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.booking-close:hover { background: var(--border); color: var(--text); }
 
.booking-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(26,143,209,0.35);
}
 
.booking-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
 
.booking-castle-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
 
.booking-rates {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.br-day, .br-wknd {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.br-day  { background: #fffbea; color: #b38600; border: 1px solid #FFD700; }
.br-wknd { background: #f0fff0; color: #007a00; border: 1px solid #00CC00; }
 
.booking-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
 
.booking-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
 
.booking-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  border: 2px solid var(--border);
  transition: border-color var(--transition), background var(--transition),
              transform var(--transition), box-shadow var(--transition);
  text-align: left;
}
.booking-option:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
 
.booking-option--whatsapp { border-color: #25D366; }
.booking-option--whatsapp:hover { background: #f0fff5; border-color: #1ead52; }
.booking-option--email { border-color: var(--blue); }
.booking-option--email:hover { background: var(--blue-light); border-color: var(--blue-dark); }
 
.booking-option-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.booking-option--whatsapp .booking-option-icon { background: #f0fff5; color: #25D366; }
.booking-option--email    .booking-option-icon { background: var(--blue-light); color: var(--blue); }
 
.booking-option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.booking-option-text strong { font-size: 0.97rem; color: var(--text); }
.booking-option-text span   { font-size: 0.8rem;  color: var(--text-light); }
 
.booking-option-arrow {
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.booking-option:hover .booking-option-arrow { transform: translateX(3px); color: var(--text); }
 
.booking-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.booking-note i { color: #FF69B4; }
 
@media (max-width: 480px) {
  .booking-modal { padding: 1.75rem 1.25rem 1.5rem; }
}
 
/* ================================================================
   TERMS & CONDITIONS PAGE
   ================================================================ */
.terms-section { padding: 4rem 0 5rem; }
 
.terms-wrap {
  max-width: 820px;
  margin: 0 auto;
}
 
/* Intro banner */
.terms-intro {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--blue-light);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}
.terms-intro-icon {
  font-size: 1.8rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.terms-intro p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.65;
}
.terms-intro p strong { color: var(--blue-dark); }
 
/* Terms list */
.terms-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0;
  margin: 0 0 2.5rem;
}
 
/* All term cards — same clean style, no severity colour differences */
.terms-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.terms-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
 
/* Remove severity overrides — all the same */
.terms-item--warning,
.terms-item--danger {
  border-left-color: var(--blue);
  background: var(--white);
}
 
/* Icon circle — all blue */
.terms-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--blue);
  flex-shrink: 0;
}
.terms-item--warning .terms-item-icon,
.terms-item--danger  .terms-item-icon {
  background: var(--blue-light);
  color: var(--blue);
}
 
.terms-item-body { flex: 1; min-width: 0; }
.terms-item-body h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  color: var(--blue-dark);
  margin-bottom: 0.3rem;
}
.terms-item-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.terms-item-body p strong { color: var(--text); }
 
/* Agreement box — bright pink/orange gradient to really stand out */
.terms-agreement {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: linear-gradient(135deg, #FF69B4 0%, #7B2FBE 100%);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 2rem;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(255,105,180,0.3);
}
.terms-agreement-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.terms-agreement h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.terms-agreement p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.93);
  line-height: 1.65;
}
 
/* CTA buttons */
.terms-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-secondary-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-secondary-dark:hover {
  background: var(--bg-soft);
  border-color: var(--text-light);
  transform: translateY(-2px);
}
 
@media (max-width: 600px) {
  .terms-intro  { flex-direction: column; gap: 0.75rem; }
  .terms-item   { flex-direction: column; gap: 0.6rem; }
  .terms-agreement { flex-direction: column; gap: 0.75rem; }
  .terms-cta .btn, .terms-cta .btn-secondary-dark { width: 100%; justify-content: center; }
}
 
/* ================================================================
   GALLERY LIGHTBOX
   ================================================================ */
 
/* Zoom icon on gallery card hover */
.gallery-zoom-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.93);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--blue);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.gallery-card:hover .gallery-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
/* Make the image wrapper show a pointer cursor */
.gallery-card { cursor: pointer; }
 
/* ── Lightbox overlay ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.active {
  display: flex;
  animation: lbFadeIn 0.25s ease;
}
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
 
/* ── Close button ── */
.lightbox-close {
  position: fixed;
  top: 1.1rem;
  right: 1.1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.lightbox-close:hover {
  background: #FF69B4;
  border-color: #FF69B4;
  transform: scale(1.1) rotate(90deg);
}
 
/* ── Prev / Next ── */
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.lightbox-nav--prev { left: 1rem; }
.lightbox-nav--next { right: 1rem; }
.lightbox-nav:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.lightbox-nav--prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox-nav--next:hover { transform: translateY(-50%) translateX(2px); }
 
/* ── Inner: image + caption side by side on desktop ── */
.lightbox-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1160px;
  width: 100%;
  max-height: 94vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: lbSlideUp 0.3s cubic-bezier(0.34,1.3,0.64,1);
}
@keyframes lbSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
 
/* Image panel */
.lightbox-img-wrap {
  flex: 1 1 60%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 300px;
}
.lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-height: 88vh;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
 
/* Caption panel */
.lightbox-caption {
  flex: 0 0 260px;
  background: var(--white);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  overflow-y: auto;
}
.lightbox-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  color: var(--blue);
  line-height: 1.2;
}
.lightbox-meta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lightbox-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}
.lightbox-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.2rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  justify-content: center;
  margin-top: 0.5rem;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 14px rgba(123,47,190,0.3);
}
.lightbox-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
 
/* Counter */
.lightbox-counter {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.2);
  pointer-events: none;
  letter-spacing: 0.05em;
}
 
/* ── Mobile — stack image over caption ── */
@media (max-width: 680px) {
  .lightbox-inner {
    flex-direction: column;
    max-height: 92vh;
    border-radius: 16px;
  }
  .lightbox-img-wrap {
    flex: 0 0 auto;
    max-height: 52vw;
    min-height: 200px;
  }
  .lightbox-caption {
    flex: 0 0 auto;
    padding: 1.25rem;
  }
  .lightbox-nav--prev { left: 0.4rem; }
  .lightbox-nav--next { right: 0.4rem; }
}
 
/* ================================================================
   WHATSAPP CHATBOT WIDGET
   ================================================================ */
 
/* ── Wrapper ── */
/* ── Trigger — always fixed bottom-right, never moves ── */
.wc-trigger {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 3100;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: visible;
}
.wc-trigger:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.wc-trigger img { width: 36px; height: 36px; object-fit: contain; border-radius: 0; }
 
 
/* Notification dot */
.wc-dot {
  position: absolute;
  top: 2px; right: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #FF69B4;
  border: 2px solid var(--white);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wc-dot.visible { opacity: 1; transform: scale(1); }
 
/* ── Panel ── */
/* ── Panel — fixed independently above the trigger ── */
.wc-panel {
  position: fixed;
  bottom: 96px;   /* sits above the 62px trigger + gap */
  right: 22px;
  z-index: 3000;
  width: 340px;
  max-height: 580px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34,1.3,0.64,1);
  transform-origin: bottom right;
}
.wc-panel--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
 
/* ── Header ── */
.wc-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  color: var(--white);
  flex-shrink: 0;
}
.wc-header-logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  padding: 3px;
}
.wc-header-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.wc-header-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.wc-header-info strong {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
}
.wc-header-info span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.wc-online-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #a8ff78;
  flex-shrink: 0;
}
.wc-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wc-close:hover { background: rgba(255,255,255,0.32); transform: rotate(90deg); }
 
/* ── Body ── */
.wc-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  background: #f0f4f8;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  /* WhatsApp-style background dots */
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23c8d6df' fill-opacity='0.4'/%3E%3C/svg%3E");
}
 
/* ── Chat bubbles ── */
.wc-bubble--bot {
  background: var(--white);
  border-radius: 0 16px 16px 16px;
  padding: 0.85rem 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 92%;
  align-self: flex-start;
}
.wc-bubble--bot p { margin-bottom: 0.35rem; }
.wc-bubble--bot p:last-child { margin-bottom: 0; }
 
/* ── Choice buttons ── */
.wc-choices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wc-choice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.wc-choice:hover { transform: translateX(3px); }
.wc-choice--book:hover    { border-color: #7B2FBE; background: #f9f5ff; }
.wc-choice--enquire:hover { border-color: #25D366; background: #f0fff5; }
 
.wc-choice i {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.wc-choice--book    i { color: #7B2FBE; }
.wc-choice--enquire i { color: #25D366; }
 
.wc-choice span {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  line-height: 1.2;
}
.wc-choice small {
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.15rem;
}
 
/* ── Booking form ── */
.wc-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.wc-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.wc-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.wc-field label i { color: var(--blue); font-size: 0.82rem; }
.wc-field label small { font-weight: 400; color: var(--text-muted); }
.wc-field input,
.wc-field textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: none;
}
.wc-field input:focus,
.wc-field textarea:focus {
  outline: none;
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.15);
}
.wc-field-err {
  display: none;
  font-size: 0.73rem;
  color: #e53e3e;
  font-weight: 600;
}
 
/* ── Form action buttons ── */
.wc-form-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.35rem;
}
.wc-btn-back {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.9rem;
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.wc-btn-back:hover { background: var(--border); color: var(--text); }
 
.wc-btn-send {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  background: #25D366;
  border: 2px solid #25D366;
  border-radius: var(--radius);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.wc-btn-send:hover {
  background: #1ead52;
  border-color: #1ead52;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.45);
}
 
/* ── Utility ── */
.wc-hidden { display: none !important; }
.wc-step   { display: flex; flex-direction: column; gap: 0.75rem; }
 
/* ── Mobile ── */
@media (max-width: 480px) {
  .wc-trigger { right: 1rem; bottom: 1rem; }
  .wc-panel {
    width: calc(100vw - 2rem);
    max-height: 72vh;
    border-radius: 16px;
    right: 1rem;
    bottom: 86px;
  }
}
 
 
/* ================================================================
   CALENDAR POPUP
   ================================================================ */
 
/* Date input row */
.wc-date-wrap {
  display: flex;
  gap: 0;
}
.wc-date-input {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.wc-date-input:focus { outline: none; border-color: #25D366; }
 
.wc-date-icon {
  width: 40px;
  background: var(--blue-light);
  border: 2px solid var(--border);
  border-left: none;
  border-radius: 0 10px 10px 0;
  color: var(--blue);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.wc-date-icon:hover { background: var(--blue); color: var(--white); }
 
/* ── Full-screen popup overlay ── */
.wc-cal-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.wc-cal-popup--open {
  display: flex;
  animation: calOverlayIn 0.2s ease;
}
@keyframes calOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
 
/* ── Modal card ── */
.wc-cal-modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  animation: calModalIn 0.25s cubic-bezier(0.34,1.3,0.64,1);
}
@keyframes calModalIn {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}
 
/* Header */
.wc-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem 0.75rem;
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}
.wc-cal-header-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.wc-cal-header-close {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wc-cal-header-close:hover { background: rgba(255,255,255,0.35); transform: rotate(90deg); }
 
/* Month + Year selectors row */
.wc-cal-selectors {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem 0.6rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.wc-cal-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.wc-cal-arrow:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
 
.wc-cal-select {
  flex: 1;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
}
.wc-cal-select:focus { outline: none; border-color: #25D366; }
 
/* Day-of-week headers */
.wc-cal-days-head {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0.5rem 0.75rem 0.25rem;
  gap: 2px;
}
.wc-cal-days-head span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  text-transform: uppercase;
}
 
/* Day grid */
.wc-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  padding: 0.25rem 0.75rem 0.75rem;
}
.wc-cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  border: none;
  background: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.wc-cal-day:hover:not(:disabled):not(.wc-cal-day--past) {
  background: var(--blue-light);
  color: var(--blue-dark);
}
.wc-cal-day--empty   { visibility: hidden; cursor: default; }
.wc-cal-day--past    { color: var(--text-muted); cursor: not-allowed; opacity: 0.4; }
.wc-cal-day--today   {
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 700;
}
.wc-cal-day--selected {
  background: #25D366 !important;
  color: var(--white) !important;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(37,211,102,0.4);
}
.wc-cal-day--selected.wc-cal-day--today {
  border-color: #25D366;
}
 
/* Footer */
.wc-cal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  gap: 0.5rem;
}
.wc-cal-confirm-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: #25D366;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(37,211,102,0.35);
  transition: background 0.15s ease, transform 0.15s ease;
}
.wc-cal-confirm-btn:hover { background: #1ead52; transform: translateY(-1px); }

/* ================================================================
   WHATSAPP FLOATING CHAT WIDGET
   Mobile-first · Uses --green & --radius from :root where possible
   ================================================================ */

/* ── Trigger button ── */
.wc-trigger {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 3100;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.wc-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.wc-trigger img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Notification dot (optional) */
.wc-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FF69B4;
  border: 2px solid var(--white);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.wc-dot.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Chat panel ── */
.wc-panel {
  position: fixed;
  bottom: 96px;
  right: 22px;
  z-index: 3000;
  width: 340px;
  max-height: 580px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34, 1.3, 0.64, 1);
  transform-origin: bottom right;
}

.wc-panel--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */
.wc-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, #128C7E 0%, var(--green) 100%);
  color: var(--white);
  flex-shrink: 0;
}

.wc-header-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  padding: 3px;
}

.wc-header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.wc-header-info {
  flex: 1;
  min-width: 0;
}

.wc-header-info strong {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.wc-header-info span {
  font-size: 0.75rem;
  opacity: 0.88;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.wc-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a8ff78;
  flex-shrink: 0;
}

.wc-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wc-close:hover {
  background: rgba(255,255,255,0.32);
}

/* Body */
.wc-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  background: #f0f4f8;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23c8d6df' fill-opacity='0.4'/%3E%3C/svg%3E");
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Bubbles */
.wc-bubble--bot {
  background: var(--white);
  border-radius: 0 16px 16px 16px;
  padding: 0.85rem 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 92%;
  align-self: flex-start;
}

/* Choices */
.wc-choices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wc-choice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.wc-choice:hover {
  transform: translateX(3px);
}

.wc-choice--book:hover    { border-color: var(--orange); background: #fff5ff; }
.wc-choice--enquire:hover { border-color: var(--green);  background: #f0fff5; }

.wc-choice i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.wc-choice--book    i { color: var(--orange); }
.wc-choice--enquire i { color: var(--green);  }

.wc-choice span {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.wc-choice small {
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.15rem;
}

/* Form */
.wc-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.wc-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.wc-field label {
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.wc-field label i { color: var(--blue); }

.wc-field input,
.wc-field select,
.wc-field textarea {
  padding: 0.6rem 0.8rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.85rem;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wc-field input:focus,
.wc-field select:focus,
.wc-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(37,211,102,0.15);
}

.wc-field-err {
  font-size: 0.73rem;
  color: #e53e3e;
  font-weight: 600;
  display: none;
}

/* Form actions */
.wc-form-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.wc-btn-back {
  padding: 0.6rem 0.9rem;
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.wc-btn-back:hover {
  background: var(--border);
  color: var(--text);
}

.wc-send-btns {
  display: flex;
  gap: 0.5rem;
  flex: 1;
}

.wc-btn-send {
  flex: 1;
  padding: 0.65rem 1rem;
  background: var(--green);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.wc-btn-send:hover {
  background: #1ead52;
  border-color: #1ead52;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.45);
}

.wc-btn-send--email {
  background: var(--blue);
  border-color: var(--blue);
}

.wc-btn-send--email:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

/* Status messages */
.wc-send-status {
  padding: 0.8rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin: 0.5rem 0;
}

.wc-send-status--ok  { background: #dcfce7; color: #166534; }
.wc-send-status--err { background: #fee2e2; color: #991b1b; }

/* Hidden utility */
.wc-hidden { display: none !important; }

/* ── Mobile adjustments ── */
@media (max-width: 480px) {
  .wc-trigger {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .wc-panel {
    width: calc(100% - 32px);
    max-height: 75vh;
    right: 16px;
    bottom: 84px;
    border-radius: 16px;
  }

  .wc-send-btns {
    flex-direction: column;
  }
}