/* ===========================
   RESET & VARIABLES
=========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --purple:       #9333EA;
  --purple-light: #A855F7;
  --blue:         #2563EB;
  --blue-light:   #60A5FA;
  --grad:         linear-gradient(135deg, #9333EA 0%, #2563EB 100%);
  --grad-soft:    linear-gradient(135deg, rgba(147,51,234,.1) 0%, rgba(37,99,235,.1) 100%);
  --white:  #FFFFFF;
  --bg:     #F8F7FF;
  --dark:   #1E1B4B;
  --mid:    #64748B;
  --light:  #94A3B8;
  --border: #E2E8F0;
  --sh-sm:  0 2px 8px rgba(99,51,234,.08);
  --sh-md:  0 8px 32px rgba(99,51,234,.15);
  --sh-lg:  0 16px 48px rgba(99,51,234,.22);
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px;
  --ease: all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; line-height: 1.6; }

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   LAYOUT
=========================== */
.wrap  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sec   { padding: 96px 0; }
.sec-alt { background: var(--bg); }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-soft);
  border: 1px solid rgba(147,51,234,.2);
  color: var(--purple);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
}
.sec-title    { font-size: clamp(28px,4vw,44px); margin-bottom: 14px; }
.sec-subtitle { font-size: 17px; color: var(--mid); max-width: 560px; line-height: 1.75; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 600; font-family: 'Inter', sans-serif;
  text-decoration: none; cursor: pointer; border: none;
  transition: var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 4px 20px rgba(147,51,234,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(147,51,234,.5); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.btn-wa:hover { background: #22c55e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.btn-yelp { background: #D32323; color: #fff; box-shadow: 0 4px 16px rgba(211,35,35,.3); }
.btn-yelp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(211,35,35,.4); }

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; }

/* ===========================
   NAVBAR
=========================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.95); backdrop-filter: blur(20px);
  padding: 12px 0; box-shadow: var(--sh-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { height: 100px; width: auto; filter: brightness(0) invert(1); transition: var(--ease); }
.nav.scrolled .nav-logo { filter: none; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: #fff; transition: var(--ease);
  text-decoration: none; line-height: 1.2;
}
.nav-logo-text span { display: block; font-size: 11px; font-family: 'Inter', sans-serif; font-weight: 500; opacity: .8; letter-spacing: .08em; }
.nav.scrolled .nav-logo-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav.scrolled .nav-logo-text span { -webkit-text-fill-color: var(--mid); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.9); text-decoration: none; font-size: 14px; font-weight: 500; transition: var(--ease); }
.nav.scrolled .nav-links a { color: var(--dark); }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--purple); }

.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: flex; align-items: center;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px; padding: 4px; backdrop-filter: blur(8px); transition: var(--ease);
}
.nav.scrolled .lang-toggle { background: var(--grad-soft); border-color: rgba(147,51,234,.2); }
.lang-btn {
  padding: 5px 13px; border-radius: 100px;
  font-size: 12px; font-weight: 700; cursor: pointer;
  background: transparent; border: none; color: rgba(255,255,255,.7); transition: var(--ease);
}
.nav.scrolled .lang-btn { color: var(--mid); }
.lang-btn.active { background: var(--grad); color: #fff; box-shadow: 0 2px 8px rgba(147,51,234,.4); }

.nav-cta { display: none; }
.nav.scrolled .nav-cta { display: inline-flex; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--ease); }
.nav.scrolled .hamburger span { background: var(--dark); }

/* Mobile nav */
.mob-nav {
  display: none; position: fixed; inset: 0; background: #fff; z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mob-nav.open { display: flex; }
.mob-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 32px; cursor: pointer; color: var(--dark); }
.mob-nav a { font-size: 22px; font-weight: 700; color: var(--dark); text-decoration: none; transition: var(--ease); }
.mob-nav a:hover { color: var(--purple); }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden;
  padding-top: 90px; padding-bottom: 120px;
  background: linear-gradient(135deg, rgba(147,51,234,.93) 0%, rgba(37,99,235,.93) 100%),
              url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80') center/cover no-repeat;
}
.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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .15; pointer-events: none;
  animation: floatBlob 8s ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; background: #C084FC; top: -100px; right: -80px; }
.blob-2 { width: 400px; height: 400px; background: #60A5FA; bottom: -60px; left: -60px; animation-direction: reverse; animation-duration: 10s; }
@keyframes floatBlob { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.05); } }

.hero-body { position: relative; z-index: 1; max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(12px); color: #fff;
  font-size: 13px; font-weight: 600; padding: 8px 20px; border-radius: 100px; margin-bottom: 24px;
}
.pulse-dot {
  width: 8px; height: 8px; background: #4ade80; border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.4);} }

.hero-title { font-size: clamp(38px,6vw,72px); color: #fff; margin-bottom: 24px; }
.hero-title em { font-style: italic; color: #e9d5ff; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 40px; max-width: 540px; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: #fff; line-height: 1; }
.hero-stat-lbl { font-size: 13px; color: rgba(255,255,255,.7); font-weight: 500; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* Floating review card */
.hero-review {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.25); border-radius: var(--r-lg);
  padding: 28px; width: 280px;
  animation: floatBlob 6s ease-in-out infinite;
  z-index: 1;
}
.star-row { color: #fbbf24; font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.review-quote { color: rgba(255,255,255,.9); font-size: 14px; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.review-meta strong { color: #fff; font-size: 13px; }
.yelp-tag { background: #D32323; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-left: 8px; }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-ball { width: 4px; height: 8px; background: rgba(255,255,255,.7); border-radius: 2px; animation: scrollBall 2s ease-in-out infinite; }
@keyframes scrollBall { 0%,100%{transform:translateY(0);opacity:1;} 50%{transform:translateY(6px);opacity:.4;} }

/* ===========================
   TRUST STRIP
=========================== */
.trust { background: #fff; padding: 28px 0; border-bottom: 1px solid var(--border); }
.trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--dark); }
.trust-icon {
  width: 36px; height: 36px; background: var(--grad); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}

/* ===========================
   SERVICES
=========================== */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; margin-top: 56px; }
.svc-card {
  background: #fff; border-radius: var(--r-lg); padding: 36px 28px;
  border: 1px solid var(--border); transition: var(--ease); position: relative; overflow: hidden;
}
.svc-card::before { content: ''; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover .svc-icon-wrap { background: rgba(255,255,255,.2); }
.svc-card:hover .svc-name, .svc-card:hover .svc-desc, .svc-card:hover .svc-cta { color: #fff; }
.svc-card > * { position: relative; z-index: 1; }

.svc-icon-wrap {
  width: 60px; height: 60px; background: var(--grad-soft);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 28px; transition: var(--ease);
}
.svc-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; transition: var(--ease); }
.svc-desc { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 18px; transition: var(--ease); }
.svc-cta { font-size: 13px; font-weight: 700; color: var(--purple); display: inline-flex; align-items: center; gap: 6px; transition: var(--ease); text-decoration: none; }
.svc-cta .arr { transition: transform .2s; }
.svc-card:hover .arr { transform: translateX(4px); }

/* ===========================
   HOW IT WORKS
=========================== */
.how { background: var(--grad); padding: 96px 0; position: relative; overflow: hidden; }
.how::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='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.how-head { text-align: center; position: relative; z-index: 1; }
.how-head .tag { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); color: #fff; }
.how-head h2 { color: #fff; margin-bottom: 12px; }
.how-head p  { color: rgba(255,255,255,.8); max-width: 480px; margin: 0 auto 60px; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; position: relative; z-index: 1; }
.steps::before {
  content: ''; position: absolute; top: 44px;
  left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 2px; background: rgba(255,255,255,.2);
}
.step {
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-lg);
  padding: 36px 24px; text-align: center; transition: var(--ease);
}
.step:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.step-num {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--grad); border: 3px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: #fff;
}
.step h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.step p  { color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.75; }

/* ===========================
   GALLERY
=========================== */
.gallery-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.g-tab {
  padding: 10px 22px; border-radius: 100px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--ease); background: var(--bg);
  border: 2px solid transparent; color: var(--mid);
}
.g-tab.active { background: var(--grad); color: #fff; box-shadow: 0 4px 16px rgba(147,51,234,.3); }
.g-tab:not(.active):hover { border-color: var(--purple); color: var(--purple); }

.g-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.g-item {
  border-radius: var(--r-md); overflow: hidden;
  position: relative; aspect-ratio: 4/3; cursor: pointer; transition: var(--ease);
}
.g-item:first-child { grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item .ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  transition: var(--ease);
}
.g-item .ph-icon { font-size: 42px; }
.g-item .ph-lbl { color: rgba(255,255,255,.85); }
.g-overlay {
  position: absolute; inset: 0; background: var(--grad); opacity: 0;
  transition: var(--ease); display: flex; align-items: center; justify-content: center;
}
.g-item:hover .g-overlay { opacity: .75; }
.g-overlay-icon { color: #fff; font-size: 28px; transform: scale(.5); transition: var(--ease); }
.g-item:hover .g-overlay-icon { transform: scale(1); }

.gallery-cta { text-align: center; margin-top: 40px; }

/* Room color themes */
.ph-kitchen  { background: linear-gradient(135deg, #FDE68A, #F59E0B); }
.ph-living   { background: linear-gradient(135deg, #C4B5FD, #818CF8); }
.ph-bathroom { background: linear-gradient(135deg, #6EE7B7, #059669); }
.ph-bedroom  { background: linear-gradient(135deg, #FBCFE8, #DB2777); }
.ph-move     { background: linear-gradient(135deg, #BAE6FD, #2563EB); }
.ph-office   { background: linear-gradient(135deg, #DDD6FE, #7C3AED); }

/* ===========================
   REVIEWS
=========================== */
.rev-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 48px; }
.yelp-badge-row {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px 22px; box-shadow: var(--sh-sm);
}
.yelp-word { color: #D32323; font-weight: 900; font-size: 22px; font-style: italic; }
.yelp-stars { color: #D32323; font-size: 18px; letter-spacing: 2px; }
.yelp-ct { font-size: 13px; color: var(--mid); }

.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.rev-card {
  background: #fff; border-radius: var(--r-lg); padding: 28px;
  border: 1px solid var(--border); transition: var(--ease); position: relative; overflow: hidden;
}
.rev-card::before {
  content: '"'; position: absolute; top: 10px; right: 20px;
  font-size: 90px; font-family: 'Playfair Display', serif; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; opacity: .2;
}
.rev-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.rev-stars { color: #FBBF24; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.rev-text  { font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.rev-name { font-weight: 700; font-size: 14px; }
.rev-date { font-size: 12px; color: var(--light); }
.rev-cta { text-align: center; margin-top: 48px; }

/* ===========================
   ABOUT
=========================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-bg {
  position: absolute; inset: -16px -16px -16px 16px;
  background: var(--grad-soft); border-radius: var(--r-xl);
  border: 2px solid rgba(147,51,234,.15);
}
.about-img {
  width: 100%; border-radius: var(--r-xl); aspect-ratio: 4/5; object-fit: cover;
  position: relative; z-index: 1;
  background: linear-gradient(135deg, #DDD6FE, #93C5FD);
  display: flex; align-items: center; justify-content: center;
  font-size: 96px;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--grad); color: #fff; border-radius: var(--r-md);
  padding: 20px 24px; text-align: center; z-index: 2; box-shadow: var(--sh-lg);
}
.about-badge-num { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; line-height: 1; }
.about-badge-lbl { font-size: 11px; opacity: .9; font-weight: 600; }

.about-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.a-perk { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.a-perk-icon {
  width: 28px; height: 28px; background: var(--grad-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
}

/* ===========================
   BOOKING
=========================== */
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.form-card, .cal-card {
  background: #fff; border-radius: var(--r-xl); padding: 40px;
  border: 1px solid var(--border); box-shadow: var(--sh-sm);
}
.form-card h3, .cal-card h3 { font-size: 24px; margin-bottom: 8px; }
.form-card p, .cal-card p { font-size: 14px; color: var(--mid); margin-bottom: 28px; }

.f-group { margin-bottom: 18px; }
.f-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.f-input {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: var(--r-sm); font-size: 14px; color: var(--dark);
  background: #fff; transition: var(--ease); font-family: 'Inter', sans-serif; outline: none;
}
.f-input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(147,51,234,.1); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 38px;
}
.f-textarea { resize: vertical; min-height: 90px; }
.f-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.f-btns .btn { width: 100%; justify-content: center; padding: 16px; font-size: 15px; }

/* Success state */
.f-success { display: none; text-align: center; padding: 32px 16px; }
.f-success.show { display: block; }
.success-circle {
  width: 64px; height: 64px; background: var(--grad); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 16px;
}
.f-form-inner.hide { display: none; }

/* Calendar placeholder */
.cal-ph {
  background: var(--bg); border: 2px dashed rgba(147,51,234,.25);
  border-radius: var(--r-md); padding: 48px 20px; text-align: center;
}
.cal-ph-icon { font-size: 52px; margin-bottom: 14px; }
.cal-ph p { font-size: 14px; color: var(--mid); line-height: 1.7; }
.cal-ph-note { margin-top: 12px; font-size: 12px; color: var(--light); font-style: italic; }

/* Google Calendar embed (hidden until connected) */
#gcal-embed { display: none; width: 100%; border-radius: var(--r-md); overflow: hidden; }

.contact-strip { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.c-item { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.c-icon {
  width: 36px; height: 36px; background: var(--grad-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin: 14px 0 22px; }
.f-socials { display: flex; gap: 10px; }
.f-social {
  width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; text-decoration: none; color: rgba(255,255,255,.65); transition: var(--ease);
}
.f-social:hover { background: var(--grad); color: #fff; }
.footer h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.f-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.f-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 14px; transition: var(--ease); }
.f-links a:hover { color: var(--purple-light); }
.f-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 12px; }
.f-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.f-bottom p { font-size: 13px; }

/* Footer logo text */
.footer-logo-text {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1.2;
}
.footer-logo-text span { display: block; font-size: 11px; font-family: 'Inter', sans-serif; font-weight: 500; -webkit-text-fill-color: rgba(255,255,255,.5); letter-spacing: .08em; }

/* Floating WhatsApp */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  animation: floatBlob 3s ease-in-out infinite; transition: transform .2s;
}
.float-wa:hover { transform: scale(1.12) !important; }

/* ===========================
   RESPONSIVE
=========================== */
@media(max-width: 1024px) {
  .hero-review { display: none; }
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 460px; margin: 0 auto; }
  .book-grid   { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width: 768px) {
  .sec { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .g-grid  { grid-template-columns: 1fr 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
}
@media(max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .g-grid { grid-template-columns: 1fr; }
  .g-item:first-child { grid-column: span 1; }
  .about-perks { grid-template-columns: 1fr; }
  .trust-row { gap: 20px; }
}
