/* ==========================================================================
   Vidhi Digital — custom styles (layered on top of Bootstrap 5)
   Print & graphics shop, Fort, Mumbai.
   Identity: electric-violet brand + CMYK (cyan/magenta/yellow) accent language.
   Fonts: Space Grotesk (display) + Inter (body).
   ========================================================================== */

/* ------------------------------- Tokens ---------------------------------- */
:root {
  --ink: #16101f;
  /* near-black violet: text + dark sections */
  --ink-2: #2a2137;
  --brand: #6a2cf5;
  /* electric violet: primary brand */
  --brand-d: #5620cc;
  /* darker violet: hovers */
  --brand-soft: #efe8ff;
  /* violet tint: chips, icon tiles */
  --c: #00c2d6;
  /* CMYK cyan   */
  --m: #ff2d8e;
  /* CMYK magenta*/
  --y: #ffc531;
  /* CMYK yellow */
  --paper: #ffffff;
  --mist: #f6f3fd;
  /* soft violet-tinted off-white */
  --line: #e7e1f3;
  /* hairline borders */
  --muted: #6c6580;
  /* secondary text */

  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 6px 18px rgba(22, 16, 31, .06);
  --shadow: 0 18px 44px rgba(72, 32, 180, .12);
  --shadow-lg: 0 28px 70px rgba(72, 32, 180, .20);
  --container: 1200px;
  --sp: clamp(64px, 8vw, 110px);
  /* vertical section rhythm */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------- Base ------------------------------------ */
* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
.display {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
}

p {
  color: #4a4458;
}

a {
  color: var(--brand);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: var(--m);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}

.container {
  max-width: var(--container);
}

.section {
  padding-block: var(--sp);
}

.bg-mist {
  background: var(--mist);
}

.bg-ink {
  background: var(--ink);
  color: #fff;
}

/* Section headings ------------------------------------------------------- */
.sec-head {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.sec-head.center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.sec-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  margin: .35rem 0 0;
}

.sec-head p {
  margin: .9rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  font-weight: 600;
  color: var(--brand);
}

/* CMYK dot trio — the print-world signature, reused in eyebrows */
.cmyk-dots {
  display: inline-flex;
  gap: 4px;
}

.cmyk-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: block;
}

.cmyk-dots i:nth-child(1) {
  background: var(--c);
}

.cmyk-dots i:nth-child(2) {
  background: var(--m);
}

.cmyk-dots i:nth-child(3) {
  background: var(--y);
}

/* ------------------------------ Buttons ---------------------------------- */
.btn {
  --bs-btn-focus-box-shadow: 0 0 0 .25rem rgba(106, 44, 245, .25);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: .72rem 1.5rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, color .25s;
  border: 2px solid transparent;
}

.btn:active {
  transform: translateY(0);
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(106, 44, 245, .28);
}

.btn-brand:hover {
  background: var(--brand-d);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(106, 44, 245, .36);
}

.btn-accent {
  background: var(--m);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 45, 142, .28);
}

.btn-accent:hover {
  background: #e51f7c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 45, 142, .36);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

.btn-outline-light2 {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.btn-outline-light2:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-lg {
  padding: .95rem 2rem;
  font-size: 1.05rem;
}

/* --------------------------- Top bar + nav -------------------------------- */
.topbar {
  background: var(--ink);
  color: #cfc6e6;
  font-size: .86rem;
}

.topbar a {
  color: #e9e3f7;
}

.topbar a:hover {
  color: #fff;
}

.topbar .sep {
  opacity: .35;
}

.navbar {
  background: #fff;
  transition: box-shadow .3s, padding .3s;
  padding-block: .85rem;
}

.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(22, 16, 31, .08);
  padding-block: .55rem;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -.02em;
  color: var(--ink);
}

.brand-mark .glyph {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  position: relative;
  flex: 0 0 auto;
  background: var(--ink);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.05rem;
}

/* CMYK corner flecks on the logo glyph */
.brand-mark .glyph::before,
.brand-mark .glyph::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .9;
}

.brand-mark .glyph::before {
  background: var(--m);
  top: -5px;
  right: -5px;
}

.brand-mark .glyph::after {
  background: var(--c);
  bottom: -5px;
  left: -5px;
}

.brand-mark small {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: -2px;
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--ink);
  margin-inline: .35rem;
  position: relative;
  padding-block: .4rem;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: .6rem;
  right: .6rem;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--c), var(--m), var(--y));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar .nav-link.active {
  color: var(--brand);
}

.navbar-toggler {
  border: 0;
  padding: .3rem .5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ------------------------------- Hero ------------------------------------ */
#heroCarousel .carousel-item {
  height: clamp(560px, 80vh, 760px);
  background-size: cover;
  background-position: center;
}

#heroCarousel .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.514) 45%, rgba(0, 0, 0, 0.13) 100%);
}

.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 660px;
  color: #fff;
}

.hero-copy .eyebrow {
  color: #fff;
}

.hero-copy .cmyk-dots i {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .15);
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  margin: .6rem 0 1rem;
}

.hero-copy p {
  color: #e6e0f5;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  max-width: 560px;
}

.hero-copy .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.8rem;
}

/* CMYK marker highlight on key hero words */
.hl {
  position: relative;
  white-space: nowrap;
  color: #fff;
}

.hl::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: .08em;
  height: .34em;
  z-index: -1;
  border-radius: 3px;
}

.hl-c::after {
  background: var(--c);
}

.hl-m::after {
  background: var(--m);
}

.hl-y::after {
  background: var(--y);
}

.carousel-indicators {
  z-index: 4;
  margin-bottom: 1.4rem;
}

.carousel-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .45);
  opacity: 1;
  transition: width .3s, background .3s;
}

.carousel-indicators .active {
  width: 30px;
  border-radius: 6px;
  background: var(--m);
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 4;
  width: 8%;
  opacity: 0;
  transition: opacity .3s;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
  opacity: .85;
}

/* ---------------------------- Marquee ribbon ----------------------------- */
.ribbon {
  background: var(--brand);
  color: #fff;
  overflow: hidden;
  border-block: 3px solid rgba(255, 255, 255, .12);
}

.ribbon .track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.ribbon .item {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: .85rem 0;
  white-space: nowrap;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: .02em;
}

.ribbon .item span {
  padding-inline: 1.1rem;
}

.ribbon .item i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--y);
  display: inline-block;
}

.ribbon .item:nth-child(3n) i {
  background: var(--c);
}

.ribbon .item:nth-child(3n+1) i {
  background: var(--m);
}

/* ------------------------------- About ----------------------------------- */
.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  height: 410px;
}

.about-media .frame {
  position: absolute;
  inset: auto -14px -14px auto;
  width: 62%;
  height: 62%;
  border: 3px solid var(--m);
  border-radius: var(--radius);
  z-index: -1;
}

.about-media .badge-float {
  position: absolute;
  left: -18px;
  bottom: 26px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: .9rem 1.15rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}

.about-media .badge-float b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: var(--brand);
  line-height: 1;
}

.about-media .badge-float small {
  color: var(--muted);
  font-size: .78rem;
}

.ticklist {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.ticklist li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin-bottom: .85rem;
  color: var(--ink);
  font-weight: 500;
}

.ticklist svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

/* --------------------------- Service cards ------------------------------- */
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 2;
}

.services-grid>[class*="col-"]:nth-child(4n+1) .svc-card::before {
  background: var(--c);
}

.services-grid>[class*="col-"]:nth-child(4n+2) .svc-card::before {
  background: var(--m);
}

.services-grid>[class*="col-"]:nth-child(4n+3) .svc-card::before {
  background: var(--y);
}

.services-grid>[class*="col-"]:nth-child(4n) .svc-card::before {
  background: var(--brand);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.svc-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--mist);
}

.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.svc-card:hover .svc-media img {
  transform: scale(1.07);
}

.svc-body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.svc-body h3 {
  font-size: 1.16rem;
  margin: 0 0 .45rem;
}

.svc-body p {
  font-size: .94rem;
  color: var(--muted);
  margin: 0 0 1.1rem;
}

.svc-body .btn {
  margin-top: auto;
  align-self: flex-start;
  padding: .55rem 1.15rem;
  font-size: .92rem;
}

/* --------------------------- Booking band -------------------------------- */
.booking {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-radius: 26px;
  padding: clamp(34px, 5vw, 60px);
  box-shadow: var(--shadow-lg);
}

.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 8% 0%, rgba(255, 45, 142, .55), transparent 60%),
    radial-gradient(600px 320px at 100% 100%, rgba(0, 194, 214, .45), transparent 60%),
    linear-gradient(120deg, rgba(106, 44, 245, .55), rgba(22, 16, 31, 0));
  z-index: 0;
}

.booking>* {
  position: relative;
  z-index: 1;
}

.booking .eyebrow {
  color: #fff;
}

.booking h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
}

.booking p {
  color: #eee6ff;
}

.booking .call-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: .4rem;
}

.booking .call-lines a {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.booking .call-lines a:hover {
  color: var(--y);
}

.booking .book-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.booking .note {
  font-size: .9rem;
  color: #cfc6e6;
  margin-top: 1rem;
}

/* --------------------------- Why choose ---------------------------------- */
.feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.feat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feat .tile {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--brand-soft);
  color: var(--brand);
}

.feat:nth-child(3n+1) .tile {
  background: rgba(0, 194, 214, .14);
  color: #0090a1;
}

.feat:nth-child(3n+2) .tile {
  background: rgba(255, 45, 142, .12);
  color: var(--m);
}

.feat:nth-child(3n) .tile {
  background: rgba(255, 197, 49, .18);
  color: #c98a00;
}

.feat h3 {
  font-size: 1.12rem;
  margin: 0 0 .4rem;
}

.feat p {
  font-size: .94rem;
  color: var(--muted);
  margin: 0;
}

/* ----------------------------- Counters ---------------------------------- */
.counters {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.counters::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 340px at 100% 0%, rgba(106, 44, 245, .45), transparent 65%);
}

.counters .container {
  position: relative;
  z-index: 1;
}

.counter-item {
  text-align: center;
  padding: .5rem;
  position: relative;
}

.counter-item .num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1;
  background: linear-gradient(90deg, #fff, #e7dcff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.counter-item .num .sfx {
  color: var(--y);
  -webkit-text-fill-color: var(--y);
}

.counter-item .lbl {
  color: #cfc6e6;
  margin-top: .5rem;
  font-size: .98rem;
  letter-spacing: .01em;
}

@media (min-width:768px) {
  .counter-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 14%;
    height: 72%;
    width: 1px;
    background: rgba(255, 255, 255, .14);
  }
}

/* ---------------------------- How it works ------------------------------- */
.step {
  position: relative;
  padding: 1.6rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.step .no {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  margin-bottom: 1rem;
}

.how-grid>[class*="col-"]:nth-child(4n+1) .step .no {
  background: var(--c);
}

.how-grid>[class*="col-"]:nth-child(4n+2) .step .no {
  background: var(--m);
}

.how-grid>[class*="col-"]:nth-child(4n+3) .step .no {
  background: #c98a00;
}

.how-grid>[class*="col-"]:nth-child(4n) .step .no {
  background: var(--brand);
}

.step h3 {
  font-size: 1.1rem;
  margin: 0 0 .4rem;
}

.step p {
  font-size: .93rem;
  color: var(--muted);
  margin: 0;
}

/* ------------------------------ Gallery ---------------------------------- */
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(22, 16, 31, .55));
  opacity: 0;
  transition: opacity .35s;
}

.gallery-item .zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .35s, transform .35s;
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.09);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover .zoom {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(12, 8, 20, .9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.lightbox .close {
  position: absolute;
  top: 18px;
  right: 22px;
  color: #fff;
  font-size: 2rem;
  background: none;
  border: 0;
  cursor: pointer;
  line-height: 1;
}

/* ---------------------------- Testimonials ------------------------------- */
.rev {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.rev:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.rev .quote {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--brand-soft);
  position: absolute;
  top: .7rem;
  right: 1.2rem;
}

.rev .stars {
  color: var(--y);
  letter-spacing: 2px;
  margin-bottom: .7rem;
}

.rev p {
  color: #4a4458;
  margin: 0 0 1.2rem;
}

.rev .who {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.rev .ava {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.rev:nth-child(3n+1) .ava {
  background: var(--brand);
}

.rev:nth-child(3n+2) .ava {
  background: var(--m);
}

.rev:nth-child(3n) .ava {
  background: #0090a1;
}

.rev .who b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
}

.rev .who small {
  color: var(--muted);
}

/* -------------------------------- FAQ ------------------------------------ */
.faq .accordion {
  --bs-accordion-border-color: var(--line);
  max-width: 840px;
  margin-inline: auto;
}

.faq .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .9rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq .accordion-button {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  padding: 1.15rem 1.3rem;
  background: #fff;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--brand);
  background: var(--brand-soft);
  box-shadow: none;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%236a2cf5' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M8 3v10M3 8h10'/%3E%3C/svg%3E");
  background-size: 1rem;
}

.faq .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%236a2cf5' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M3 8h10'/%3E%3C/svg%3E");
  transform: none;
}

.faq .accordion-body {
  color: #4a4458;
  padding: 0 1.3rem 1.25rem;
}

/* ------------------------------ Contact ---------------------------------- */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-card .tile {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: .9rem;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin: 0 0 .35rem;
}

.contact-card a,
.contact-card p {
  color: var(--muted);
  font-size: .96rem;
  margin: 0;
}

.contact-card a:hover {
  color: var(--brand);
}

.enquiry {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.enquiry .form-label {
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1.5px solid var(--line);
  padding: .7rem .9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 .2rem rgba(106, 44, 245, .15);
}

.form-success {
  display: none;
  align-items: center;
  gap: .6rem;
  background: rgba(0, 194, 214, .12);
  color: #0090a1;
  border-radius: 12px;
  padding: .8rem 1rem;
  margin-top: 1rem;
  font-weight: 600;
}

.form-success.show {
  display: flex;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* ------------------------------ Footer ----------------------------------- */
.footer {
  background: var(--ink);
  color: #cfc6e6;
  padding-top: clamp(56px, 7vw, 84px);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c), var(--m), var(--y));
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.1rem;
}

.footer a {
  color: #cfc6e6;
}

.footer a:hover {
  color: #fff;
}

.footer .flinks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .flinks li {
  margin-bottom: .6rem;
}

.footer .brand-mark {
  color: #fff;
}

.footer .brand-mark small {
  color: #b7a9e0;
}

.footer .fabout {
  color: #b3a9cc;
  font-size: .94rem;
  margin-top: 1rem;
}

.footer .contact-line {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin-bottom: .7rem;
  color: #cfc6e6;
  font-size: .94rem;
}

.footer .contact-line svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--m);
}

.footer .socials {
  display: flex;
  gap: .6rem;
  margin-top: 1.1rem;
}

.footer .socials a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: background .25s, transform .25s;
}

.footer .socials a:hover {
  background: var(--brand);
  transform: translateY(-3px);
}

.footer .fbar {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: clamp(40px, 5vw, 60px);
  padding-block: 1.3rem;
  font-size: .86rem;
  color: #9d92bd;
}

/* --------------------------- Floating FABs ------------------------------- */
.fab {
  position: fixed;
  bottom: 22px;
  z-index: 1050;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease);
}

.fab:hover {
  transform: scale(1.08);
  color: #fff;
}

.fab.wa {
  left: 20px;
  background: #25d366;
}

.fab.call {
  right: 20px;
  background: var(--brand);
}

.fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2.2s infinite;
}

.fab.wa::before {
  background: #25d366;
}

.fab.call::before {
  background: var(--brand);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .55;
  }

  70% {
    transform: scale(1.7);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* ---------------------------- Scroll reveal ------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal.d1 {
  transition-delay: .08s;
}

.reveal.d2 {
  transition-delay: .16s;
}

.reveal.d3 {
  transition-delay: .24s;
}

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

  .fab::before {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ----------------------------- Responsive -------------------------------- */
@media (max-width:991.98px) {
  .navbar-collapse {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem 1.2rem;
    margin-top: .8rem;
  }

  .navbar .nav-link {
    padding-block: .6rem;
  }

  .navbar .nav-link::after {
    display: none;
  }

  .hero-copy {
    max-width: 100%;
  }
}

@media (max-width:575.98px) {
  .booking .book-cta .btn {
    width: 100%;
  }

  .fab {
    width: 52px;
    height: 52px;
    bottom: 16px;
  }

  .fab.wa {
    left: 14px;
  }

  .fab.call {
    right: 14px;
  }

  .about-media .badge-float {
    left: 8px;
  }
}