/* ============================================================
   The JumpHouse — Main Stylesheet
   Stack: Bootstrap 5 (CDN) + this custom CSS
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --jh-orange:   #FF6B35;
  --jh-purple:   #7B2FBE;
  --jh-yellow:   #FFD700;
  --jh-teal:     #00B4D8;
  --jh-dark:     #1A1A2E;
  --jh-light:    #FFF9F0;
  --jh-text:     #333333;
  --jh-muted:    #777777;
  --jh-border:   #e8e0f0;
  --jh-radius:   12px;
  --jh-shadow:   0 4px 24px rgba(123,47,190,.12);
  --jh-shadow-lg:0 8px 48px rgba(123,47,190,.18);
  --nav-height:  72px;
}

/* ── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  color: var(--jh-text);
  background: #fff;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; }

a { color: var(--jh-purple); text-decoration: none; }
a:hover { color: var(--jh-orange); }

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.25;
  color: var(--jh-dark);
}

/* ── Utility ────────────────────────────────────────────────── */
.text-orange  { color: var(--jh-orange) !important; }
.text-purple  { color: var(--jh-purple) !important; }
.text-teal    { color: var(--jh-teal)   !important; }
.bg-orange    { background: var(--jh-orange) !important; }
.bg-purple    { background: var(--jh-purple) !important; }
.bg-light-jh  { background: var(--jh-light)  !important; }
.rounded-jh   { border-radius: var(--jh-radius); }
.shadow-jh    { box-shadow: var(--jh-shadow); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-jh-primary {
  background: var(--jh-orange);
  color: #fff;
  border: none;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-block;
}
.btn-jh-primary:hover {
  background: #e05520;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,.4);
}
.btn-jh-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: .7rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all .2s;
  display: inline-block;
}
.btn-jh-secondary:hover {
  background: #fff;
  color: var(--jh-purple);
}
.btn-jh-outline {
  background: transparent;
  color: var(--jh-purple);
  border: 2px solid var(--jh-purple);
  padding: .65rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  transition: all .2s;
  display: inline-block;
}
.btn-jh-outline:hover {
  background: var(--jh-purple);
  color: #fff;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.jh-navbar {
  background: var(--jh-dark);
  height: var(--nav-height);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.jh-navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff !important;
  letter-spacing: -0.5px;
}
.jh-navbar .navbar-brand span { color: var(--jh-orange); }
.jh-navbar .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 600;
  padding: .5rem 1rem !important;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.jh-navbar .nav-link:hover,
.jh-navbar .nav-link.active {
  color: #fff !important;
  background: rgba(255,107,53,.15);
}
.jh-navbar .btn-book-nav {
  background: var(--jh-orange);
  color: #fff !important;
  padding: .45rem 1.4rem !important;
  border-radius: 50px;
  font-weight: 700;
}
.jh-navbar .btn-book-nav:hover { background: #e05520; }
.jh-navbar .navbar-toggler { border: 1px solid rgba(255,255,255,.3); }
/* ── Mobile dropdown solid background ── */
@media (max-width: 991.98px) {
  .jh-navbar .navbar-collapse {
    background: var(--jh-dark);
    margin: .5rem -1rem 0;
    padding: .75rem 1.25rem 1.25rem;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 10px 32px rgba(0,0,0,.4);
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .jh-navbar .nav-link { padding: .6rem .75rem !important; border-radius: 8px; }
  .jh-navbar .btn-book-nav { margin-top: .5rem; display: block; text-align: center; }
}
.jh-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Hero Section ───────────────────────────────────────────── */
.jh-hero {
  background: linear-gradient(135deg, var(--jh-dark) 0%, #2d1b69 50%, #1a1a2e 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.jh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.jh-hero .hero-badge {
  display: inline-block;
  background: rgba(255,215,0,.15);
  border: 1px solid rgba(255,215,0,.4);
  color: var(--jh-yellow);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 1.25rem;
}
.jh-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.jh-hero h1 span { color: var(--jh-orange); }
.jh-hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2rem;
}
.jh-hero .hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}
.jh-hero .hero-stats .stat { text-align: center; }
.jh-hero .hero-stats .stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--jh-yellow);
  line-height: 1;
}
.jh-hero .hero-stats .stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.jh-hero .hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jh-hero .hero-bubble {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jh-orange), var(--jh-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: 0 20px 60px rgba(255,107,53,.35);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}

/* ── Section Base ───────────────────────────────────────────── */
.jh-section { padding: 5rem 0; }
.jh-section-sm { padding: 3rem 0; }
.section-heading { text-align: center; margin-bottom: 3rem; }
.section-heading .badge-label {
  display: inline-block;
  background: rgba(123,47,190,.1);
  color: var(--jh-purple);
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-heading h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--jh-dark);
  margin-bottom: .75rem;
}
.section-heading p {
  color: var(--jh-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--jh-orange), var(--jh-purple));
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ── Service Cards ──────────────────────────────────────────── */
.service-card {
  border: none;
  border-radius: var(--jh-radius);
  box-shadow: var(--jh-shadow);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
  height: 100%;
  background: #fff;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--jh-shadow-lg);
}
.service-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.service-card .card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--jh-orange);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 50px;
}
.service-card .price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--jh-orange);
}
.service-card .price span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--jh-muted);
}
.service-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.service-card .feature-list li {
  padding: .3rem 0;
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.service-card .feature-list li::before {
  content: '✓';
  color: var(--jh-orange);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.service-card.featured {
  border: 2px solid var(--jh-orange);
  background: linear-gradient(180deg, #fff9f0 0%, #fff 100%);
}

/* ── Why Choose Us ─────────────────────────────────────────── */
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--jh-radius);
  transition: box-shadow .2s;
}
.why-card:hover { box-shadow: var(--jh-shadow); }
.why-card .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jh-orange), var(--jh-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 1.25rem;
  color: #fff;
}
.why-card h5 { font-weight: 800; margin-bottom: .5rem; }
.why-card p { color: var(--jh-muted); font-size: .94rem; }

/* ── Process Steps ─────────────────────────────────────────── */
.process-step {
  text-align: center;
  position: relative;
}
.process-step .step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--jh-orange);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(255,107,53,.35);
}
.process-step h6 { font-weight: 800; margin-bottom: .4rem; }
.process-step p { font-size: .9rem; color: var(--jh-muted); }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--jh-radius);
  box-shadow: var(--jh-shadow);
  padding: 1.75rem;
  height: 100%;
}
.testimonial-card .stars { color: var(--jh-yellow); font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial-card .quote-text {
  color: var(--jh-text);
  font-style: italic;
  margin-bottom: 1.25rem;
  font-size: .97rem;
  line-height: 1.7;
}
.testimonial-card .reviewer { display: flex; align-items: center; gap: .75rem; }
.testimonial-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jh-orange), var(--jh-purple));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-card .reviewer-name { font-weight: 700; font-size: .95rem; }
.testimonial-card .reviewer-loc  { font-size: .8rem; color: var(--jh-muted); }

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--jh-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: linear-gradient(135deg, var(--jh-orange), var(--jh-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  cursor: pointer;
  transition: transform .25s;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.gallery-item:hover img { transform: scale(1.07); }

/* ── Booking Form ───────────────────────────────────────────── */
.booking-section { background: var(--jh-light); }
.booking-form-card {
  background: #fff;
  border-radius: var(--jh-radius);
  box-shadow: var(--jh-shadow-lg);
  padding: 2.5rem;
}
.booking-form-card .form-label { font-weight: 600; font-size: .9rem; color: var(--jh-dark); }
.booking-form-card .form-control,
.booking-form-card .form-select {
  border: 1.5px solid var(--jh-border);
  border-radius: 8px;
  padding: .6rem .9rem;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.booking-form-card .form-control:focus,
.booking-form-card .form-select:focus {
  border-color: var(--jh-orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,.12);
  outline: none;
}
.price-preview {
  background: linear-gradient(135deg, var(--jh-dark), #2d1b69);
  border-radius: var(--jh-radius);
  padding: 1.5rem;
  color: #fff;
}
.price-preview .total-amount { font-size: 2rem; font-weight: 900; color: var(--jh-yellow); }
.price-preview .deposit-info { font-size: .85rem; color: rgba(255,255,255,.7); }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--jh-orange) 0%, var(--jh-purple) 100%);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}
.cta-section h2 { color: #fff; font-size: clamp(1.8rem,3vw,2.8rem); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── Footer ─────────────────────────────────────────────────── */
.jh-footer {
  background: var(--jh-dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 1.5rem;
}
.jh-footer .footer-brand { font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: .5rem; }
.jh-footer .footer-brand span { color: var(--jh-orange); }
.jh-footer .footer-tagline { font-size: .9rem; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }
.jh-footer h6 { color: #fff; font-weight: 700; margin-bottom: 1rem; font-size: .95rem; text-transform: uppercase; letter-spacing: .5px; }
.jh-footer a { color: rgba(255,255,255,.65); font-size: .92rem; }
.jh-footer a:hover { color: var(--jh-orange); }
.jh-footer ul { list-style: none; padding: 0; }
.jh-footer ul li { margin-bottom: .5rem; }
.jh-footer .social-links { display: flex; gap: .75rem; margin-top: 1rem; }
.jh-footer .social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background .2s, color .2s;
}
.jh-footer .social-links a:hover { background: var(--jh-orange); color: #fff; }
.jh-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}
.jh-footer .whatsapp-btn {
  background: #25D366;
  color: #fff !important;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  transition: background .2s;
}
.jh-footer .whatsapp-btn:hover { background: #1ebe57; }

/* ── Back-to-top centering fix ─────────────────────────────── */
#back-to-top {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1;
}
#back-to-top[style*="display: none"],
#back-to-top[style*="display:none"] {
  display: none !important;
}

/* ── Trust Strip (replaces plain features bar) ──────────────── */
.trust-strip {
  background: linear-gradient(135deg, #1A1A2E 0%, #2d1b69 50%, #1A1A2E 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-strip-inner {
  display: flex;
  align-items: stretch;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.5rem 1.35rem;
  transition: background .2s;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.06);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,.04); }
.trust-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform .22s;
}
.trust-item:hover .trust-icon { transform: scale(1.12) rotate(-3deg); }
.trust-text strong {
  display: block;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.3;
}
.trust-text span {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .77rem;
  margin-top: 3px;
}
@media (max-width: 767px) {
  .trust-strip-inner { flex-wrap: wrap; }
  .trust-item {
    flex: 0 0 50%;
    padding: 1.1rem 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.06); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 420px) {
  .trust-item { flex: 0 0 100%; border-right: none; }
}

/* ── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
  color: #fff;}

/* ══ WhatsApp Widget v3 ═══════════════════════════════════════ */
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* FAB + rings */
.wa-fab-wrap {
  position: relative;
  width: 64px; height: 64px;
  flex-shrink: 0;
}
.wa-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.3);
  animation: wa-ring-anim 2.6s ease-out infinite;
}
.wa-ring:nth-child(2) { animation-delay: 1.3s; }
@keyframes wa-ring-anim {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.85); opacity: 0; }
}
.wa-fab {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2ddb6e 0%, #25D366 60%, #1aaf55 100%);
  border: none;
  color: #fff;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(37,211,102,.55), 0 2px 8px rgba(0,0,0,.15);
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s;
  outline: none;
  z-index: 1;
}
.wa-fab:hover  { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,.65); }
.wa-fab:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.wa-fab-icon-close { display: none; font-size: 1.5rem; }

.wa-notif-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: #FF6B35;
  color: #fff;
  font-size: .62rem; font-weight: 800;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2.5px solid #fff;
  pointer-events: none;
  z-index: 2;
}

/* Tooltip label */
.wa-label {
  position: absolute;
  bottom: 18px; right: 78px;
  background: #fff;
  color: #1A1A2E;
  font-size: .82rem; font-weight: 700;
  padding: .42rem 1rem;
  border-radius: 24px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}
.wa-label::after {
  content: '';
  position: absolute;
  right: -8px; top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right: none;
  border-left-color: #fff;
}
.wa-label--show { opacity: 1; transform: translateX(0); }

/* Popup */
.wa-popup {
  position: absolute;
  bottom: 80px; right: 0;
  width: 340px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.22), 0 4px 16px rgba(0,0,0,.1);
  opacity: 0;
  transform: scale(.9) translateY(20px);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .3s cubic-bezier(.4,0,.2,1), transform .32s cubic-bezier(.34,1.56,.64,1);
  will-change: transform, opacity;
}
.wa-popup--open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

/* Header */
.wa-popup-header {
  background: linear-gradient(135deg, #064e45 0%, #075E54 40%, #0a7a6c 100%);
  padding: 18px 16px 20px;
  position: relative;
  overflow: hidden;
}
.wa-popup-header::before {
  content: '';
  position: absolute;
  top: -30px; right: -20px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.wa-popup-header::after {
  content: '';
  position: absolute;
  bottom: -35px; left: 20px;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.wa-header-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 12px;
}
.wa-avatar-wrap { position: relative; flex-shrink: 0; }
.wa-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35, #7B2FBE);
  color: #fff;
  font-size: .82rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid rgba(255,255,255,.3);
  letter-spacing: .5px;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.wa-online-dot {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #4cff72;
  border: 2.5px solid #075E54;
  animation: wa-blink 2s ease-in-out infinite;
}
@keyframes wa-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(76,255,114,.8); }
  50%       { opacity: .7; box-shadow: none; }
}
.wa-header-info { flex: 1; min-width: 0; }
.wa-header-name  { color: #fff; font-weight: 800; font-size: 1rem; line-height: 1.2; }
.wa-header-role  { color: rgba(255,255,255,.7); font-size: .73rem; }
.wa-header-status {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.9); font-size: .72rem; font-weight: 600;
  margin-top: 4px;
}
.wa-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4cff72;
  box-shadow: 0 0 6px rgba(76,255,114,.8);
}
.wa-close-btn {
  background: rgba(255,255,255,.15);
  border: none; color: #fff;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s;
  flex-shrink: 0;
  line-height: 1;
}
.wa-close-btn:hover { background: rgba(255,255,255,.28); }

/* Chat body */
.wa-popup-body {
  background: #e8f5e4;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,.025) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 16px;
}
.wa-date-chip {
  text-align: center;
  font-size: .69rem; font-weight: 600;
  color: rgba(0,0,0,.4);
  background: rgba(255,255,255,.8);
  padding: .22rem .8rem;
  border-radius: 8px;
  display: block;
  width: fit-content;
  margin: 0 auto 12px;
}
.wa-bubble {
  background: #fff;
  color: #111;
  font-size: .875rem;
  line-height: 1.6;
  padding: 10px 14px 6px;
  border-radius: 2px 14px 14px 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
  max-width: 92%;
  position: relative;
}
.wa-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border: 9px solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
  border-left: none;
}
.wa-bubble-time {
  display: flex; align-items: center; gap: 4px;
  font-size: .67rem; color: rgba(0,0,0,.4);
  margin-top: 5px; justify-content: flex-end;
}

/* Input area */
.wa-popup-footer {
  background: #f0f2f5;
  padding: 12px 14px 10px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.wa-input-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.wa-input-wrap {
  flex: 1;
  background: #fff;
  border-radius: 24px;
  padding: 0 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
  display: flex; align-items: center;
}
.wa-input {
  border: none; outline: none;
  background: transparent;
  font-size: .875rem; color: #333;
  padding: 10px 0; width: 100%;
}
.wa-input::placeholder { color: #aaa; }
.wa-send-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2ddb6e, #1aaf55);
  border: none; color: #fff;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37,211,102,.45);
  transition: transform .18s, box-shadow .18s;
  flex-shrink: 0;
}
.wa-send-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.6); }
.wa-disclaimer {
  text-align: center;
  font-size: .68rem; color: #999;
  margin: 0;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}

@media (max-width: 420px) {
  .wa-popup { width: calc(100vw - 48px); right: 0; bottom: 82px; }
}

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--jh-dark) 0%, #2d1b69 100%);
  padding: 4.5rem 0;
  color: #fff;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem,3.5vw,2.8rem); margin-bottom: .6rem; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto; }
.page-hero .breadcrumb { justify-content: center; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.6); font-size: .85rem; }
.page-hero .breadcrumb-item.active { color: var(--jh-orange); }

/* ── Contact ────────────────────────────────────────────────── */
.contact-info-card {
  background: linear-gradient(135deg, var(--jh-dark), #2d1b69);
  border-radius: var(--jh-radius);
  padding: 2.5rem;
  color: #fff;
  height: 100%;
}
.contact-info-card h4 { color: #fff; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-item .ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item .ci-label { font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: .1rem; }
.contact-item .ci-value { color: #fff; font-weight: 600; font-size: .95rem; }

/* ── Alert ──────────────────────────────────────────────────── */
.alert { border-radius: var(--jh-radius); border: none; }

/* ── Animations ─────────────────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s, transform .6s;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .jh-hero { min-height: auto; padding: 4rem 0; }
  .jh-hero .hero-visual { display: none; }
  .jh-hero .hero-stats { gap: 1.25rem; }
  .booking-form-card { padding: 1.5rem; }
  .jh-section { padding: 3.5rem 0; }
  .jh-footer { padding: 3rem 0 1.25rem; }
}
