/* ============================================================
   SUKOON STAYS — Design System
   Reusable across future pages (about, properties, gallery, etc.)
   ============================================================ */

:root{
  /* Brand palette */
  --violet:#7c3aed;
  --violet-2:#a78bfa;
  --pink:#ff5da2;
  --pink-2:#ffb3d1;
  --yellow:#ffd23f;
  --yellow-2:#fff3b0;
  --mint:#3ddc97;
  --mint-2:#bdf3d8;
  --peach:#ffb38a;
  --peach-2:#ffe0cc;
  --blue:#4cc9f0;
  --blue-2:#cdeefb;
  --lilac:#c8b6ff;
  --ink:#160d2e;
  --ink-2:#3a2f55;
  --muted:#6b6786;
  --bg:#fbf7ff;
  --surface:#ffffff;
  --line:#ece6fa;

  --grad-primary: linear-gradient(135deg,#7c3aed 0%,#ff5da2 60%,#ffd23f 120%);
  --grad-2: linear-gradient(135deg,#3ddc97 0%,#4cc9f0 100%);
  --grad-3: linear-gradient(135deg,#ffd23f 0%,#ff5da2 100%);

  --shadow-sm: 0 6px 16px -8px rgba(20,10,60,.18);
  --shadow-md: 0 18px 40px -18px rgba(20,10,60,.25);
  --shadow-lg: 0 30px 60px -25px rgba(20,10,60,.35);
  --radius-sm:14px;
  --radius:22px;
  --radius-lg:32px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif;
  background:var(--bg);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

h1,h2,h3,h4,h5{
  font-family:'Bricolage Grotesque',serif;
  font-weight:800;
  letter-spacing:-.02em;
  color:var(--ink);
}

a{text-decoration:none;color:inherit}
.section{padding:110px 0;position:relative}
@media(max-width:768px){.section{padding:80px 0}}
.section-head{margin-bottom:30px}
.kicker{
  display:inline-block;
  background:var(--violet);color:#fff;
  font-weight:700;font-size:.78rem;
  padding:6px 14px;border-radius:999px;
  text-transform:lowercase;letter-spacing:.02em;
}
.kicker-pink{background:var(--pink)}
.kicker-mint{background:#1f9d6b}
.kicker-yellow{background:#e0a800;color:#160d2e}
.kicker-light{background:rgba(255,255,255,.18);color:#fff;backdrop-filter:blur(8px)}

.section-title{
  font-size:clamp(2rem,4.4vw,3.6rem);
  line-height:1.05;
  margin:.5rem 0 0;
}
.section-sub{color:var(--muted);max-width:620px;margin:14px auto 0;font-size:1.05rem}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{font-weight:700;border-radius:999px;padding:.7rem 1.3rem;transition:transform .25s,box-shadow .25s,filter .25s;border:0}
.btn:active{transform:translateY(1px)}
.btn-sukoon-primary{
  background:var(--grad-primary);color:#fff;
  box-shadow:0 12px 28px -10px rgba(124,58,237,.55);
}
.btn-sukoon-primary:hover{
  background:linear-gradient(90deg,#7c3aed,#ff5da2,#ffd23f,#3ddc97,#4cc9f0,#7c3aed);
  background-size:300% 100%;
  color:#fff;
  transform:translateY(-2px);
  filter:brightness(1.05);
  box-shadow:0 16px 38px -10px rgba(255,93,162,.55);
}
.btn-sukoon-ghost{
  background:#fff;color:var(--ink);border:2px solid var(--ink);
}
.btn-sukoon-ghost:hover{background:var(--ink);color:#fff;transform:translateY(-2px)}
.btn-sukoon-dark{background:var(--ink);color:#fff}
.btn-sukoon-dark:hover{background:#000;color:#fff;transform:translateY(-2px)}
.btn-lg{padding:.95rem 1.7rem;font-size:1.05rem}

/* ============================================================
   NAVBAR
   ============================================================ */
.sukoon-nav{
  background:rgba(255,255,255,.75);
  backdrop-filter:saturate(160%) blur(14px);
  border-bottom:1px solid transparent;
  transition:.3s;
  padding:.2rem 0;
}
.sukoon-nav.scrolled{
  background:rgba(255,255,255,.92);
  border-bottom-color:var(--line);
  box-shadow:0 6px 24px -14px rgba(20,10,60,.18);
}
.brand-logo{
  width:209px;
  height:88px;
  object-fit:contain;
  display:block;
}
.brand-text{font-family:'Bricolage Grotesque',serif;font-weight:800;font-size:1.35rem;color:var(--ink)}
.brand-dot{color:var(--pink)}
.offcanvas-title .brand-logo{width:64px;height:64px}
.footer .brand-logo{width:234px;height:76px}
.sukoon-nav .nav-link{
  font-family:'Bricolage Grotesque',serif;
  color:var(--ink-2);font-weight:700;border-radius:999px;
  padding:.5rem 1rem !important;transition:.2s;
}
.sukoon-nav .nav-link:hover{color:var(--violet);background:#f4eeff}
.sukoon-nav .nav-link.active{color:var(--violet);background:#f4eeff}

.sukoon-offcanvas{background:#fff;width:80%}
.mobile-link{
  font-family:'Bricolage Grotesque',serif;font-weight:700;font-size:1.6rem;
  padding:14px 0;border-bottom:1px solid var(--line);color:var(--ink);
}
.mobile-link:hover{color:var(--violet)}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;padding:160px 0 90px;
  overflow:hidden;
  background:
    radial-gradient(60% 50% at 90% 0%,rgba(255,210,63,.25),transparent 70%),
    radial-gradient(50% 40% at 0% 100%,rgba(124,58,237,.18),transparent 70%),
    var(--bg);
}
.hero-blob{position:absolute;border-radius:50%;filter:blur(60px);opacity:.55;pointer-events:none}
.blob-1{width:380px;height:380px;background:var(--pink);top:-80px;left:-100px;animation:float 14s ease-in-out infinite}
.blob-2{width:320px;height:320px;background:var(--blue);bottom:-100px;right:8%;animation:float 18s ease-in-out infinite reverse}
.blob-3{width:240px;height:240px;background:var(--yellow);top:30%;right:-80px;animation:float 12s ease-in-out infinite}

.pill-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;border:1px solid var(--line);
  padding:8px 16px;border-radius:999px;
  font-weight:600;font-size:.85rem;color:var(--ink-2);
  box-shadow:var(--shadow-sm);
}
.dot-pulse{width:8px;height:8px;border-radius:50%;background:var(--mint);box-shadow:0 0 0 0 rgba(61,220,151,.7);animation:pulse 1.8s infinite}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(61,220,151,.7)}
  70%{box-shadow:0 0 0 12px rgba(61,220,151,0)}
  100%{box-shadow:0 0 0 0 rgba(61,220,151,0)}
}

.hero-title{
  font-family:'Bricolage Grotesque',serif;font-weight:800;
  font-size:clamp(2.6rem,6vw,5.2rem);
  line-height:1.02;letter-spacing:-.03em;
}
.word-pop{
  background:var(--grad-primary);-webkit-background-clip:text;background-clip:text;color:transparent;
  display:inline-block;animation:bounce-soft 3s ease-in-out infinite;
}
@keyframes bounce-soft{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
.word-underline{position:relative;display:inline-block}
.word-underline svg{position:absolute;left:0;bottom:-10px;width:100%;height:14px;color:var(--pink)}
.word-underline-light svg{color:var(--yellow)}

.hero-sub{font-size:1.15rem;color:var(--ink-2);max-width:540px;line-height:1.6}

.hero-badges{display:flex;flex-wrap:wrap;gap:10px}
.hb{
  background:#fff;border:1px solid var(--line);
  padding:8px 14px;border-radius:999px;font-size:.85rem;font-weight:600;color:var(--ink-2);
  display:inline-flex;align-items:center;gap:6px;
  box-shadow:var(--shadow-sm);transition:.2s;
}
.hb i{color:var(--violet)}
.hb:hover{transform:translateY(-2px);border-color:var(--violet)}

.hero-trust{display:flex;align-items:center;gap:14px}
.avatars{display:flex}
.avatars img{width:42px;height:42px;border-radius:50%;border:3px solid #fff;margin-left:-10px;box-shadow:var(--shadow-sm)}
.avatars img:first-child{margin-left:0}

.hero-visual{position:relative;aspect-ratio:1/1;max-width:560px;margin:0 auto}
.hero-img{
  width:100%;height:100%;object-fit:cover;
  border-radius:36px;
  border:8px solid #fff;
  box-shadow:var(--shadow-lg);
  transform:rotate(2deg);
}
.hero-card{
  position:absolute;background:#fff;border-radius:18px;
  padding:14px 18px;box-shadow:var(--shadow-md);
  display:flex;align-items:center;gap:10px;font-size:.9rem;
  animation:float 6s ease-in-out infinite;
}
.hero-card i{font-size:1.4rem;color:var(--violet)}
.card-rating{top:-18px;left:-20px;background:var(--yellow);animation-delay:-2s}
.card-rating .big{font-family:'Bricolage Grotesque',serif;font-weight:800;font-size:1.5rem;line-height:1}
.card-wifi{bottom:60px;left:-30px;animation-delay:-4s}
.card-near{top:30%;right:-26px;animation-delay:-1s}

.doodle{position:absolute;font-family:'Caveat',cursive;font-weight:700;color:var(--pink);font-size:2rem;opacity:.85}
.doodle-star{top:10px;right:10%;color:var(--yellow);font-size:2.6rem;animation:spin-slow 12s linear infinite}
.doodle-heart{
  bottom:20px;
  right:30px;
  color:var(--pink);
  font-size:2.2rem;
  animation:bounce-soft 3s ease-in-out infinite;
  font-family:"Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif;
}
.doodle-spark{bottom:40%;left:-30px;color:var(--violet);font-size:2.4rem;animation:spin-slow 18s linear infinite reverse}
@keyframes spin-slow{to{transform:rotate(360deg)}}

.float-sticker{
  position:absolute;background:#fff;border-radius:999px;
  padding:8px 14px;font-weight:700;font-size:.85rem;color:var(--ink);
  box-shadow:var(--shadow-md);z-index:2;
  animation:float 7s ease-in-out infinite;
}
.hero-corner-shot{
  position:absolute;
  top:92px;
  right:4%;
  width:240px;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:28px;
  border:6px solid rgba(255,255,255,.95);
  box-shadow:var(--shadow-lg);
  transform:rotate(8deg);
  z-index:3;
  pointer-events:none;
  animation:float 9s ease-in-out infinite;
}
.sticker-1{top:18%;left:6%;background:var(--yellow);transform:rotate(-6deg)}
.sticker-2{top:62%;left:3%;background:var(--mint-2);transform:rotate(4deg);animation-delay:-2s}
.sticker-3{top:14%;right:6%;background:var(--pink-2);transform:rotate(8deg);animation-delay:-3s}
.sticker-4{top:70%;right:4%;background:var(--blue-2);transform:rotate(-4deg);animation-delay:-1.5s}
@keyframes float{0%,100%{transform:translateY(0) rotate(var(--r,0deg))}50%{transform:translateY(-12px) rotate(var(--r,0deg))}}

/* MARQUEE */
.marquee{
  background:var(--ink);color:#fff;border-radius:999px;
  padding:14px 0;overflow:hidden;position:relative;
}
.marquee-track{
  display:flex;gap:30px;white-space:nowrap;
  animation:marquee 30s linear infinite;
  font-weight:600;
}
.marquee-track span{font-size:.95rem}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ============================================================
   WHY CARDS
   ============================================================ */
.section-why{background:#fff}
.why-card{
  background:#fff;border-radius:var(--radius);
  padding:30px;height:100%;border:1px solid var(--line);
  transition:.3s;position:relative;overflow:hidden;
}
.why-card::before{
  content:"";position:absolute;inset:auto -30% -50% auto;
  width:200px;height:200px;border-radius:50%;
  background:var(--tint,var(--violet-2));opacity:.2;transition:.4s;
}
.why-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-md);border-color:transparent}
.why-card:hover::before{transform:scale(1.4)}
.why-icon{
  width:56px;height:56px;border-radius:18px;
  display:grid;place-items:center;font-size:1.5rem;color:#fff;
  background:var(--tint,var(--violet));margin-bottom:16px;
  box-shadow:0 10px 24px -10px var(--tint,var(--violet));
}
.why-card h5{font-family:'Bricolage Grotesque',serif;font-weight:800;font-size:1.25rem;margin-bottom:8px}
.why-card p{color:var(--muted);margin:0}

.tint-violet{--tint:#7c3aed}
.tint-pink{--tint:#ff5da2}
.tint-yellow{--tint:#f0a500}
.tint-mint{--tint:#1f9d6b}
.tint-peach{--tint:#ff8a4c}
.tint-blue{--tint:#3aa8d8}

/* ============================================================
   LIFESTYLE
   ============================================================ */
.section-lifestyle{
  background:linear-gradient(180deg,#fff 0%,#fbf7ff 100%);
  position:relative;
}
.lifestyle-img-wrap{position:relative;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg);transform:rotate(-2deg);transition:.4s}
.lifestyle-img-wrap.tilt-r{transform:rotate(2deg)}
.lifestyle-img-wrap.tilt-l{transform:rotate(-3deg)}
.lifestyle-img-wrap:hover{transform:rotate(0)}
.lifestyle-img-wrap img{width:100%;height:420px;object-fit:cover;display:block;transition:.5s}
.lifestyle-img-wrap:hover img{transform:scale(1.06)}
.img-tag{
  position:absolute;top:18px;left:18px;background:#fff;
  padding:8px 14px;border-radius:999px;font-weight:700;font-size:.85rem;
  color:#000;
  box-shadow:var(--shadow-md);
}
.tag-mint{background:var(--mint);color:#fff}
.tag-yellow{background:var(--yellow)}

.lifestyle-title{font-size:clamp(1.7rem,3vw,2.5rem);margin:.8rem 0 .8rem}
.lifestyle-text{color:var(--ink-2);font-size:1.05rem;line-height:1.7}
.check-list{list-style:none;padding:0;margin:1rem 0 0}
.check-list li{padding:8px 0;color:var(--ink-2);font-weight:500}
.check-list i{color:var(--mint);margin-right:8px;font-size:1.2rem}

/* ============================================================
   ROOMS
   ============================================================ */
.section-rooms{background:#fff}
.section-why .row.g-4.mt-2.d-none{display:flex!important}
.section-why #roomsCarousel{display:none!important}
.room-carousel .carousel-item{padding:8px 0}
.room-slide{align-items:stretch}
.room-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;height:100%;display:flex;flex-direction:column;
  transition:.3s;
}
.room-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg);border-color:transparent}
.room-card.popular{border:2px solid var(--pink);box-shadow:0 20px 40px -20px rgba(255,93,162,.4)}
.room-img{position:relative;overflow:hidden;aspect-ratio:4/3}
.room-img img{width:100%;height:100%;object-fit:cover;transition:.5s}
.room-card:hover .room-img img{transform:scale(1.08)}
.room-tag{
  position:absolute;top:14px;left:14px;background:var(--ink);color:#fff;
  padding:6px 12px;border-radius:999px;font-size:.78rem;font-weight:700;
}
.room-tag.tag-pink{background:var(--pink)}
.room-tag.tag-yellow{background:var(--yellow);color:var(--ink)}

.room-body{padding:24px;display:flex;flex-direction:column;flex:1}
.room-body h4{font-family:'Bricolage Grotesque',serif;font-weight:800;font-size:1.5rem;margin-bottom:6px}
.room-body p{color:var(--muted);margin-bottom:16px}
.room-feats{list-style:none;padding:0;margin:0 0 20px;display:grid;grid-template-columns:1fr 1fr;gap:8px}
.room-feats li{font-size:.88rem;color:var(--ink-2);font-weight:500}
.room-feats i{color:var(--violet);margin-right:6px}
.room-foot{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  margin-top:auto;padding-top:16px;border-top:1px dashed var(--line)
}
.room-note{display:flex;flex-direction:column;gap:4px;min-width:0}
.price{
  display:block;
  font-family:'Bricolage Grotesque',serif;font-weight:800;font-size:1.15rem;line-height:1.1;color:var(--ink)
}
.permo{display:block;color:var(--muted);font-size:.88rem;line-height:1.35}
@media(max-width:576px){
  .room-foot{align-items:flex-start;flex-direction:column}
  .room-foot .btn{width:100%}
}

/* ============================================================
   AMENITIES
   ============================================================ */
.section-amenities{
  background:
    radial-gradient(34% 42% at 14% 12%,rgba(255,210,63,.22),transparent 70%),
    radial-gradient(34% 48% at 100% 0%,rgba(255,93,162,.14),transparent 70%),
    radial-gradient(38% 48% at 0% 100%,rgba(76,201,240,.14),transparent 72%),
    linear-gradient(180deg,#fff7fc 0%,#fbf7ff 52%,#f7fbff 100%);
  overflow:hidden;
}
.amenities-sub{max-width:640px}
.amenities-stage{
  position:relative;
  display:grid;
  grid-template-columns:minmax(280px,360px) 1fr;
  gap:26px;
  align-items:start;
}
.amenities-stage::before,
.amenities-stage::after{
  content:"";
  position:absolute;
  border-radius:50%;
  filter:blur(12px);
  opacity:.55;
  pointer-events:none;
}
.amenities-stage::before{
  width:170px;height:170px;
  background:rgba(255,93,162,.18);
  top:-40px;right:22%;
  animation:float 12s ease-in-out infinite;
}
.amenities-stage::after{
  width:140px;height:140px;
  background:rgba(76,201,240,.18);
  bottom:-28px;left:18%;
  animation:float 10s ease-in-out infinite reverse;
}
.amen-spotlight{
  position:sticky;
  top:110px;
  padding:30px 28px;
  border-radius:30px;
  background:
    linear-gradient(145deg,rgba(124,58,237,.95) 0%,rgba(255,93,162,.92) 58%,rgba(255,210,63,.88) 120%);
  color:#fff;
  box-shadow:0 26px 60px -28px rgba(124,58,237,.45);
  overflow:hidden;
}
.amen-spotlight::before{
  content:"";
  position:absolute;
  inset:auto -28px -40px auto;
  width:150px;height:150px;
  background:rgba(255,255,255,.16);
  border-radius:42px;
  transform:rotate(24deg);
}
.amen-spotlight-tag{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.amen-spotlight h3{
  color:#fff;
  font-size:clamp(1.7rem,2.8vw,2.4rem);
  line-height:1.04;
  margin:16px 0 12px;
}
.amen-spotlight p{
  color:rgba(255,255,255,.88);
  margin:0;
  line-height:1.65;
  max-width:28ch;
}
.amen-spotlight-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
  position:relative;
  z-index:1;
}
.amen-spotlight-pills span{
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-size:.82rem;
  font-weight:700;
}
.amen-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
@media(max-width:992px){
  .amenities-stage{grid-template-columns:1fr}
  .amen-spotlight{position:relative;top:auto}
  .amen-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:768px){.amen-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:576px){.amen-grid{grid-template-columns:1fr}}
.amen{
  position:relative;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.75);
  border-radius:26px;
  padding:22px 18px;
  text-align:left;
  font-weight:700;
  color:var(--ink-2);
  display:flex;
  align-items:center;
  gap:14px;
  min-height:92px;
  backdrop-filter:blur(10px);
  box-shadow:0 18px 30px -24px rgba(22,13,46,.24);
  transition:transform .3s,box-shadow .3s,border-color .3s;
  animation:amenFloat 6s ease-in-out infinite;
}
.amen i{
  font-size:1.6rem;color:#fff;
  width:54px;height:54px;border-radius:18px;
  display:grid;place-items:center;
  background:var(--grad-primary);
  box-shadow:0 8px 20px -8px rgba(124,58,237,.5);
  transition:.4s;
  flex:0 0 auto;
}
.amen:nth-child(2n) i{background:var(--grad-2);box-shadow:0 8px 20px -8px rgba(76,201,240,.5)}
.amen:nth-child(3n) i{background:var(--grad-3);box-shadow:0 8px 20px -8px rgba(255,210,63,.5)}
.amen:nth-child(4n){animation-delay:-1.5s}
.amen:nth-child(5n){animation-delay:-3s}
.amen:nth-child(6n){animation-delay:-4.5s}
.amen span{
  font-size:1rem;
  line-height:1.25;
}
.amen::after{
  content:"";
  position:absolute;
  inset:auto 18px 12px auto;
  width:34px;height:34px;
  border-radius:50%;
  background:rgba(124,58,237,.08);
}
.amen:hover{transform:translateY(-8px) rotate(-1deg);border-color:rgba(124,58,237,.22);box-shadow:var(--shadow-md)}
.amen:hover i{transform:rotate(-8deg) scale(1.06)}
@keyframes amenFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-4px)}
}

/* ============================================================
   PROPERTIES
   ============================================================ */
.section-properties{
  background:
    radial-gradient(42% 52% at 0% 100%,rgba(124,58,237,.08),transparent 70%),
    radial-gradient(34% 40% at 100% 0%,rgba(255,93,162,.08),transparent 70%),
    #fff;
}
.section-sub-left{max-width:560px;margin:14px 0 0}
.prop-grid{
  display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:220px;gap:18px;
}
@media(max-width:992px){.prop-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:576px){.prop-grid{grid-template-columns:1fr;grid-auto-rows:240px}}
.prop{
  position:relative;border-radius:var(--radius);overflow:hidden;
  display:block;color:#fff;
  background:linear-gradient(135deg,#2a174d 0%,#5a2bbd 100%);
  box-shadow:var(--shadow-md);
  isolation:isolate;
}
.prop.tall{grid-row:span 2}
.prop.wide{grid-column:span 2}
@media(max-width:576px){.prop.tall,.prop.wide{grid-column:auto;grid-row:auto}}
.prop::after{
  content:"";
  position:absolute;inset:12px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:calc(var(--radius) - 8px);
  opacity:.75;
  z-index:1;
  pointer-events:none;
}
.prop img{width:100%;height:100%;object-fit:cover;transition:.6s;display:block}
.prop:hover img{transform:scale(1.08)}
.prop-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(22,13,46,.02) 18%,rgba(22,13,46,.35) 52%,rgba(22,13,46,.92) 100%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:24px;color:#fff;
  z-index:2;
}
.prop-overlay h4{color:#fff;font-family:'Bricolage Grotesque',serif;font-weight:800;font-size:1.3rem;line-height:1.05;margin:6px 0 6px}
.prop-overlay p{margin:0;color:rgba(255,255,255,.86);font-size:.9rem}
.prop-meta{
  display:inline-flex;align-items:center;gap:8px;
  margin-top:14px;
  width:max-content;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(8px);
  font-size:.8rem;
  font-weight:700;
  color:#fff;
}
.prop:hover .prop-meta{background:rgba(255,255,255,.2)}

.section-properties .prop-grid{
  display:none;
}
.property-showcase{
  display:grid;
  gap:52px;
  margin-top:42px;
}
.property-item{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);
  gap:44px;
  align-items:center;
}
.property-item-reverse{
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
}
.property-item-reverse .property-media{order:2}
.property-item-reverse .property-copy{order:1}
.property-frame{
  position:relative;
  border-radius:var(--radius-lg);
}
.property-frame::after{
  display:none;
}
.property-frame img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}
.property-type{
  display:inline-block;
  font-size:.9rem;
  font-weight:700;
  color:#ff7b7b;
  margin-bottom:10px;
}
.property-copy h3{
  font-size:clamp(2rem,3.3vw,3rem);
  color:var(--violet-2);
  margin-bottom:14px;
}
.property-copy p{
  color:var(--ink-2);
  line-height:1.8;
  margin-bottom:22px;
}
.property-points{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.property-points li{
  color:var(--ink-2);
  line-height:1.65;
}
.property-points i{
  color:var(--violet);
  margin-right:8px;
}
.property-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.btn-property-outline{
  background:#fff;
  color:#ff6b57;
  border:1.5px solid #ff8a7b;
  box-shadow:none;
}
.btn-property-outline:hover{
  background:#fff3f1;
  color:#e85b4d;
  transform:translateY(-2px);
}
@media(max-width:991px){
  .property-item,
  .property-item-reverse{
    grid-template-columns:1fr;
    gap:28px;
  }
  .property-item-reverse .property-media,
  .property-item-reverse .property-copy{
    order:initial;
  }
}
@media(max-width:576px){
  .property-frame img{height:300px}
  .property-actions .btn{width:100%}
}

/* ============================================================
   GALLERY HOME
   ============================================================ */
.section-gallery-home{
  background:
    radial-gradient(38% 42% at 100% 0%,rgba(255,93,162,.12),transparent 70%),
    radial-gradient(34% 40% at 0% 100%,rgba(124,58,237,.12),transparent 70%),
    linear-gradient(180deg,#fff 0%,#fbf7ff 100%);
  overflow:hidden;
}
.gallery-carousel{
  position:relative;
  overflow:hidden;
}
.gallery-carousel .carousel-inner{
  overflow:hidden;
}
.gallery-shot{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(124,58,237,.1);
  box-shadow:var(--shadow-md);
  min-height:100%;
}
.gallery-shot::after{
  content:"";
  position:absolute;
  inset:14px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.42);
  pointer-events:none;
}
.gallery-shot img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  transition:transform .6s ease;
}
.gallery-shot:hover img{
  transform:scale(1.06);
}
@media(max-width:1199px){
  .gallery-shot img{height:280px}
}
@media(max-width:767px){
  .gallery-shot img{height:240px}
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testi{
  background:linear-gradient(180deg,#fbf7ff 0%,#fff 100%);
}
.testi-card{
  background:#fff;border-radius:var(--radius);
  padding:28px;height:100%;
  border:1px solid var(--line);
  position:relative;
  display:flex;
  flex-direction:column;
  transition:.3s;
}
.testi-card::before{
  content:"❝";position:absolute;top:8px;right:18px;
  font-size:4rem;line-height:1;color:var(--tint,var(--violet));opacity:.18;
  font-family:'Bricolage Grotesque',serif;
}
.testi-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md)}
.testi-card p{color:var(--ink-2);font-size:1rem;line-height:1.7;margin-bottom:18px;flex:1 1 auto}
.testi-foot{display:flex;align-items:center;gap:12px;margin-top:auto}
.testi-foot img{width:46px;height:46px;border-radius:50%;border:3px solid var(--tint,var(--violet))}
.testi-foot strong{display:block;font-family:'Bricolage Grotesque',serif;font-weight:800}
.testi-foot span{font-size:.82rem;color:var(--muted)}

.testi-btn{
  width:48px;height:48px;border-radius:50%;border:0;
  background:#fff;color:var(--ink);box-shadow:var(--shadow-md);
  margin:0 6px;font-size:1.1rem;transition:.2s;
}
.testi-btn:hover{background:var(--ink);color:#fff;transform:translateY(-2px)}

/* ============================================================
   FAQ
   ============================================================ */
.section-faq{background:#fff}
.sukoon-acc .accordion-item{
  background:#fbf7ff;border:1px solid var(--line);border-radius:var(--radius)!important;
  margin-bottom:14px;overflow:hidden;
}
.sukoon-acc .accordion-button{
  background:transparent;font-weight:700;color:var(--ink);
  font-family:'Bricolage Grotesque',serif;font-size:1.1rem;
  padding:1.1rem 1.4rem;border:0;
}
.sukoon-acc .accordion-button:not(.collapsed){background:#fff;color:var(--violet);box-shadow:none}
.sukoon-acc .accordion-button:focus{box-shadow:none;border:0}
.sukoon-acc .accordion-button::after{
  background:none;content:"+";font-size:1.8rem;font-weight:400;
  color:var(--violet);width:auto;height:auto;transition:.3s;
}
.sukoon-acc .accordion-button:not(.collapsed)::after{content:"−";transform:rotate(0)}
.sukoon-acc .accordion-body{color:var(--ink-2);padding:0 1.4rem 1.2rem;line-height:1.7}

/* ============================================================
   CTA
   ============================================================ */
.section-cta{background:var(--bg);padding:60px 0 110px}
.cta-card{
  position:relative;overflow:hidden;
  background:linear-gradient(135deg,#160d2e 0%,#3a1c71 50%,#7c3aed 100%);
  color:#fff;border-radius:var(--radius-lg);
  padding:78px 44px;
  text-align:left;
}
.cta-blob{position:absolute;border-radius:50%;filter:blur(60px);opacity:.5}
.cta-blob.b1{width:300px;height:300px;background:var(--pink);top:-80px;left:-80px}
.cta-blob.b2{width:280px;height:280px;background:var(--yellow);bottom:-100px;right:-60px}
.cta-card .float-sticker{position:absolute;background:#fff;color:var(--ink)}
.cta-card .s1{top:30px;left:8%;font-size:1.6rem;background:var(--yellow);transform:rotate(-10deg)}
.cta-card .s2{top:60%;left:5%;font-size:1.4rem;background:var(--mint);transform:rotate(6deg);animation-delay:-2s}
.cta-card .s3{top:20%;right:8%;font-size:1.6rem;background:var(--pink);color:#fff;transform:rotate(10deg);animation-delay:-3s}

.cta-title{
  font-family:'Bricolage Grotesque',serif;font-weight:800;color:#fff;
  font-size:clamp(2.2rem,4.6vw,4rem);line-height:1.02;margin:16px 0 14px;
  position:relative;z-index:2;
  max-width:10ch;
}
.cta-sub{
  color:rgba(255,255,255,.85);
  max-width:600px;
  margin:0 0 28px;
  position:relative;
  z-index:2;
  font-size:1.05rem;
  line-height:1.75;
}
.cta-form{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr)) auto;
  gap:12px;
  max-width:980px;
  margin:0;
  background:rgba(10,6,24,.22);
  padding:16px;
  border-radius:28px;
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.16);
  position:relative;
  z-index:2;
  box-shadow:0 24px 40px -28px rgba(0,0,0,.45);
}
@media(max-width:768px){.cta-form{grid-template-columns:1fr;border-radius:24px;padding:14px}}
.cta-form .form-control,.cta-form .form-select{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;font-weight:600;
  border-radius:16px;padding:1rem 1.05rem;
  min-height:56px;
}
.cta-form .form-control::placeholder{color:rgba(255,255,255,.65)}
.cta-form .form-select option{color:var(--ink)}
.cta-form .form-control:focus,.cta-form .form-select:focus{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.3);
  box-shadow:none;
  color:#fff
}
.cta-form .btn{
  min-height:56px;
  padding-inline:1.5rem;
  border-radius:16px;
  box-shadow:0 16px 28px -18px rgba(0,0,0,.45);
}
.cta-card .small{
  display:block;
  max-width:720px;
  margin-top:16px !important;
  position:relative;
  z-index:2;
}

.property-contact-modal .modal-content{
  border:0;
  border-radius:32px;
  overflow:hidden;
  background:
    radial-gradient(90% 120% at 100% 0%,rgba(255,210,63,.18),transparent 55%),
    linear-gradient(180deg,#fff 0%,#fbf7ff 100%);
  box-shadow:0 40px 80px -40px rgba(22,13,46,.45);
}
.property-contact-modal .modal-header{
  padding:28px 28px 12px;
  border-bottom:0;
  align-items:start;
}
.property-contact-modal .modal-title{
  font-size:clamp(1.5rem,2.6vw,2.2rem);
  margin:0;
}
.property-contact-modal .btn-close{
  margin:4px 0 0 auto;
  box-shadow:none;
}
.property-contact-modal .modal-body{
  padding:0 28px 28px;
}
.property-modal-sub{
  color:var(--ink-2);
  line-height:1.75;
  margin-bottom:22px;
}
.property-modal-form .form-control,
.property-modal-form .form-select{
  min-height:56px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  padding:.95rem 1rem;
  box-shadow:none;
}
.property-modal-form textarea.form-control{
  min-height:120px;
  resize:vertical;
}
.property-modal-form .form-control:focus,
.property-modal-form .form-select:focus{
  border-color:rgba(124,58,237,.35);
  box-shadow:0 0 0 4px rgba(124,58,237,.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  background:var(--ink);color:#fff;padding:80px 0 30px;
}
.footer h6{font-family:'Bricolage Grotesque',serif;font-weight:800;color:#fff;margin-bottom:14px;font-size:1.05rem}
.footer a{display:block;color:rgba(255,255,255,.7);padding:5px 0;transition:.2s}
.footer a:hover{color:var(--yellow);transform:translateX(4px)}
.footer hr{opacity:.15}
.footer-legal{
  display:inline-flex;
  align-items:center;
  gap:0;
  flex-wrap:wrap;
  color:#fff;
}
.footer-legal a{
  display:inline;
  color:inherit;
  margin-left:.25em;
  padding:0;
}
.footer-legal a:hover{
  color:inherit;
  transform:none;
}
.footer-legal span{color:rgba(255,255,255,.45)}
.socials{display:flex;gap:10px}
.socials a{
  width:40px;height:40px;border-radius:50%;
  background:rgba(255,255,255,.08);
  display:grid;place-items:center;color:#fff;padding:0;
  transition:.25s;
}
.socials a:hover{background:var(--grad-primary);transform:translateY(-3px) rotate(-6deg);color:#fff}

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero{
  position:relative;
  min-height:620px;
  padding:170px 0 88px;
  overflow:hidden;
  background-image:
    linear-gradient(90deg,rgba(22,13,46,.88) 0%,rgba(22,13,46,.62) 45%,rgba(22,13,46,.2) 100%),
    var(--page-hero-image, url("../images/sukoon_villa.jpg"));
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  color:#fff;
}
.page-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:150px;
  background:linear-gradient(180deg,rgba(251,247,255,0),var(--bg));
  pointer-events:none;
}
.page-hero .container{position:relative;z-index:2}
.page-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  color:#fff;
  padding:8px 16px;
  border-radius:999px;
  font-weight:800;
  font-size:.82rem;
  backdrop-filter:blur(10px);
}
.page-title{
  font-family:'Bricolage Grotesque',serif;
  font-size:clamp(3rem,7vw,6.2rem);
  line-height:.95;
  max-width:820px;
  margin:18px 0 18px;
  color:#fff;
}
.page-lead{
  max-width:620px;
  color:rgba(255,255,255,.86);
  font-size:1.16rem;
  line-height:1.75;
  margin:0 0 30px;
}
.page-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.page-hero.compact{
  min-height:320px;
  padding:150px 0 72px;
  display:flex;
  align-items:end;
  background-image:
    linear-gradient(90deg,rgba(22,13,46,.78) 0%,rgba(22,13,46,.48) 58%,rgba(22,13,46,.22) 100%),
    var(--page-hero-image, url("../images/sukoon_villa.jpg"));
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}
.page-hero.compact::after{
  height:70px;
  background:linear-gradient(180deg,rgba(251,247,255,0),rgba(251,247,255,.92));
}
.page-hero.compact .page-title{
  font-size:clamp(2.4rem,5vw,4.4rem);
  margin:0;
  max-width:520px;
}
.page-band{
  position:relative;
  background:var(--bg);
  overflow:hidden;
}
.page-band-white{
  background:
    radial-gradient(42% 50% at 100% 0%,rgba(255,93,162,.08),transparent 70%),
    #fff;
}
.story-grid{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:54px;
  align-items:center;
}
.story-copy h2,
.feature-copy h2{
  font-size:clamp(2.1rem,4vw,3.8rem);
  line-height:1.02;
  margin-bottom:18px;
}
.story-copy p,
.feature-copy p{
  color:var(--ink-2);
  line-height:1.85;
  font-size:1.03rem;
}
.story-media{
  position:relative;
  min-height:520px;
}
.story-photo{
  position:absolute;
  overflow:hidden;
  border-radius:30px;
  background:#fff;
  box-shadow:var(--shadow-lg);
}
.story-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .65s ease;
}
.story-photo:hover img{transform:scale(1.05)}
.story-photo-main{inset:0 12% 12% 0}
.story-photo-small{right:0;bottom:0;width:46%;height:42%;border:8px solid #fff}
.values-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.value-block{
  border-top:2px solid var(--line);
  padding-top:22px;
}
.value-block i{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#f4eeff;
  color:var(--violet);
  font-size:1.25rem;
  margin-bottom:16px;
}
.value-block h3{
  font-size:1.35rem;
  margin-bottom:8px;
}
.value-block p{
  color:var(--ink-2);
  line-height:1.7;
  margin:0;
}
.about-intro-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:54px;
  align-items:center;
}
.about-blob-photo{
  position:relative;
  overflow:hidden;
  border-radius:42% 58% 48% 52% / 56% 36% 64% 44%;
  min-height:470px;
  background:#fff;
  border:8px solid #fff;
  box-shadow:var(--shadow-lg);
  transition:transform .35s ease, box-shadow .35s ease;
}
.about-blob-photo::before{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(255,255,255,.45);
  border-radius:inherit;
  z-index:2;
  pointer-events:none;
}
.about-blob-photo img{
  width:100%;
  height:100%;
  min-height:470px;
  object-fit:cover;
  display:block;
  transition:transform .7s ease;
}
.about-blob-photo:hover{
  transform:translateY(-6px) rotate(-1deg);
  box-shadow:0 34px 70px -34px rgba(22,13,46,.48);
}
.about-blob-photo:hover img{
  transform:scale(1.055);
}
.about-copy h2{
  font-size:clamp(2.2rem,4vw,3.9rem);
  line-height:1.02;
  margin:12px 0 18px;
}
.about-copy p{
  color:var(--ink-2);
  line-height:1.82;
}
.about-highlight-list{
  display:grid;
  gap:10px;
  margin-top:22px;
}
.about-highlight{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--ink-2);
  line-height:1.55;
}
.about-highlight i{
  color:var(--violet);
  margin-top:2px;
}
.about-reason-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.about-reason-card{
  position:relative;
  min-height:100%;
  overflow:hidden;
  border-radius:24px;
  padding:26px 22px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.about-reason-card::after{
  content:"";
  position:absolute;
  right:-42px;
  bottom:-42px;
  width:110px;
  height:110px;
  border-radius:50%;
  background:var(--tint,#f4eeff);
  opacity:.75;
}
.about-reason-card:hover{
  transform:translateY(-7px) rotate(-1deg);
  border-color:rgba(124,58,237,.2);
  box-shadow:var(--shadow-md);
}
.about-reason-card i{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:var(--tint,#f4eeff);
  color:var(--violet);
  font-size:1.35rem;
  margin-bottom:18px;
}
.about-reason-card h3{
  font-size:1.15rem;
  line-height:1.15;
  margin-bottom:10px;
}
.about-reason-card p{
  color:var(--ink-2);
  line-height:1.65;
  font-size:.94rem;
  margin:0;
}
.about-benefit-grid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:56px;
  align-items:center;
}
.about-benefit-photo{
  position:relative;
  min-height:520px;
  overflow:hidden;
  border-radius:56% 44% 44% 56% / 42% 58% 42% 58%;
  border:8px solid #fff;
  box-shadow:var(--shadow-lg);
  transition:transform .35s ease, box-shadow .35s ease;
}
.about-benefit-photo img{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
  display:block;
  transition:transform .7s ease;
}
.about-benefit-photo:hover{
  transform:translateY(-6px) rotate(1deg);
  box-shadow:0 34px 70px -34px rgba(22,13,46,.48);
}
.about-benefit-photo:hover img{
  transform:scale(1.055);
}
.benefit-checks{
  display:grid;
  gap:12px;
  margin-top:24px;
}
.benefit-checks li{
  list-style:none;
  color:var(--ink-2);
  line-height:1.65;
  display:flex;
  gap:10px;
}
.benefit-checks i{
  color:#1f9d6b;
  margin-top:3px;
}
.about-amenities-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.about-amenity-card{
  position:relative;
  min-height:132px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
  overflow:hidden;
  padding:20px;
  border-radius:24px;
  background:#fff;
  border:3px solid var(--ink);
  box-shadow:6px 6px 0 var(--ink);
  color:var(--ink);
  transition:transform .25s ease, box-shadow .25s ease;
}
.about-amenity-card::after{
  content:"";
  position:absolute;
  right:-34px;
  bottom:-34px;
  width:92px;
  height:92px;
  border-radius:50%;
  background:var(--yellow-2);
  opacity:.8;
}
.about-amenity-card:nth-child(3n)::after{background:var(--pink-2)}
.about-amenity-card:nth-child(3n+1)::after{background:var(--mint-2)}
.about-amenity-card i{
  position:relative;
  z-index:1;
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:#f4eeff;
  color:var(--violet);
  font-size:1.35rem;
}
.about-amenity-card span{
  position:relative;
  z-index:1;
  font-family:'Bricolage Grotesque',serif;
  font-weight:800;
  font-size:1.08rem;
  line-height:1.15;
}
.about-amenity-card:hover{
  transform:translate(-3px,-6px) rotate(-1deg);
  box-shadow:9px 10px 0 var(--violet);
}
.property-page-list{
  display:grid;
  gap:72px;
}
.property-feature{
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(0,.88fr);
  gap:46px;
  align-items:center;
}
.property-feature:nth-child(even){
  grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);
}
.property-feature:nth-child(even) .property-feature-media{order:2}
.property-feature-media{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  min-height:470px;
  border:8px solid #fff;
  isolation:isolate;
  box-shadow:var(--shadow-lg);
  transform:rotate(-1.2deg);
  transition:transform .35s ease, box-shadow .35s ease;
}
.property-feature:nth-child(even) .property-feature-media{
  transform:rotate(1.2deg);
}
.property-feature-media::before{
  content:"";
  position:absolute;
  inset:-22px;
  z-index:-1;
  background:var(--grad-primary);
  opacity:.2;
  filter:blur(18px);
}
.property-feature-media::after{
  content:"";
  position:absolute;
  inset:14px;
  border:1px solid rgba(255,255,255,.48);
  border-radius:24px;
  pointer-events:none;
  z-index:2;
}
.property-feature-media img{
  width:100%;
  height:100%;
  min-height:470px;
  object-fit:cover;
  display:block;
  transition:transform .7s ease;
}
.property-feature-media:hover{
  transform:rotate(0) translateY(-6px);
  box-shadow:0 34px 70px -34px rgba(22,13,46,.52);
}
.property-feature-media:hover img{
  transform:scale(1.055);
}
.property-feature-copy .property-type{
  color:var(--pink);
}
.property-feature-copy h2{
  font-size:clamp(2.2rem,4.2vw,4rem);
  color:var(--ink);
  margin-bottom:14px;
}
.property-feature-copy p{
  color:var(--ink-2);
  line-height:1.82;
}
.detail-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 0;
}
.detail-pills span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--ink-2);
  font-weight:700;
  font-size:.86rem;
  box-shadow:var(--shadow-sm);
}
.gallery-page-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.gallery-page-shot{
  position:relative;
  height:320px;
  overflow:hidden;
  border-radius:30px;
  background:#fff;
  box-shadow:var(--shadow-md);
}
.gallery-page-shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .7s ease;
}
.gallery-page-shot:hover img{transform:scale(1.06)}
.gallery-label{
  position:absolute;
  left:18px;
  bottom:18px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 13px;
  border-radius:999px;
  background:rgba(22,13,46,.72);
  color:#fff;
  font-weight:800;
  backdrop-filter:blur(10px);
}
.gallery-tabs{
  gap:12px;
}
.gallery-tabs .nav-link{
  font-family:'Bricolage Grotesque',serif;
  font-weight:800;
  color:var(--ink);
  border:3px solid var(--ink);
  border-radius:999px;
  background:#fff;
  padding:12px 24px;
  box-shadow:5px 5px 0 var(--ink);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.gallery-tabs .nav-link:hover{
  transform:translate(-2px,-4px);
  box-shadow:7px 8px 0 var(--violet);
}
.gallery-tabs .nav-link.active{
  color:#fff;
  background:var(--grad-primary);
  box-shadow:7px 8px 0 var(--ink);
}
.gallery-tab-content{
  min-height:340px;
}
.contact-layout{
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);
  gap:44px;
  align-items:start;
}
.contact-quick{
  display:grid;
  gap:18px;
}
.contact-line{
  display:flex;
  gap:14px;
  padding:20px 0;
  border-bottom:1px solid var(--line);
}
.contact-line i{
  width:44px;
  height:44px;
  flex:0 0 44px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#f4eeff;
  color:var(--violet);
  font-size:1.15rem;
}
.contact-line h3{
  font-size:1.18rem;
  margin:0 0 4px;
}
.contact-line p,
.contact-line a{
  color:var(--ink-2);
  margin:0;
  line-height:1.6;
}
.contact-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  padding:30px;
  box-shadow:var(--shadow-md);
}
.contact-panel .form-control,
.contact-panel .form-select{
  min-height:56px;
  border-radius:18px;
  border:1px solid var(--line);
  padding:.95rem 1rem;
  color:var(--ink);
  box-shadow:none;
}
.contact-panel textarea.form-control{
  min-height:150px;
}
.contact-panel .form-control:focus,
.contact-panel .form-select:focus{
  border-color:rgba(124,58,237,.35);
  box-shadow:0 0 0 4px rgba(124,58,237,.08);
}
.contact-map{
  min-height:320px;
  border-radius:30px;
  overflow:hidden;
  border:8px solid #fff;
  box-shadow:var(--shadow-md);
  background:#fff;
}
.full-width-map{
  width:100%;
}
.contact-map iframe{
  width:100%;
  height:320px;
  display:block;
  border:0;
}
.full-width-map iframe{
  height:430px;
}

@media(max-width:991px){
  .page-hero{min-height:auto;padding:140px 0 76px}
  .page-hero.compact{min-height:280px;padding:132px 0 58px}
  .story-grid,
  .about-intro-grid,
  .about-benefit-grid,
  .property-feature,
  .property-feature:nth-child(even),
  .contact-layout{
    grid-template-columns:1fr;
  }
  .property-feature:nth-child(even) .property-feature-media{order:initial}
  .story-media{min-height:420px}
  .about-reason-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .about-amenities-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .values-row{grid-template-columns:1fr}
  .gallery-page-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:576px){
  .page-title{font-size:clamp(2.7rem,16vw,4rem)}
  .page-hero{padding:128px 0 64px}
  .page-hero.compact{min-height:240px;padding:118px 0 46px}
  .story-media{min-height:340px}
  .about-blob-photo,
  .about-blob-photo img,
  .about-benefit-photo,
  .about-benefit-photo img{min-height:330px}
  .about-reason-grid{grid-template-columns:1fr}
  .about-amenities-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .about-amenity-card{min-height:118px;padding:16px}
  .property-feature-media,
  .property-feature-media img{min-height:340px}
  .gallery-page-grid{grid-template-columns:1fr}
  .gallery-page-shot{height:280px}
  .gallery-tabs .nav-link{width:100%;text-align:center}
  .gallery-tabs .nav-item{width:100%}
  .contact-panel{padding:22px}
}


/* ============================================================
   UTILITY
   ============================================================ */
[data-aos]{transition-timing-function:cubic-bezier(.22,.8,.27,1)!important}

/* No-JS / AOS-disabled fallback: keep everything visible */
.no-aos [data-aos]{opacity:1!important;transform:none!important}

/* Hide hero side stickers on small screens to avoid overlap */
@media (max-width: 991px){
  .float-sticker{display:none}
  .hero-corner-shot{display:none}
  .hero{padding:130px 0 60px}
  .hero-card{padding:10px 12px;font-size:.8rem}
  .card-rating{left:-6px;top:-10px}
  .card-wifi{left:-10px;bottom:30px}
  .card-near{right:-8px}
  .marquee{margin-top:30px}
  .cta-card{padding:50px 22px}
  .cta-card .float-sticker{display:none}
}
@media (max-width: 576px){
  .hero-trust{flex-direction:column;align-items:flex-start;gap:10px}
  .hero-img{border-width:6px;border-radius:28px}
  .lifestyle-img-wrap img{height:300px}
}

/* Scrollbar */
::-webkit-scrollbar{width:10px;height:10px}
::-webkit-scrollbar-track{background:#fbf7ff}
::-webkit-scrollbar-thumb{background:linear-gradient(180deg,var(--violet),var(--pink));border-radius:10px}

/* ============================================================
   🎨 PLAYFUL PACK v2 — extra childish, extra colorful, extra animated
   Appended on top of base styles. Order matters → these win.
   ============================================================ */

/* --- Animated rainbow background on body --- */
body{
  background:
    radial-gradient(800px 500px at 10% -10%, rgba(255,210,63,.18), transparent 60%),
    radial-gradient(700px 500px at 110% 10%, rgba(255,93,162,.18), transparent 60%),
    radial-gradient(700px 500px at 50% 120%, rgba(76,201,240,.16), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

/* --- Cute custom cursor on interactive elements --- */
a, button, .btn, .why-card, .room-card, .testi-card, .amen, .prop, .accordion-button, .float-sticker{
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><text y='30' font-size='28'>👉</text></svg>") 6 6, pointer;
}

/* --- Fixed gradient headings --- */
.section-title .grad-text,
.section-title .grad-text-2,
.hero-title .word-pop{
  background: linear-gradient(90deg,#7c3aed,#ff5da2,#ffd23f);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes rainbowSlide{
  to{ background-position: 300% 50%; }
}

/* --- Wobble & jelly utility animations --- */
@keyframes wobble{
  0%,100%{ transform: rotate(-3deg); }
  50%{ transform: rotate(3deg); }
}
@keyframes jelly{
  0%,100%{ transform: scale(1,1); }
  25%{ transform: scale(1.08,.92); }
  50%{ transform: scale(.94,1.06); }
  75%{ transform: scale(1.04,.96); }
}
@keyframes wiggle{
  0%,100%{ transform: translateY(0) rotate(0); }
  25%{ transform: translateY(-4px) rotate(-4deg); }
  75%{ transform: translateY(-4px) rotate(4deg); }
}
@keyframes pop-in{
  0%{ transform: scale(.6) rotate(-10deg); opacity:0; }
  60%{ transform: scale(1.12) rotate(4deg); opacity:1; }
  100%{ transform: scale(1) rotate(0); opacity:1; }
}
@keyframes hue{
  to{ filter: hue-rotate(360deg); }
}

/* --- Buttons get bouncier and gradient-shifty --- */
.btn-sukoon-primary{
  background: linear-gradient(90deg,#7c3aed,#ff5da2,#ffd23f,#3ddc97,#4cc9f0,#7c3aed);
  background-size: 300% 100%;
  animation: none !important;
  position: relative;
}
.btn-sukoon-primary:hover{
  background: linear-gradient(90deg,#7c3aed,#ff5da2,#ffd23f,#3ddc97,#4cc9f0,#7c3aed) !important;
  background-size: 300% 100% !important;
  animation: none !important;
}
.btn-sukoon-primary::after{
  content:"✨";
  position:absolute; top:-10px; right:-6px;
  font-size:1rem;
  animation: wiggle 1.6s ease-in-out infinite;
}
.btn:hover{ animation: jelly .55s ease; }
.btn-sukoon-ghost:hover{ background:#160d2e; color:#fff; }
.btn-sukoon-dark:hover{ animation: jelly .55s ease; }

/* --- Pill badge gets a dancing sparkle --- */
.pill-badge{
  border:2px dashed var(--violet) !important;
  background: #fff8ff !important;
  animation: wiggle 4s ease-in-out infinite;
  transform-origin: center;
}

/* --- Hero title: each word gets fun underline + rotation --- */
.hero-title{
  text-shadow: 4px 4px 0 rgba(255,93,162,.08);
}
.word-underline svg{
  color: #ff5da2;
  animation: wiggle 3s ease-in-out infinite;
}
.hero-img{
  border:10px solid #fff !important;
  outline: 4px dashed var(--pink);
  outline-offset: -16px;
  animation: floatTilt 8s ease-in-out infinite;
}
@keyframes floatTilt{
  0%,100%{ transform: rotate(2deg) translateY(0); }
  50%{ transform: rotate(-2deg) translateY(-10px); }
}

/* --- Hero floating cards spin a tiny bit --- */
.hero-card{
  border:3px solid #160d2e;
  box-shadow: 6px 6px 0 #160d2e !important;
  animation: float 6s ease-in-out infinite, wiggle 5s ease-in-out infinite;
}

/* --- Stickers: bigger, bouncier, with confetti dot --- */
.float-sticker{
  border:3px solid #160d2e;
  box-shadow: 4px 4px 0 #160d2e;
  font-size:.95rem !important;
  animation: float 7s ease-in-out infinite, wiggle 4s ease-in-out infinite;
}

/* --- Doodles get hue rotation party --- */
.doodle{
  font-size:2.6rem !important;
  animation: spin-slow 10s linear infinite, hue 8s linear infinite !important;
  text-shadow: 2px 2px 0 rgba(0,0,0,.08);
}

/* --- Section kickers: chunky outlined sticker style --- */
.kicker{
  border:2px solid #160d2e;
  box-shadow: 3px 3px 0 #160d2e;
  font-size:.85rem !important;
  padding:8px 16px !important;
  text-transform: uppercase;
  letter-spacing:.04em;
  transform: rotate(-2deg);
  display:inline-block;
}
.kicker:hover{ animation: jelly .6s ease; }

/* --- Why cards: chunky borders + sticker shadow + tilt on hover --- */
.why-card{
  border:3px solid #160d2e !important;
  box-shadow: 8px 8px 0 #160d2e !important;
  border-radius: 28px !important;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
}
.why-card:hover{
  transform: translate(-3px,-6px) rotate(-1.5deg) !important;
  box-shadow: 12px 14px 0 var(--tint,#ff5da2) !important;
  border-color:#160d2e !important;
}
.why-card:nth-child(2n) { transform: rotate(1deg); }
.why-card:nth-child(3n) { transform: rotate(-1deg); }
.why-icon{
  border:3px solid #160d2e;
  box-shadow: 4px 4px 0 #160d2e;
  border-radius: 22px !important;
  animation: wiggle 3.5s ease-in-out infinite;
}

/* --- Lifestyle images: chunky polaroid look --- */
.lifestyle-img-wrap{
  border:6px solid #fff;
  outline: 3px solid #160d2e;
  box-shadow: 12px 12px 0 #160d2e !important;
  border-radius: 28px !important;
}
.lifestyle-img-wrap:hover{
  animation: jelly .7s ease;
}
.img-tag{
  border:2px solid #160d2e !important;
  box-shadow: 3px 3px 0 #160d2e !important;
  animation: wiggle 4s ease-in-out infinite;
}
.check-list li{
  transition: transform .2s;
}
.check-list li:hover{ transform: translateX(8px) rotate(-1deg); color: var(--violet); }
.check-list i{
  display:inline-block;
  animation: pop-in .6s ease both;
}

/* --- Rooms: sticker cards + ribbon tag --- */
.room-card{
  border:3px solid #160d2e !important;
  box-shadow: 8px 8px 0 #160d2e !important;
  border-radius: 26px !important;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
}
.room-card:hover{
  transform: translate(-3px,-8px) rotate(-1deg) !important;
  box-shadow: 12px 16px 0 var(--pink) !important;
}
.room-card.popular{
  animation: wobble 5s ease-in-out infinite;
  box-shadow: 10px 10px 0 var(--pink) !important;
}
.room-tag{
  border:2px solid #160d2e !important;
  box-shadow: 3px 3px 0 #160d2e !important;
  animation: wiggle 4s ease-in-out infinite;
}
.room-feats li{
  background:#fbf7ff;
  padding:6px 10px;
  border-radius: 12px;
  transition: transform .2s;
}
.room-feats li:hover{ transform: scale(1.06) rotate(-2deg); background: var(--yellow-2); }

/* --- Amenities: chunkier, bouncier --- */
.amen{
  border:3px solid #160d2e !important;
  box-shadow: 6px 6px 0 #160d2e !important;
  background: #fff !important;
}
.amen:hover{
  transform: translate(-3px,-6px) rotate(-2deg) !important;
  box-shadow: 9px 10px 0 var(--violet) !important;
}
.amen i{
  border:2px solid #160d2e;
  animation: wiggle 4s ease-in-out infinite;
}
.amen-spotlight{
  border:4px solid #160d2e;
  box-shadow: 12px 12px 0 #160d2e;
  animation: hue 14s linear infinite;
}
.amen-spotlight-pills span{
  border:2px solid rgba(255,255,255,.6) !important;
  animation: wiggle 5s ease-in-out infinite;
}

/* --- Properties: thick borders + colorful overlays --- */
.prop{
  border:3px solid #160d2e;
  box-shadow: 8px 8px 0 #160d2e;
  border-radius: 26px !important;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
}
.prop:hover{
  transform: translate(-3px,-6px) rotate(-1deg);
  box-shadow: 12px 14px 0 var(--mint);
}
.prop-overlay{
  background: linear-gradient(180deg,
    rgba(124,58,237,.05) 18%,
    rgba(255,93,162,.5) 60%,
    rgba(22,13,46,.95) 100%) !important;
}

/* --- Testimonials: speech-bubble style --- */
.testi-card{
  border:3px solid #160d2e !important;
  box-shadow: 8px 8px 0 #160d2e !important;
  border-radius: 28px !important;
  position: relative;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.testi-card::after{
  content:"";
  position:absolute;
  bottom:-14px; left:36px;
  width:24px; height:24px;
  background:#fff;
  border-right:3px solid #160d2e;
  border-bottom:3px solid #160d2e;
  transform: rotate(45deg);
}
.testi-card:hover{ transform: translateY(-8px) rotate(-1deg); }
.testi-card.tint-violet{ background:#f4eeff !important; }
.testi-card.tint-pink{ background:#ffe6f0 !important; }
.testi-card.tint-yellow{ background:#fff8d4 !important; }
.testi-card.tint-mint{ background:#dff8ec !important; }
.testi-card.tint-peach{ background:#ffe6d6 !important; }
.testi-card.tint-blue{ background:#dff1fb !important; }
.testi-foot img{
  animation: wiggle 5s ease-in-out infinite;
}
.testi-btn{
  border:3px solid #160d2e !important;
  box-shadow: 4px 4px 0 #160d2e !important;
}
.testi-btn:hover{ animation: jelly .55s ease; }

/* --- FAQ: bouncy accordion --- */
.sukoon-acc .accordion-item{
  border:3px solid #160d2e !important;
  box-shadow: 6px 6px 0 #160d2e !important;
  border-radius: 22px !important;
  transition: transform .25s;
}
.sukoon-acc .accordion-item:hover{ transform: translate(-2px,-2px) rotate(-.5deg); }
.sukoon-acc .accordion-button:not(.collapsed){
  background: linear-gradient(90deg, #fff, #fff8ff) !important;
}
.sukoon-acc .accordion-button::after{
  display:inline-grid; place-items:center;
  width:34px !important; height:34px !important;
  border-radius: 50%;
  background: var(--yellow) !important;
  border: 2px solid #160d2e;
  box-shadow: 2px 2px 0 #160d2e;
  font-size:1.4rem !important;
  transition: transform .3s;
}
.sukoon-acc .accordion-button:not(.collapsed)::after{
  background: var(--pink) !important;
  color:#fff;
  transform: rotate(180deg);
}

/* --- CTA card: animated rainbow border + chunky --- */
.cta-card{
  border: 4px solid #160d2e;
  box-shadow: 14px 14px 0 #160d2e;
  background:
    linear-gradient(135deg,#160d2e 0%,#3a1c71 40%,#7c3aed 70%,#ff5da2 100%) !important;
}
.cta-card::before{
  content:"";
  position:absolute; inset:8px;
  border:2px dashed rgba(255,255,255,.35);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events:none;
  animation: spin-slow 60s linear infinite;
}
.cta-form .btn{
  background: var(--yellow) !important;
  color: #160d2e !important;
  border: 2px solid #160d2e !important;
  box-shadow: 4px 4px 0 #160d2e !important;
}
.cta-form .btn:hover{ animation: jelly .55s ease; transform: translateY(-2px); }

/* --- Marquee: rainbow stripe --- */
.marquee{
  background: linear-gradient(90deg,#7c3aed,#ff5da2,#ffd23f) !important;
  background-size: 100% 100% !important;
  animation: none !important;
  border:3px solid #160d2e;
  box-shadow: 6px 6px 0 #160d2e;
}
.marquee-track{ font-weight: 800 !important; }

/* --- Footer: playful socials --- */
.footer{
  background: linear-gradient(180deg,#160d2e 0%, #2a1750 100%);
  position: relative;
  overflow: hidden;
}
.footer::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(300px 200px at 10% 20%, rgba(255,93,162,.18), transparent 60%),
    radial-gradient(300px 200px at 90% 80%, rgba(76,201,240,.15), transparent 60%);
  pointer-events:none;
}
.footer h6{ position:relative; }
.footer h6::after{
  content:""; display:block; width:36px; height:4px;
  background: linear-gradient(90deg,var(--pink),var(--yellow));
  border-radius:4px; margin-top:6px;
}
.socials a{ animation: wiggle 5s ease-in-out infinite; border:2px solid rgba(255,255,255,.15); }
.socials a:nth-child(2){ animation-delay:-.6s; }
.socials a:nth-child(3){ animation-delay:-1.2s; }
.socials a:nth-child(4){ animation-delay:-1.8s; }

/* --- Floating confetti shapes scattered across the page (added by JS) --- */
.confetti{
  position: fixed;
  pointer-events: none;
  font-size: 1.6rem;
  z-index: 1;
  opacity: .9;
  animation: floaty 9s ease-in-out infinite;
  filter: drop-shadow(2px 2px 0 rgba(0,0,0,.08));
}
@keyframes floaty{
  0%,100%{ transform: translateY(0) rotate(0); }
  50%{ transform: translateY(-26px) rotate(18deg); }
}

/* --- Inner pages: homepage-level bubble party + chunky playful surfaces --- */
.inner-bubbles{
  position:fixed;
  inset:0;
  overflow:hidden;
  pointer-events:none;
  z-index:0;
}
.inner-bubbles span{
  position:absolute;
  width:74px;
  height:74px;
  border:3px solid #160d2e;
  border-radius:50%;
  background:var(--yellow-2);
  box-shadow:6px 6px 0 #160d2e;
  opacity:.5;
  animation:bubbleFloat 12s ease-in-out infinite;
}
.inner-bubbles span:nth-child(1){left:5%;top:24%;background:var(--pink-2);animation-delay:-1s}
.inner-bubbles span:nth-child(2){right:8%;top:34%;width:96px;height:96px;background:var(--mint-2);animation-delay:-4s}
.inner-bubbles span:nth-child(3){left:12%;bottom:14%;width:52px;height:52px;background:var(--blue-2);animation-delay:-7s}
.inner-bubbles span:nth-child(4){right:18%;bottom:20%;background:var(--yellow-2);animation-delay:-2.5s}
.inner-bubbles span:nth-child(5){left:48%;top:48%;width:42px;height:42px;background:var(--lilac);animation-delay:-6s}
@keyframes bubbleFloat{
  0%,100%{transform:translateY(0) translateX(0) rotate(0)}
  35%{transform:translateY(-22px) translateX(12px) rotate(9deg)}
  70%{transform:translateY(14px) translateX(-10px) rotate(-7deg)}
}
.page-hero.compact{
  border-bottom:4px solid #160d2e;
}
.page-hero.compact .page-title{
  display:inline-block;
  padding:.12em .28em .18em;
  background:rgba(255,255,255,.92);
  color:#160d2e;
  border:4px solid #160d2e;
  border-radius:24px;
  box-shadow:9px 9px 0 #160d2e;
  transform:rotate(-1deg);
  animation:pop-in .7s ease both, wiggle 5s ease-in-out infinite .8s;
}
.page-band,
.page-band-white,
.section-amenities{
  position:relative;
  z-index:1;
}
.about-blob-photo,
.about-benefit-photo,
.property-feature-media,
.gallery-page-shot,
.contact-panel,
.contact-map{
  border:4px solid #160d2e !important;
  box-shadow:10px 10px 0 #160d2e !important;
}
.about-blob-photo:hover,
.about-benefit-photo:hover,
.property-feature-media:hover,
.gallery-page-shot:hover,
.contact-panel:hover,
.contact-map:hover{
  animation:jelly .65s ease;
  box-shadow:14px 14px 0 var(--pink) !important;
}
.about-reason-card,
.about-amenity-card,
.contact-line{
  border:3px solid #160d2e !important;
  box-shadow:6px 6px 0 #160d2e !important;
}
.about-reason-card:hover,
.about-amenity-card:hover,
.contact-line:hover{
  transform:translate(-3px,-6px) rotate(-1deg) !important;
  box-shadow:10px 11px 0 var(--violet) !important;
}
.about-highlight{
  transition:transform .25s ease, color .25s ease;
}
.about-highlight:hover,
.benefit-checks li:hover,
.property-points li:hover{
  transform:translateX(8px) rotate(-1deg);
  color:var(--violet);
}
.property-feature-copy h2,
.about-copy h2,
.contact-panel h2{
  text-shadow:4px 4px 0 rgba(255,210,63,.35);
}
.gallery-page-shot{
  transition:transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
}
.gallery-page-shot:hover{
  transform:translate(-4px,-8px) rotate(-1deg);
}
.virtual-tour-shot{
  padding:0;
}
.virtual-tour-trigger{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
  text-align:left;
}
.virtual-tour-trigger img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.virtual-tour-modal .modal-content{
  border:4px solid #160d2e;
  border-radius:28px;
  overflow:hidden;
  box-shadow:10px 10px 0 #160d2e;
}
.virtual-tour-modal .modal-header{
  padding:20px 24px 12px;
  border-bottom:0;
}
.virtual-tour-modal .modal-body{
  padding:0 24px 24px;
}
.virtual-tour-frame-wrap{
  overflow:hidden;
  border:4px solid #160d2e;
  border-radius:24px;
  box-shadow:8px 8px 0 var(--pink);
  background:#fff;
}
.virtual-tour-frame-wrap iframe{
  display:block;
  width:100%;
  min-height:72vh;
  border:0;
  background:#fff;
}
.virtual-tour-actions{
  display:flex;
  justify-content:flex-end;
  margin-top:18px;
}
@media(max-width:768px){
  .virtual-tour-modal .modal-body{
    padding:0 16px 16px;
  }
  .virtual-tour-frame-wrap iframe{
    min-height:60vh;
  }
}
.contact-panel .form-control,
.contact-panel .form-select{
  border:3px solid #160d2e !important;
  box-shadow:4px 4px 0 #160d2e !important;
  transition:transform .25s ease, box-shadow .25s ease;
}
.contact-panel .form-control:focus,
.contact-panel .form-select:focus{
  transform:translate(-2px,-2px);
  box-shadow:7px 7px 0 var(--mint) !important;
}
.gallery-tabs .nav-link,
.about-amenity-card i,
.contact-line i{
  animation:wiggle 4.5s ease-in-out infinite;
}

/* --- Section dividers: wavy SVG-like cute strip via gradient stripes --- */
.section + .section{
  position: relative;
}

/* --- Sparkle on hover for cards --- */
.why-card, .room-card, .testi-card, .prop{
  position: relative;
}
.why-card::after, .room-card::after, .testi-card::after, .prop::after{ /* keep existing; no override */ }

/* --- Section title gets a tiny scribble star --- */
.section-title::before{
  content:"✺";
  display:inline-block;
  margin-right: 10px;
  color: var(--pink);
  animation: spin-slow 8s linear infinite;
}

/* --- Mobile keep playful but readable --- */
@media (max-width: 991px){
  .why-card, .room-card, .testi-card, .amen, .prop, .lifestyle-img-wrap, .sukoon-acc .accordion-item, .cta-card{
    box-shadow: 5px 5px 0 #160d2e !important;
  }
  .cta-card{ box-shadow: 8px 8px 0 #160d2e; }
  .section-title::before{ display:none; }
}

/* --- Reduced motion respect --- */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation: none !important;
    transition: none !important;
  }
}

/* keep section stickers visible on mobile (only hide hero stickers there) */
@media (max-width: 991px){
  .section > .float-sticker{ display:inline-block !important; font-size:.72rem !important; padding:6px 10px !important; }
  .section-why{padding-top:132px}
  .section-why > .float-sticker{
    top:16px !important;
    left:14px !important;
    right:auto !important;
    max-width:calc(100% - 28px);
    white-space:normal;
    z-index:1;
  }
  .section-why > .float-sticker + .float-sticker{
    top:54px !important;
    left:14px !important;
    right:auto !important;
  }
  .section-why .section-head{padding-top:10px}
}
@media (max-width: 576px){
  .section-why > .float-sticker:first-child{display:none !important}
  .section-faq > .float-sticker:first-child{display:none !important}
  .section-why{padding-top:148px}
  .section-why > .float-sticker{
    top:12px !important;
    font-size:.68rem !important;
  }
  .section-why > .float-sticker + .float-sticker{
    top:48px !important;
  }
  .section-why .section-head{padding-top:18px}

  #roomsCarouselMain .carousel-item .row > div:not(:first-child),
  #galleryCarousel .carousel-item .row > div:not(:first-child),
  #testiCarousel .carousel-item .row > div:not(:first-child){
    display:none;
  }

  #roomsCarouselMain .carousel-item .row,
  #galleryCarousel .carousel-item .row,
  #testiCarousel .carousel-item .row{
    justify-content:center;
  }
}

/* Bulletproof: prevent any horizontal scroll/shift on mobile */
html, body{ overflow-x: clip; max-width: 100vw; }
.section, .hero, .footer{ overflow-x: clip; }

/* Remove decorative emoji overlays and emoji-style chrome */
a, button, .btn, .why-card, .room-card, .testi-card, .amen, .prop, .accordion-button, .float-sticker{
  cursor:pointer !important;
}
.btn-sukoon-primary::after,
.section-title::before{
  content:none !important;
}
.confetti{
  display:none !important;
}

/* ============================================================
   STUDENT WELLBEING
   ============================================================ */
.wellbeing-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.wellbeing-card{
  display:flex;
  flex-direction:column;
  height:100%;
  overflow:hidden;
  background:#fff;
  border:3px solid #160d2e;
  border-radius:26px;
  box-shadow:8px 8px 0 #160d2e;
  transition:transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
}
.wellbeing-card:hover{
  transform:translate(-3px,-8px) rotate(-1deg);
  box-shadow:12px 14px 0 var(--mint);
}
.wellbeing-card:hover .wellbeing-image img{
  transform:scale(1.07);
}
.wellbeing-card > a{
  display:flex;
  flex-direction:column;
  flex:1;
  height:100%;
}
.wellbeing-image{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#f4eeff;
}
.wellbeing-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .65s ease;
}
.wellbeing-tag{
  position:absolute;
  left:14px;
  top:14px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 12px;
  border:2px solid #160d2e;
  border-radius:999px;
  background:var(--yellow);
  color:#160d2e;
  box-shadow:3px 3px 0 #160d2e;
  font-size:.78rem;
  font-weight:800;
}
.wellbeing-body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:24px;
}
.wellbeing-body h2{
  font-size:1.45rem;
  line-height:1.08;
  margin:0 0 10px;
}
.wellbeing-body p{
  color:var(--muted);
  line-height:1.65;
  margin:0 0 20px;
}
.wellbeing-body .btn{
  align-self:flex-start;
  margin-top:auto;
}
.wellbeing-feature{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:46px;
  align-items:center;
}
.wellbeing-feature-media{
  min-height:420px;
  overflow:hidden;
  border:4px solid #160d2e;
  border-radius:30px;
  background:#fff;
  box-shadow:10px 10px 0 #160d2e;
  transform:rotate(-1.5deg);
}
.wellbeing-feature-media img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  display:block;
}
.wellbeing-feature-copy h2{
  font-size:clamp(2rem,4vw,3.5rem);
  line-height:1.03;
  margin:16px 0;
}
.wellbeing-feature-copy p,
.article-content p{
  color:var(--ink-2);
  line-height:1.85;
  font-size:1.04rem;
}
.article-shell{
  max-width:940px;
  margin:0 auto;
}
.article-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 24px;
}
.article-meta span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 13px;
  border-radius:999px;
  background:#fff;
  border:2px solid #160d2e;
  box-shadow:3px 3px 0 #160d2e;
  color:var(--ink-2);
  font-weight:800;
  font-size:.84rem;
}
.article-hero-image{
  overflow:hidden;
  border:4px solid #160d2e;
  border-radius:30px;
  background:#fff;
  box-shadow:10px 10px 0 #160d2e;
}
.article-hero-image img{
  width:100%;
  max-height:520px;
  object-fit:cover;
  display:block;
}
.article-content{
  max-width:760px;
  margin:48px auto 0;
}
.article-content h2{
  font-size:clamp(1.65rem,3vw,2.45rem);
  margin:34px 0 12px;
}
.article-callout{
  margin:34px 0;
  padding:26px;
  border:3px solid #160d2e;
  border-radius:26px;
  background:#fff3b0;
  box-shadow:7px 7px 0 #160d2e;
  font-family:'Bricolage Grotesque',serif;
  font-weight:800;
  font-size:1.35rem;
  line-height:1.25;
  color:var(--ink);
}
@media(max-width:992px){
  .wellbeing-grid,
  .wellbeing-feature{
    grid-template-columns:1fr;
  }
  .wellbeing-card{
    max-width:680px;
  }
}
@media(max-width:576px){
  .wellbeing-body{padding:20px}
  .wellbeing-feature-media,
  .wellbeing-feature-media img{min-height:320px}
  .article-content{margin-top:34px}
}


.contact-btn {
  position: fixed;
  right: -51px;
  top: 50%;
  
  transform: translateY(-50%) rotate(180deg);
  
  padding: 10px;
  border-radius: 50px;
  
  z-index: 999;
  text-decoration: none;
}

/* Inner white capsule */
.contact-btn span {
  display: inline-block;
    background: #a946d3;
    color: #fdfeff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 6px 0 #1a1333;
    transform: rotate(90deg);
}

/* Hover effect */


/* Responsive */
@media (max-width: 768px) {
  .contact-btn {
    right: -41px;
  }

  .contact-btn span {
    font-size: 16px;
    padding: 10px 22px;
  }
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  
  width: 55px;
  height: 55px;
  
  background: #25D366;
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  
  z-index: 999;
  transition: all 0.3s ease;
}

/* Icon */
.whatsapp-btn img {
  width: 28px;
  height: 28px;
  filter: invert(1); /* makes icon white */
}

/* Hover effect */
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* Mobile */
@media (max-width: 768px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-btn img {
    width: 24px;
    height: 24px;
  }
}
