/* ════════════════════════════════════════════
   SPARKLY TOUCH — Custom CSS
   Palette: Navy #1B3A6B | Sky #29A8D4 | Green #7DC443
   Font: Montserrat / Inter
   ════════════════════════════════════════════ */

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

:root {
  --navy:   #1B3A6B;
  --sky:    #29A8D4;
  --green:  #7DC443;
  --light:  #F0F8FF;
  --white:  #FFFFFF;
  --gray:   #64748B;
  --border: #E2EDF5;
  --shadow: 0 4px 24px rgba(27,58,107,.10);
  --shadow-lg: 0 12px 48px rgba(27,58,107,.18);
  --radius: 16px;
  --radius-sm: 10px;
  --trans: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ════════════════════════════════════════════
   FLOATING BUTTONS STACK
   ════════════════════════════════════════════ */
.float-stack {
  position: fixed; bottom: 96px; right: 28px; z-index: 200;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  pointer-events: none;
}
.float-btn { pointer-events: auto; }
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--trans); border: none;
}
.wa-btn {
  background: #25D366; color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none;
}
.wa-btn:hover { background: #1DA851; transform: scale(1.1); }
.chat-btn {
  background: linear-gradient(135deg, var(--sky), var(--navy)); color: white;
  box-shadow: 0 4px 20px rgba(41,168,212,.4);
}
.chat-btn:hover { transform: scale(1.1); }

/* Chat panel */
.chat-panel {
  position: fixed; bottom: 164px; right: 28px; z-index: 201;
  width: 320px; background: white; border-radius: 20px;
  box-shadow: 0 12px 48px rgba(27,58,107,.18); border: 1.5px solid var(--border);
  display: none; flex-direction: column; overflow: hidden;
  transform: translateY(16px) scale(.97); opacity: 0;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}
.chat-panel.open {
  display: flex; transform: translateY(0) scale(1); opacity: 1;
}
.chat-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--navy), #0F2548);
  color: white;
}
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-header-info img { filter: brightness(0) invert(1); }
.chat-header-info strong { display: block; font-weight: 700; font-size: .9rem; }
.chat-online { font-size: .72rem; color: #7DC443; font-weight: 600; }
.chat-close { color: rgba(255,255,255,.7); font-size: 1rem; transition: color var(--trans); }
.chat-close:hover { color: white; }

.chat-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-bubble {
  padding: 12px 14px; border-radius: 14px; font-size: .85rem; line-height: 1.5;
  max-width: 90%;
}
.chat-bubble.bot {
  background: var(--light); color: var(--navy); border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-options { display: flex; flex-direction: column; gap: 6px; }
.chat-opt {
  background: white; border: 1.5px solid var(--border); color: var(--navy);
  padding: 9px 13px; border-radius: 50px; font-size: .8rem; font-weight: 500;
  text-align: left; cursor: pointer; transition: var(--trans);
}
.chat-opt:hover { border-color: var(--sky); background: rgba(41,168,212,.06); color: var(--sky); }
.chat-answer { display: none; }

.chat-wa-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; background: #F0FBF4; color: #1DA851;
  font-size: .8rem; font-weight: 600;
  border-top: 1px solid var(--border); text-decoration: none;
  transition: background var(--trans);
}
.chat-wa-link:hover { background: #DCF8E8; }

/* Lang toggle */
.lang-toggle {
  background: rgba(41,168,212,.12); color: var(--sky);
  border: 1.5px solid rgba(41,168,212,.3);
  padding: 6px 14px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .78rem;
  cursor: pointer; transition: var(--trans); letter-spacing: .05em;
}
.lang-toggle:hover { background: var(--sky); color: white; }

/* WhatsApp Widget */
.wa-widget { position:fixed; bottom:24px; right:24px; z-index:9000; display:flex; flex-direction:column; align-items:flex-end; gap:12px; pointer-events:none; }
.wa-fab { width:60px; height:60px; background:#25d366; border:none; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 6px 28px rgba(37,211,102,0.5); transition:transform 0.2s,box-shadow 0.2s; position:relative; flex-shrink:0; pointer-events:auto; }
.wa-fab:hover { transform:scale(1.08); box-shadow:0 10px 36px rgba(37,211,102,0.6); }
.wa-fab-icon { transition:opacity 0.2s; }
.wa-badge { position:absolute; top:-2px; right:-2px; width:20px; height:20px; background:#ef4444; color:#fff; border-radius:50%; font-size:.65rem; font-weight:800; display:flex; align-items:center; justify-content:center; animation:pulse-badge 2s ease-in-out infinite; }
@keyframes pulse-badge { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }
.wa-chat { width:320px; background:#fff; border-radius:20px; overflow:hidden; box-shadow:0 12px 48px rgba(0,0,0,0.2); transform:translateY(20px) scale(0.95); opacity:0; pointer-events:none; transition:transform 0.3s cubic-bezier(.34,1.56,.64,1),opacity 0.25s; transform-origin:bottom right; }
.wa-chat-open { transform:translateY(0) scale(1); opacity:1; pointer-events:auto; }
.wa-chat-header { background:#075e54; padding:14px 16px; display:flex; align-items:center; gap:10px; }
.wa-avatar { width:44px; height:44px; background:#25d366; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.65rem; font-weight:800; color:#fff; flex-shrink:0; overflow:hidden; }
.wa-info { flex:1; }
.wa-name { color:#fff; font-weight:700; font-size:.9rem; }
.wa-status { color:rgba(255,255,255,.75); font-size:.72rem; display:flex; align-items:center; gap:5px; margin-top:2px; }
.wa-dot { width:7px; height:7px; background:#25d366; border-radius:50%; display:inline-block; animation:blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.wa-close-btn { background:rgba(255,255,255,.15); border:none; color:#fff; width:28px; height:28px; border-radius:50%; font-size:.85rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background 0.2s; flex-shrink:0; }
.wa-close-btn:hover { background:rgba(255,255,255,.3); }
.wa-chat-body { background:#ece5dd; padding:16px 12px; min-height:130px; max-height:190px; overflow-y:auto; }
.wa-messages { display:flex; flex-direction:column; gap:8px; }
.wa-msg { max-width:82%; padding:8px 12px; border-radius:10px; font-size:.87rem; line-height:1.5; animation:msgIn 0.3s ease; word-break:break-word; }
@keyframes msgIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }
.wa-msg-in { background:#fff; color:#1a1a1a; border-radius:0 10px 10px 10px; align-self:flex-start; box-shadow:0 1px 2px rgba(0,0,0,0.1); }
.wa-typing { background:#fff; border-radius:0 10px 10px 10px; align-self:flex-start; display:flex; gap:4px; padding:12px 14px; box-shadow:0 1px 2px rgba(0,0,0,0.1); }
.wa-typing span { width:7px; height:7px; background:#aaa; border-radius:50%; animation:typing-dot 1.2s ease-in-out infinite; }
.wa-typing span:nth-child(2){animation-delay:0.2s} .wa-typing span:nth-child(3){animation-delay:0.4s}
@keyframes typing-dot { 0%,80%,100%{transform:translateY(0);opacity:.4} 40%{transform:translateY(-6px);opacity:1} }
.wa-chat-footer { background:#f0f0f0; padding:12px; }
.wa-open-btn { display:flex; align-items:center; justify-content:center; gap:8px; background:#25d366; color:#fff!important; text-decoration:none; border-radius:50px; padding:10px 16px; font-size:.88rem; font-weight:700; transition:background 0.2s,transform 0.15s; width:100%; }
.wa-open-btn:hover { background:#1ebe5d; transform:translateY(-1px); }
@media(max-width:380px){ .wa-chat{width:calc(100vw - 24px)} .wa-widget{right:12px;bottom:16px} }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 3px; }

/* ════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.gradient-text {
  background: linear-gradient(135deg, var(--sky) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(41,168,212,.12);
  color: var(--sky);
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag.light { background: rgba(255,255,255,.15); color: white; }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub { color: var(--gray); max-width: 560px; margin: 0 auto 48px; text-align: center; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--sky) 0%, var(--navy) 100%);
  color: white; padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: var(--trans); box-shadow: 0 4px 20px rgba(41,168,212,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(41,168,212,.45); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--border); color: var(--navy);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  transition: var(--trans);
}
.btn-ghost:hover { border-color: var(--sky); color: var(--sky); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(27,58,107,.08);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px; height: 72px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  display: flex; gap: 32px; list-style: none; margin: 0; padding: 0;
  margin-left: auto;
}
.nav-links a {
  font-weight: 500; font-size: .9rem; color: var(--navy);
  transition: color var(--trans); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px;
  background: var(--sky); transition: width var(--trans);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--sky); }
.nav-links a.active { color: var(--sky); }
.nav-links a.active::after { width: 100%; }
.nav-links a.nav-metoo { color: #EC4899 !important; font-weight: 700; }
.nav-links a.nav-metoo:hover { color: #be185d !important; }
.nav-links a.nav-metoo::after { background: #EC4899; }

.btn-book {
  display: flex; align-items: center; gap: 8px;
  background: var(--navy); color: white;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 600; font-size: .875rem;
  transition: var(--trans);
}
.btn-book:hover { background: var(--sky); transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--trans); }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  min-height: 100vh; padding-top: 80px;
  background: linear-gradient(160deg, #EAF6FE 0%, var(--white) 50%, #F0FBE8 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

/* Floating bubbles */
.bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(41,168,212,.18), rgba(41,168,212,.04));
  animation: floatBubble linear infinite;
}
.b1 { width: 320px; height: 320px; top: 5%; right: 5%; animation-duration: 18s; }
.b2 { width: 180px; height: 180px; top: 60%; right: 15%; animation-duration: 14s; animation-delay: -4s; }
.b3 { width: 120px; height: 120px; top: 25%; left: 8%; animation-duration: 12s; animation-delay: -8s; }
.b4 { width: 240px; height: 240px; bottom: 10%; left: 20%; animation-duration: 20s; animation-delay: -2s; opacity: .5; }
.b5 { width: 80px; height: 80px; top: 45%; right: 35%; animation-duration: 10s; animation-delay: -6s; }

@keyframes floatBubble {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(12px) rotate(-3deg); }
}

.sparkle {
  position: absolute; color: var(--sky); font-size: 1.2rem;
  animation: sparkleAnim 3s ease-in-out infinite;
}
.s1 { top: 20%; left: 15%; animation-delay: 0s; }
.s2 { top: 35%; right: 25%; animation-delay: .7s; }
.s3 { bottom: 30%; left: 30%; animation-delay: 1.4s; }
.s4 { top: 65%; right: 40%; animation-delay: 2.1s; }

@keyframes sparkleAnim {
  0%, 100% { opacity: .3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

.hero-container {
  flex: 1; max-width: 1200px; width: 100%; margin: 0 auto; padding: 60px 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(41,168,212,.12); color: var(--sky);
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub { color: var(--gray); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 16px; }
.trust-avatars { display: flex; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid white; margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #60A5FA, #3B82F6); }
.av2 { background: linear-gradient(135deg, #34D399, #059669); }
.av3 { background: linear-gradient(135deg, #F472B6, #EC4899); }
.av4 { background: linear-gradient(135deg, #FBBF24, #D97706); }
.stars { color: #F59E0B; font-size: 1rem; }
.trust-text span { font-size: .85rem; color: var(--gray); display: block; }

/* Hero visual card */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  width: 100%; max-width: 480px;
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card-inner { padding: 28px; }
.hero-3d-house {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, #EAF6FE 0%, #F0FBE8 100%);
  border-radius: 16px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-card-badge {
  display: flex; align-items: center; gap: 10px;
  background: #F0FBE8; color: var(--navy);
  padding: 10px 16px; border-radius: 10px; margin-bottom: 16px;
  font-size: .9rem;
}
.hero-card-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hstat { text-align: center; padding: 12px; background: var(--light); border-radius: 10px; }
.hstat strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.hstat span { font-size: .75rem; color: var(--gray); }

.floating { animation: floating 4s ease-in-out infinite; }
@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-wave { margin-top: auto; line-height: 0; }
.hero-wave svg { width: 100%; height: 60px; }

/* ════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════ */
.stats-bar { background: var(--light); padding: 40px 0; }
.stats-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; padding: 0 48px;
}
.stat-num {
  font-family: 'Montserrat', sans-serif; font-size: 2.4rem; font-weight: 900;
  color: var(--navy); line-height: 1;
}
.stat-suffix { font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--sky); }
.stat-label { font-size: .8rem; color: var(--gray); font-weight: 500; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════ */
.how-it-works { text-align: center; }
.steps-grid {
  display: flex; align-items: flex-start; gap: 0; margin-top: 56px;
}
.step-card {
  flex: 1; background: white; border-radius: var(--radius);
  padding: 36px 28px; box-shadow: var(--shadow);
  position: relative; transition: var(--trans);
  border: 1.5px solid var(--border);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
  font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900;
  color: rgba(41,168,212,.15); line-height: 1; margin-bottom: 16px;
}
.step-icon {
  width: 64px; height: 64px; background: var(--light);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--sky);
}
.step-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.step-card p { color: var(--gray); font-size: .9rem; line-height: 1.6; }
.step-connector {
  width: 60px; flex-shrink: 0; height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--navy));
  margin-top: 80px;
  opacity: .3;
}

/* ════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════ */
.services { background: var(--light); text-align: center; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.service-card {
  background: white; border-radius: var(--radius); padding: 32px 24px;
  box-shadow: var(--shadow); text-align: left;
  border: 1.5px solid var(--border); transition: var(--trans);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.si-blue { background: rgba(41,168,212,.12); color: var(--sky); }
.si-navy { background: rgba(27,58,107,.10); color: var(--navy); }
.si-green { background: rgba(125,196,67,.12); color: var(--green); }
.service-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: .875rem; line-height: 1.6; flex: 1; }
.service-price { font-size: .85rem; color: var(--navy); margin-top: 16px; }
.service-price strong { font-size: 1.1rem; color: var(--sky); }
.service-link {
  display: inline-block; margin-top: 12px; font-weight: 600; font-size: .85rem;
  color: var(--sky); transition: var(--trans);
}
.service-link:hover { color: var(--navy); }

/* ════════════════════════════════════════════
   WHY US
   ════════════════════════════════════════════ */
.why-us { background: white; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(41,168,212,.10); color: var(--sky);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.why-item h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 4px; font-size: .95rem; }
.why-item p { color: var(--gray); font-size: .875rem; }

.why-card {
  background: linear-gradient(160deg, var(--navy) 0%, #0F2548 100%);
  border-radius: 24px; padding: 32px;
  box-shadow: var(--shadow-lg);
}
.why-card-header { margin-bottom: 24px; }
.why-card-header img { filter: brightness(0) invert(1); }
.why-badges { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.badge-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.85); font-size: .9rem;
  background: rgba(255,255,255,.07); padding: 12px 16px; border-radius: 10px;
}
.stars-big { color: #F59E0B; font-size: 1.4rem; }
.why-card-footer { text-align: center; color: rgba(255,255,255,.7); font-size: .85rem; }
.why-card-footer .stars-big { display: block; margin-bottom: 6px; }

/* ════════════════════════════════════════════
   BOOKING SECTION
   ════════════════════════════════════════════ */
.booking-section { background: var(--light); text-align: center; }
.booking-wrapper {
  display: grid; grid-template-columns: 1fr 300px; gap: 28px;
  margin-top: 48px; align-items: start;
}

/* Progress */
.booking-progress {
  display: flex; align-items: center; margin-bottom: 28px;
  grid-column: 1 / -1;
}
.prog-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 1; cursor: default;
}
.prog-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--border); color: var(--gray);
  font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.prog-step span { font-size: .75rem; color: var(--gray); font-weight: 500; transition: color var(--trans); }
.prog-step.active .prog-dot { background: var(--sky); color: white; box-shadow: 0 0 0 4px rgba(41,168,212,.2); }
.prog-step.active span { color: var(--sky); font-weight: 600; }
.prog-step.done .prog-dot { background: var(--green); color: white; }
.prog-line { flex: 1; height: 2px; background: var(--border); max-width: 80px; }

/* Booking card */
.booking-card {
  background: white; border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow); border: 1.5px solid var(--border);
}
.book-step { display: none; }
.book-step.active { display: block; }
.step-title {
  font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 700;
  margin-bottom: 8px; text-align: left;
}
.step-sub { color: var(--gray); font-size: .875rem; margin-bottom: 24px; text-align: left; }

/* Property grid */
.prop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.prop-option {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 20px 12px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--trans); color: var(--gray);
}
.prop-option:hover { border-color: var(--sky); color: var(--sky); background: rgba(41,168,212,.05); }
.prop-option.selected { border-color: var(--sky); color: var(--sky); background: rgba(41,168,212,.08); }
.prop-option span { font-size: .85rem; font-weight: 600; }

.condition-toggle {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; background: var(--light); border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 500;
}
.toggle-group { display: flex; gap: 8px; }
.toggle-btn {
  padding: 7px 16px; border-radius: 50px; font-size: .8rem; font-weight: 600;
  border: 2px solid var(--border); color: var(--gray); transition: var(--trans);
}
.toggle-btn.active { border-color: var(--sky); background: var(--sky); color: white; }

/* Room layout */
.room-layout { display: grid; grid-template-columns: 1fr 220px; gap: 20px; margin-bottom: 24px; }
.room-canvas-3d {
  position: relative; width: 100%; height: 340px;
  border-radius: 12px; border: 2px solid var(--border);
  overflow: hidden; background: #F0F8FF;
}
.room-canvas-3d.cards-mode {
  height: auto; overflow: visible; background: transparent;
  border: none; padding: 0;
}
.room-canvas-3d canvas { display: block; width: 100% !important; height: 100% !important; }

/* View toggle button */
.view-toggle-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 1.5px solid var(--sky);
  color: var(--sky); border-radius: 50px; padding: 6px 14px;
  font-size: .78rem; font-weight: 600; cursor: pointer;
  margin-bottom: 12px; transition: all .2s; font-family: inherit;
}
.view-toggle-btn:hover { background: var(--sky); color: #fff; }

/* Card tile grid (default room selector) */
.room-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
  gap: 10px;
}
.room-card-tile {
  background: #fff; border: 2px solid var(--border);
  border-radius: 14px; padding: 16px 14px;
  cursor: pointer; transition: all .25s;
  display: flex; flex-direction: column; gap: 5px;
  color: var(--navy); user-select: none;
}
.room-card-tile:hover {
  border-color: var(--sky); transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(41,168,212,.15);
}
.room-card-tile.sel {
  background: var(--sky); color: #fff;
  border-color: var(--navy); transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(41,168,212,.35);
}
.rct-icon { opacity: .65; line-height: 1; }
.room-card-tile.sel .rct-icon { opacity: .85; }
.rct-name { font-size: .85rem; font-weight: 700; line-height: 1.2; }
.rct-price { font-size: .78rem; font-weight: 600; color: var(--sky); }
.room-card-tile.sel .rct-price { color: rgba(255,255,255,.85); }
.labels-3d { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.lbl3d {
  position: absolute; transform: translate(-50%,-50%); text-align: center;
  pointer-events: none; transition: color .2s;
}
.lbl3d-name { font: 600 10px Inter,sans-serif; color: inherit; white-space: nowrap; }
.lbl3d-price { font: 500 9px Inter,sans-serif; color: #64748B; }
.lbl3d.selected .lbl3d-name { color: white; font-weight: 700; }
.lbl3d.selected .lbl3d-price { color: rgba(255,255,255,.85); }
.room-list { display: flex; flex-direction: column; gap: 8px; }
.room-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; transition: var(--trans);
}
.room-item:hover { border-color: var(--sky); background: rgba(41,168,212,.04); }
.room-item.selected { border-color: var(--green); background: rgba(125,196,67,.08); }
.room-check {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.room-item.selected .room-check { background: var(--green); border-color: var(--green); }
.room-name { font-size: .85rem; font-weight: 500; flex: 1; }
.room-price { font-size: .8rem; color: var(--sky); font-weight: 600; }

/* Extras */
.extras-section, .freq-section { margin-bottom: 28px; }
.extras-section h4, .freq-section h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 16px; text-align: left;
}
.extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.extra-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 10px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; transition: var(--trans);
  position: relative;
}
.extra-item:hover { border-color: var(--sky); }
.extra-item.selected { border-color: var(--green); background: rgba(125,196,67,.08); }
.extra-icon { font-size: 1.6rem; }
.extra-item span { font-size: .8rem; font-weight: 500; text-align: center; }
.extra-price { color: var(--sky); font-size: .8rem; font-weight: 600; }
.extra-check {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--border); position: absolute; top: 8px; right: 8px;
  transition: var(--trans);
}
.extra-item.selected .extra-check { background: var(--green); border-color: var(--green); }

/* Frequency */
.freq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.freq-option {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 10px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; transition: var(--trans);
}
.freq-option:hover { border-color: var(--sky); }
.freq-option.active { border-color: var(--sky); background: rgba(41,168,212,.08); }
.freq-option strong { font-size: .875rem; }
.disc-badge {
  background: rgba(125,196,67,.15); color: #4CAF50;
  padding: 2px 8px; border-radius: 100px; font-size: .75rem; font-weight: 700;
}

/* Schedule form */
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: .9rem; color: var(--navy);
  transition: border-color var(--trans);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--sky);
}

/* Summary */
.summary-card {
  background: var(--light); border-radius: var(--radius-sm); padding: 24px; margin-bottom: 20px;
}
.summary-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.pb-row { display: flex; justify-content: space-between; font-size: .875rem; }
.summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 2px solid var(--border);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem;
}
.summary-total strong { font-size: 1.6rem; color: var(--sky); }
.summary-note { font-size: .8rem; color: var(--gray); text-align: left; margin-bottom: 24px; }

/* Nav buttons */
.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }
.btn-next {
  background: var(--sky); color: white; padding: 12px 24px;
  border-radius: 50px; font-weight: 600; font-size: .9rem; transition: var(--trans);
}
.btn-next:hover { background: var(--navy); transform: translateX(2px); }
.btn-back {
  background: none; color: var(--gray); padding: 12px 0;
  font-weight: 500; font-size: .9rem; transition: color var(--trans);
}
.btn-back:hover { color: var(--navy); }
.btn-submit {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--green) 0%, #5DB82A 100%);
  color: white; padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: .95rem; transition: var(--trans);
  box-shadow: 0 4px 20px rgba(125,196,67,.35);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(125,196,67,.45); }

/* Success */
.success-screen { text-align: center; padding: 40px 20px; }
.success-icon { margin-bottom: 24px; }
.success-screen h3 {
  font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 12px;
}
.success-screen p { color: var(--gray); margin-bottom: 24px; }
.success-details {
  background: var(--light); border-radius: var(--radius-sm); padding: 16px;
  text-align: left; font-size: .875rem; margin-bottom: 28px;
}

/* Price sidebar */
.price-sidebar { position: sticky; top: 90px; }
.price-box {
  background: white; border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); border: 1.5px solid var(--border); margin-bottom: 16px;
}
.price-label { font-size: .8rem; color: var(--gray); font-weight: 500; margin-bottom: 8px; }
.price-amount { font-family: 'Montserrat', sans-serif; font-size: 2.4rem; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.price-breakdown { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.pb-row { display: flex; justify-content: space-between; font-size: .8rem; color: var(--gray); }
.price-note { font-size: .75rem; color: var(--gray); font-style: italic; }

.trust-box { background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border: 1.5px solid var(--border); }
.trust-row { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--gray); margin-bottom: 10px; }
.trust-row:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════
   AREAS
   ════════════════════════════════════════════ */
.areas { text-align: center; }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 40px 0 24px; }
.area-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 24px 16px; transition: var(--trans);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.area-card:hover { border-color: var(--sky); transform: translateY(-3px); box-shadow: var(--shadow); }
.area-pin { font-size: 1.5rem; }
.area-card strong { font-family: 'Montserrat', sans-serif; font-weight: 700; }
.area-card span { font-size: .78rem; color: var(--green); font-weight: 600; }
.areas-note { color: var(--gray); font-size: .9rem; }
.areas-note a { color: var(--sky); font-weight: 600; }

/* ════════════════════════════════════════════
   HIRING
   ════════════════════════════════════════════ */
.hiring { background: linear-gradient(160deg, var(--navy) 0%, #0F2548 100%); color: white; }
.hiring-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hiring-text h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; }
.gradient-text-light {
  background: linear-gradient(135deg, var(--sky), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hiring-text p { color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 24px; }
.hiring-perks { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.hiring-perks li { color: rgba(255,255,255,.8); font-size: .9rem; }

.hiring-form {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px); border-radius: var(--radius); padding: 32px;
}
.hiring-form h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem; color: white; margin-bottom: 20px; }
.hiring-form .form-group label { color: rgba(255,255,255,.8); }
.hiring-form input, .hiring-form select {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: white;
}
.hiring-form input::placeholder { color: rgba(255,255,255,.4); }
.hiring-form input:focus, .hiring-form select:focus { border-color: var(--sky); background: rgba(255,255,255,.15); }
.hiring-form select option { background: var(--navy); color: white; }
.hiring-form .form-group { margin-bottom: 16px; }

/* ════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(41,168,212,.10); color: var(--sky);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.contact-item strong { display: block; font-weight: 600; margin-bottom: 2px; }
.contact-item a { color: var(--sky); font-size: .9rem; }
.contact-item span { color: var(--gray); font-size: .875rem; }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  padding: 12px 24px; border-radius: 50px; font-weight: 600; font-size: .9rem;
  transition: var(--trans); width: fit-content; margin-top: 8px;
}
.whatsapp-btn:hover { background: #1DA851; transform: translateY(-2px); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form textarea { resize: vertical; }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer { background: var(--navy); color: white; padding: 64px 0 0; }
.footer-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px;
}
.footer-brand img { filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .875rem; }
.footer-links, .footer-contact {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-links strong, .footer-contact strong { color: white; font-weight: 700; margin-bottom: 4px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .875rem; transition: color var(--trans); }
.footer-links a:hover { color: var(--sky); }
.footer-contact span { color: rgba(255,255,255,.65); font-size: .875rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,.5); font-size: .8rem;
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: rgba(255,255,255,.5); transition: color var(--trans); }
.footer-socials a:hover { color: var(--sky); }

/* ════════════════════════════════════════════
   NOVA IA
   ════════════════════════════════════════════ */
#nova-ia-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--navy));
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(41,168,212,.45);
  transition: var(--trans);
}
#nova-ia-btn:hover { transform: scale(1.1); }

.nova-panel {
  position: fixed; bottom: 96px; right: 28px; z-index: 200;
  width: 300px; background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1.5px solid var(--border);
  display: none; flex-direction: column;
}
.nova-panel.open { display: flex; }
.nova-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .95rem;
}
.nova-header button { color: var(--gray); font-size: 1rem; transition: color var(--trans); }
.nova-header button:hover { color: var(--navy); }
.nova-intro { padding: 16px 20px 8px; font-size: .875rem; color: var(--gray); }
.nova-buttons { display: flex; flex-direction: column; gap: 8px; padding: 0 16px 16px; }
.nova-btn {
  background: var(--light); color: var(--navy); padding: 10px 14px;
  border-radius: var(--radius-sm); font-size: .82rem; font-weight: 500; text-align: left;
  transition: var(--trans); border: 1px solid var(--border);
}
.nova-btn:hover { background: rgba(41,168,212,.1); border-color: var(--sky); }
.nova-answer {
  padding: 0 20px 16px; font-size: .82rem; color: var(--gray); line-height: 1.6;
  display: none;
}
.nova-answer.show { display: block; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-text { align-items: center; display: flex; flex-direction: column; }
  .hero-visual { order: -1; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .price-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .hiring-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: white; flex-direction: column; padding: 16px 24px 24px; box-shadow: 0 8px 24px rgba(0,0,0,.1); gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-book { display: none; }
  .steps-grid { flex-direction: column; }
  .step-connector { width: 2px; height: 40px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .prop-grid { grid-template-columns: 1fr 1fr; }
  .extras-grid { grid-template-columns: 1fr 1fr; }
  .freq-grid { grid-template-columns: 1fr 1fr; }
  .room-layout { grid-template-columns: 1fr; }
  .room-canvas-3d { height: 220px; }
  .room-canvas-3d.cards-mode { height: auto; }
  .room-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .stats-container { gap: 0; }
  .stat-item { padding: 0 24px; }
  .schedule-grid { grid-template-columns: 1fr; }
  .booking-card { padding: 20px; }
  .footer-container { grid-template-columns: 1fr; gap: 24px; }
  .price-sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .prop-grid { grid-template-columns: 1fr 1fr; }
  .freq-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .extras-grid { grid-template-columns: 1fr 1fr; }
  .hero-card { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .floating, .bubble, .sparkle { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
