:root {
  --bg: #000000;
  --surface: #1b1b1c;
  --border: rgba(54, 54, 54, 0.6);
  --pink: #ce0b79;
  --pink-light: #ff97d0;
  --pink-hot: #ff5fcf;
  --purple: #7871ff;
  --text: #ffffff;
  --text-muted: #f5f2ed;
  --text-dim: rgba(255, 255, 255, 0.75);
  --serif: "Antic Didone", "Playfair Display", Georgia, serif;
  --sans: "Montserrat", system-ui, sans-serif;
  --display: "Poppins", system-ui, sans-serif;
  --container: 1350px;
  --radius: 24px;
  --radius-btn: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--display);
  font-size: 1.0125rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--pink);
}

.eyebrow::after {
  content: "";
  width: 101px;
  height: 2px;
  background: var(--pink);
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.025rem, 3.6vw, 3.15rem);
  line-height: 1.15;
}

.section-copy {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 60px;
  padding: 0 1.75rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.btn-ghost {
  background: transparent;
  border-color: white;
  color: white;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost img {
  filter: brightness(0) invert(1);
}

.btn-primary {
  background: var(--pink);
  border-color: var(--pink);
  color: white;
}

.btn-primary:hover {
  background: transparent;
  border: 1px solid var(--pink);
}

.btn-ghost {
  background: transparent;
  border-color: white;
  color: white;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-solid-ghost {
  background: transparent;
  border-color: white;
  width: 100%;
  color: #fff;
}


.btn-solid-light {
  background: transparent;
  border-color: white;
  color: #fff;
}

.btn-solid-light:hover {
  background: var(--pink);
  border: 1px solid var(--pink);
}


.btn-solid {
  background: var(--pink);
  width: 100%;
  color: white;
}



/* ==================== HOME ==================== */
/* Header / Banner */


.site-header {
  position: relative;
  z-index: 5;
  background: #000;
  min-height: 110px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--container));
  padding: 0.75rem 0;
}

.logo {
  display: block;
  width: 190px;
  height: auto;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

/* Nav menu */
.navbar-nav.nav {
  margin-left: auto;
  gap: .35rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
}

.navbar-nav.nav .menu-item {
  list-style: none;
  position: relative;
}

.navbar-nav.nav .menu-item > a {
  display: block;
  padding: .7rem .9rem;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: .3s;
  position: relative;
}

.navbar-nav.nav .menu-item > a:hover {
  color: var(--pink);
}

.navbar-nav.nav .current-menu-item > a,
.navbar-nav.nav .current_page_item > a {
  color: var(--pink);
}

.navbar-nav.nav .current-menu-item > a::after,
.navbar-nav.nav .current_page_item > a::after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: 4px;
  height: 2px;
  background: var(--pink);
}

/* dropdown arrow for parent items */
.navbar-nav.nav .menu-item-has-children > a::after {
  content: "\F229";
  font-family: "bootstrap-icons";
  font-size: .7rem;
  margin-left: .35rem;
  vertical-align: middle;
}

/* Right side: socials + book now */
.header-right {
  gap: 1.5rem;
  flex-shrink: 0;
}

.header-social {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.header-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: .3s;
}

.header-social a:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.btn-book-now {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--pink);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  padding: .9rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: .3s;
}

.btn-book-now:hover {
  opacity: .9;
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
}



.btn-hero {
  width: auto;
  min-width: 300px;
  justify-content: flex-start;
  padding-left: 1.7rem;
  padding-right: 1.4rem;
  white-space: nowrap;
  flex-wrap: nowrap;
  gap: 0.85rem;
}

.btn-hero img {
  flex-shrink: 0;
  margin-left: 0.25rem;
  filter: brightness(0) invert(1);
}

.social-rail {
  position: absolute;
  right: clamp(1rem, 3vw, 3.5rem);
  top: auto;
  bottom: 7.5rem;
  transform: none;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}


.hero-nav {
  position: absolute;
  right: clamp(1.5rem, 8vw, 10rem);
  bottom: 4.5rem;
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}

.circle-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  transition: all 0.3s ease;
}

.circle-btn svg {
  width: 23px;
  height: 23px;
}

/* Hover effect */
.circle-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
}

/* Active effect */
.circle-btn.active {
  background: var(--pink);
  border-color: var(--pink);
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: #ce0b79;
  border-block: 1px solid #000;
  padding: 0;
  min-height: 100px;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 10s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  /* gap: 1.25rem;
  padding: 0 1.25rem; */
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1375rem);
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #fff;
  text-transform: uppercase;
}

.marquee-wheel {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: url("../images/marquee.png") center / contain no-repeat;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Section3  */
/* Difference */
.difference {
  position: relative;
  width: 100%;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.difference::after {
  content: "";
  position: absolute;
  top: -18%;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('./assets/images/pink-shade.png'); */
  background-image: url('../images/pink-shade.png');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  pointer-events: none;
  z-index: 0;
}

.diff-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}

.diff-layout>.eyebrow {
  padding-top: 0;
  white-space: nowrap;
  text-transform: none;
  font-size: 1.0125rem;
  letter-spacing: 0.35em;
  line-height: 1;
}

.diff-main {
  min-width: 0;
  max-width: 920px;
  width: 100%;
  margin-left: auto;
}

.diff-head {
  margin-bottom: 2.25rem;
  padding-top: 0.55rem;
}

.diff-head h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.diff-head .section-copy {
  max-width: 48rem;
}

.diff-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.diff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  min-height: 300px;
}

.diff-card:hover {
  background: var(--pink);
}

.diff-card.featured {
  background: var(--pink);
  border-color: var(--pink);
}

.diff-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.diff-card h3 {
  font-size: 1.2375rem;
  font-weight: 600;
  line-height: 1.26;
  margin-bottom: 0.75rem;
}

.diff-card p {
  font-size: 0.9rem;
  line-height: 1.36;
  color: var(--text-muted);
}

/* About */
.about {
  padding: 4rem 0 5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.about-media {
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
  min-height: 0;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-content p {
  margin-bottom: 1rem;
  font-size: 1.0125rem;
  line-height: 1.6;
  color: #fff;
}

.checklist {
  margin: 1.75rem 0 2rem;
  display: grid;
  gap: 0.65rem;
  padding-left: 0;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.0125rem;
}

.checklist li::before {
    content: "\F633";
    font-family: "bootstrap-icons";
    font-style: normal;
    font-weight: normal;
    display: inline-block;

    width: 20px;
    height: 20px;
    margin-right: 10px;

    color: #000;
    background: var(--pink);
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
}

/* How it works */
.how {
  position: relative;
  padding: 4rem 0 6rem;
  text-align: center;
  overflow: hidden;
}

.how-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.how-glow {
  position: absolute;
  left: -15px;
  top: -30%;
  width: min(420px, 40vw);
  height: auto;
  opacity: 0.9;
  filter: blur(2px);
}

.how-wave {
  position: absolute;
  right: -12%;
  bottom: -35%;
  width: min(900px, 70vw);
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
}

.how-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

.how .section-copy {
  max-width: 42rem;
  margin: 1rem auto 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1080px;
  margin-inline: auto;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.75rem 1rem 1.5rem;
  min-height: 250px;
}

/* .step.featured {
  background: var(--pink);
  border-color: var(--pink);
} */

.step-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--pink);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
}

/* .step.featured .step-num {
  background: white;
  color: var(--pink);
} */

.step:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.step:hover .step-num {
  background: white;
  color: var(--pink);
}

.step img {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 18ch;
  margin-inline: auto;
  line-height: 1.4;
}

/* Services */
.services {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
/*   inset: 0; */
  pointer-events: none;
  z-index: 0;
}

/* .services-wave {
  position: absolute;
  left: 5%;
  top: -8%;
  width: min(1400px, 110vw);
  opacity: 0.7;
  mix-blend-mode: screen;
} */

.services-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.services-glow-left {
  left: -6%;
  top: 35%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 140, 60, 0.35), transparent 70%);
}

.services-glow-right {
  right: -4%;
  top: 40%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(206, 11, 121, 0.4), rgba(131, 28, 145, 0.25), transparent 70%);
}

.services>.container,
.services .pricing-grid {
  position: relative;
  z-index: 1;
}

.services-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
  padding-inline: clamp(2.5rem, 8vw, 7rem);
  box-sizing: border-box;
}

.price-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  /*min-height: 720px;*/
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(206, 11, 121, 0.45), transparent 60%),
    radial-gradient(ellipse 65% 50% at 100% 100%, rgba(206, 11, 121, 0.35), transparent 60%);
  transition: opacity 0.25s ease;
}

.price-card.accent,
.price-card:hover {
  border-color: var(--pink-hot);
  box-shadow: 0 0 0 1px rgba(255, 95, 207, 0.25), 0 12px 40px rgba(206, 11, 121, 0.18);
}

.price-card.accent::before,
.price-card:hover::before {
  opacity: 1;
}

.price-card h3 {
  font-size: 1.2375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.25s ease;
}

.price-card.accent h3,
.price-card.accent .price,
.price-card:hover h3,
.price-card:hover .price {
  color: var(--pink-hot);
}

.price-card:hover .badge {
  background: var(--pink);
}

.price-card:hover .btn-solid-ghost {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.price-card>p {
  font-size: 0.9rem;
  line-height: 1.56;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.price-row {
  display: flex;
  align-items: center;
/*   justify-content: space-between; */
  gap: 0.75rem;
  /* margin-bottom: 1.25rem; */
  padding-bottom: 1.25rem;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.12); */
}

.price {
  font-size: 16px;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 30px;
  border-radius: 34px;
  background: var(--pink);
  font-family: var(--display);
  font-size: 0.8438rem;
  font-weight: 600;
}

.badge.pink {
  background: var(--pink);
}

.feature-list {
  /* display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  flex: 1; */
  position: relative;
}

.feature-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.375;
}

.feature-list li::before {
    content: "\F633";
    font-family: "bootstrap-icons";
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
}

.feature-list img {
  width: 24px;
  height: 24px;
}

.price-note {
  font-size: 0.9rem;
  line-height: 1.56;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.include-block {
  flex: 1;
  margin-bottom: 1.25rem;
}

.include-block h4 {
  font-size: 1.0125rem;
  margin: 0.5rem 0 1rem;
}

.include-block strong {
  display: block;
  margin-top: 0.85rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.include-block p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.price-card .btn {
  margin-top: auto;
}

/* CTA band */
.cta-band {
  margin: 2rem 0 5rem;
}

.cta-panel {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 4rem;
  isolation: isolate;
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 55% 40%;
  z-index: -2;
}

.cta-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg,
      #000 0%,
      rgba(0, 0, 0, 0.92) 8%,
      rgba(0, 0, 0, 0.78) 22%,
      rgba(0, 0, 0, 0.45) 42%,
      rgba(0, 0, 0, 0.15) 62%,
      rgba(0, 0, 0, 0) 78%);
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.cta-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.15vw, 2.5875rem);
  line-height: 1.25;
  margin-bottom: 1rem;
  font-weight: 400;
}

.cta-copy p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

.watch-video {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 1;
}

.play {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--pink);
  border: none;
  color: white;
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.08), 0 0 0 28px rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
}


/* Testimonials */
.testimonials {
  position: relative;
}

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

.testi-glow {
  position: absolute;
  top: 35%;
  right: -7%;
  bottom: auto;
  transform: none;
  height: 625px;
  max-width: 65vw;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: screen;
  opacity: 1.75;
  filter: blur(40px);
}

.testimonials {
  position: relative;
  z-index: 2;
}

.testi-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  min-height: 100%;
}

.testi-top {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.testi-top strong {
  display: block;
}

.testi-top span {
  color: var(--text-dim);
  font-size: 0.855rem;
}

.testi-card h3 {
  font-size: 1.0125rem;
  margin-bottom: 1rem;
  line-height: 1.35;
}

.testi-card p {
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.stars {
  color: #ffc107;
  letter-spacing: 0.15em;
}



.testimonials {
  padding-bottom: 0.5rem;
}

.testimonials .splide__track {
  padding-bottom: 0.5rem;
}

/* avatar becomes a real img now, keep same circle look */
.testi-card .avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #444, #222);
}

.testimonials .splide__pagination {
  position: static !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 2rem 0 0 !important;
  padding: 0 !important;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  list-style: none;
  min-height: 22px;
}

.testimonials .splide__pagination li {
  display: flex !important;
  list-style: none;
}

.testimonials .splide__pagination__page {
  display: block !important;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #5a5a5a;
  opacity: 1 !important;
  margin: 0;
  padding: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.testimonials .splide__pagination__page.is-active {
  background: var(--pink) !important;
}


.strip {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  padding: 0.5rem 0;
  mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 12%,
      #000 88%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 12%,
      #000 88%,
      transparent 100%);
}

.strip-track {
  display: flex;
  width: max-content;
  animation: strip-scroll 5s linear infinite;
}

.strip-group {
  display: flex;
  gap: 1.25rem;
  padding-right: 1.25rem;
}

.strip-item {
  flex: 0 0 auto;
  background: rgba(54, 54, 54, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  font-size: 24px;
  font-family: var(--sans);
  font-weight: 600;
}

@keyframes strip-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Gallery */
.gallery {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.gallery-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.gallery-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
}

.gallery-glow-cyan {
  left: -10%;
  top: 28%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(40, 90, 160, 0.35), transparent 70%);
}

.gallery-glow-amber {
  right: -8%;
  top: 30%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(180, 120, 50, 0.3), transparent 70%);
}

.gallery-wave {
  position: absolute;
  left: 8%;
  bottom: -45%;
  width: min(1100px, 85vw);
  opacity: 0.32;
  mix-blend-mode: screen;
}

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

.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 420px;
  background: #151515;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.gallery-card h3 {
  margin-bottom: 0.35rem;
  font-size: 24px;
  font-size: 600;
  font-family: var(--sans);
  color: rgba(255, 255, 255, 1);
}

.gallery-card p {
  font-size: 20px;
  font-size: 400;
  font-family: var(--sans);
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 1);
}

.gallery-card time {
  color: rgba(206, 11, 121, 1);
  font-size: 16px;
  font-size: 600;
}

.gallery-splide {
  position: relative;
  visibility: visible !important;
}

/* arrows - side circles like reference */
.gallery-splide .splide__pagination {
  position: static !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 2rem 0 0 !important;
  padding: 0 !important;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  list-style: none;
  min-height: 22px;
}

.gallery-splide .splide__pagination li {
  display: flex !important;
  list-style: none;
}

.gallery-splide .splide__pagination__page {
  display: block !important;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 1 !important;
  margin: 0;
  padding: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-splide .splide__pagination__page.is-active {
  background: var(--pink);
}

.gallery-splide {
  position: relative;
}


.splide__arrow--prev,
.splide__arrow--next {
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    box-shadow: none;
}


.splide__arrow--prev svg,
.splide__arrow--next svg {
    display: none;
}


.splide__arrow--prev {
    background: transparent;
    border: 1px solid rgba(206, 11, 121, 1);
}

.splide__arrow--prev::before {
    content: "";
    width: 30px;
    height: 30px;
    background-color: rgba(206, 11, 121, 1);

    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z'/%3E%3C/svg%3E")
        center / contain no-repeat;

    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z'/%3E%3C/svg%3E")
        center / contain no-repeat;
}

.splide__arrow--next {
    background: transparent;
    border: 1px solid rgba(206, 11, 121, 1);
}

.splide__arrow--next::before {
    content: "";
    width: 30px;
    height: 30px;
     background-color: rgba(206, 11, 121, 1);

    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 13h12.17l-5.59 5.59L12 20l8-8-8-8-1.41 1.41L16.17 11H4v2z'/%3E%3C/svg%3E")
        center / contain no-repeat;

    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 13h12.17l-5.59 5.59L12 20l8-8-8-8-1.41 1.41L16.17 11H4v2z'/%3E%3C/svg%3E")
        center / contain no-repeat;
}


.splide__arrow--prev {
    left: -80px;
}

.splide__arrow--next {
    right: -80px;
}

.splide__arrow--prev:hover,
.splide__arrow--next:hover {
    background: rgba(206, 11, 121, 1);
    border-color: rgba(206, 11, 121, 1);
}

/* Arrow icon white on hover */
.splide__arrow--prev:hover::before,
.splide__arrow--next:hover::before {
    background-color: #fff;
}


.splide__arrow--prev:disabled {
    opacity: 0.4;
}

.splide__arrow--next:disabled {
    opacity: 0.4;
}


/* Tablet */
@media (max-width: 1200px) {
    .splide__arrow--prev {
        left: -20px;
    }

    .splide__arrow--next {
        right: -20px;
    }
}


/* Mobile */
@media (max-width: 992px) {
    .splide__arrow--prev {
        left: -10px;
    }

    .splide__arrow--next {
        right: -10px;
    }
}

/* date badge pink icon */
.gallery-card time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.gallery-card time i {
  color: var(--pink);
}

@media (max-width: 1200px) {
  .gallery-splide .splide__arrow--prev {
    left: -20px;
  }

  .gallery-splide .splide__arrow--next {
    right: -20px;
  }
}
/* FAQ */
/* FAQ */
.faq {
  padding: 4rem 0;
  text-align: center;
}

.faq .section-copy {
  margin: 0.75rem auto 2.5rem;
}

.faq-list {
  max-width: 763px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item .accordion-button {
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: inherit;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-item .accordion-button::after {
  content: "–";
  font-size: 1.35rem;
  line-height: 1;
  background-image: none;
  width: auto;
  height: auto;
  transform: none;
}

.faq-item .accordion-button.collapsed::after {
  content: "+";
}

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

.faq-item .accordion-collapse p {
  padding: 0 1.5rem 1.25rem;
  font-family: var(--sans);
  color: rgba(245, 242, 237, 1);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

/* Areas / Footer */
.areas {
    padding: 2rem 0 0;
    background: #000;
}

.areas-panel {
    position: relative;
    background: #141414;
    border: 1px solid var(--border, rgba(255,255,255,.08));
}

.areas-shade {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.areas-shade-left {
    left: 0;
    top: 0;
    width: 260px;
}
.areas-shade-right {
    right: 0;
    bottom: 0;
}

.areas-copy {
    position: relative;
    z-index: 2;
}

/* ===== SINGLE ROW LAYOUT ===== */
.areas-row {
    gap: 0;
    padding: 40px;
}

/* LEFT TITLE */
.areas-heading {
    width: 260px;
    padding-right: 30px;
}
.section-tag {
    color: var(--pink);
    font-size: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.section-title {
    color: #fff;
    font-family: var(--serif);
    font-size: 40px;

    line-height: 1.25;
    margin-bottom: 14px;
}
.heading-line {
    width: 36px;
    height: 2px;
    background: var(--pink);
    margin-bottom: 14px;
}
.section-desc {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    line-height: 1.6;
    font-family: var(--sans);
    margin: 0;
}

/* LOCATIONS CARD */
.areas-locations-card {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 28px 10px;
}

.area-col-border {
    border-color: rgba(255,255,255,.55) !important;
}
.area-col {
    flex: 1;
    text-align: center;
    padding: 0 22px;
    position: relative;
}
.area-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(255,255,255,.08);
}

.area-title {
    justify-content: start;
    color: #fff;
    font-size: 20px;
    letter-spacing: .5px;
    margin-bottom: 16px;
    gap: 10px;
     font-family: var(--serif);
    white-space: nowrap;
}
.area-pin {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--pink);
}
.area-pin i {
    font-size: 30px;
}

.areas-map-pin {
    position: absolute;
    top: 42%;
    left: 48%;
    width: 30px;
    height: 30px;
    background: var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(255,46,126,.2), 0 0 0 22px rgba(255,46,126,.1);
    color: #fff;
}
.areas-map-pin i {
    font-size: 14px;
}

.location-list {
    margin: 0 0 12px;
    padding: 0;
    row-gap: 8px;
    column-gap: 12px;
}
.location-list li {
    color: rgba(255,255,255,.55);
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    padding-left: 10px;
}
.location-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
}

.area-note {
    color: rgba(255,255,255,.3);
    font-size: 12px;
}

/* DOTTED MAP */
.areas-map {
    position: relative;
    width: 320px;
}
.areas-map-dots {
    width: 100%;
    display: block;
}
.areas-map-pin {
    position: absolute;
    top: 42%;
    left: 48%;
    width: 30px;
    height: 30px;
    background: #CE0B79;
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(255,46,126,.2), 0 0 0 22px rgba(255,46,126,.1);
}
.areas-map-pin img {
    width: 12px;
}


.areas-cta {
    position: relative;
    padding: 26px 40px;
     border: 1px solid rgba(255,255,255,.06);
    gap: 20px;
}
.areas-cta-left {
    gap: 20px;
    position: relative;
    z-index: 2;
}

.areas-cta-copy h4 {
    color: #fff;
    font-size: 20px;
    font-family: var(--sans);
    margin-bottom: 4px;
}
.areas-cta-copy p {
    color: rgba(255,255,255,.55);
    font-size: 18px;
    font-family: var(--sans);
    margin: 0;
}
.areas-cta-buttons {
    gap: 14px;
    position: relative;
    z-index: 2;
}
.areas-book {
    background: #CE0B79 !important;
    border-color: #CE0B79 !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    padding: 15px 26px;
    border-radius: 8px;
    gap: 10px;
}
.areas-book img {
    width: 14px;
}
.areas-whatsapp {
    background: #25D366 !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    padding: 15px 26px;
    border-radius: 8px;
    gap: 10px;
}
.areas-whatsapp img {
    width: 18px;
}

.site-footer {
  padding: 4.5rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(240px, 1.2fr) minmax(160px, 1fr);
  align-items: center;
  column-gap: 2rem;
  row-gap: 1.5rem;
  margin-bottom: 3.25rem;
}

.footer-logo {
  justify-self: start;
  display: inline-flex;
  width: 190px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.footer-cta-copy {
  justify-self: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 26rem;
  font-family: var(--sans);
  color: #fff;
}

.footer-cta-copy span:first-child {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 1);
}

.footer-cta-copy span:last-child {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 1);
}

.footer-cta-btn {
  justify-self: end;
  white-space: nowrap;
}

.footer-mid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.footer-nav {
    width: 100%;
}

.footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li {
    margin: 0;
    padding: 0;
}

.footer-menu li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.35em;
    line-height: 1;
    font-family: var(--sans);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: #fff;
}

.footer-bar {
  background: var(--pink);
  padding: 1.05rem 0;
}

.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 1);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
}

.social-row {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.social-row a:hover {
    background-color: #000 !important;
}

.social-row a:hover svg {
    fill: #fff !important;
    color: #fff !important;
}

.social-row a:hover svg path {
    fill: #fff !important;
}

.social-row a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1100px) {

  .diff-layout,
  .about-grid,
  .services-head,
  .testi-head,
  .areas-panel {
    grid-template-columns: 1fr;
  }

  .diff-cards,
  .steps,
  .pricing-grid,
  .testi-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .watch-video {
    position: static;
    transform: none;
    margin-top: 2rem;
  }

  .cta-panel {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav,
  .header-call {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    background: #111;
    padding: 1rem;
    border-radius: 12px;
    z-index: 20;
  }

  .site-header {
    position: relative;
    min-height: 96px;
  }

  .header-inner {
    position: relative;
  }

  .logo {
    width: 170px;
    height: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    object-position: 65% center;
  }

  .hero-body {
    padding: 3rem 0 4.5rem;
  }

  .hero-content {
    padding-left: 0;
  }

  .btn-hero {
    width: auto;
    max-width: none;
  }

  .social-rail,
  .hero-nav {
    display: none;
  }

  .diff-cards,
  .steps,
  .pricing-grid,
  .testi-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }



  .price-card {
    min-height: auto;
  }

  .about-media,
  .about-media img {
    min-height: 0;
  }

  .footer-top,
  .footer-bar-inner,
  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    justify-items: start;
    margin-bottom: 2.5rem;
  }

  .footer-cta-copy {
    justify-self: start;
    text-align: left;
  }

  .footer-cta-btn {
    justify-self: start;
  }

  .footer-mid {
    gap: 1.25rem;
    margin-bottom: 2.25rem;
  }

  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    letter-spacing: 0.16em;
  }

  .footer-bar-inner {
    display: flex;
    flex-wrap: wrap;
  }
  
}


/* Main Section */
.testimonials-section {
  width: 100%;
  background: #000;
  padding: 30px 0 20px;
  overflow: hidden;
}
.splide{visibility: visible !important;}
/* Slider width */


.services {
    position: relative;
    background: #000;
    overflow: hidden;
    min-height: 700px;
/*     isolation: isolate; */
}

/* =========================
   BACKGROUND GLOWS
========================= */



/* Left glow */
.services-bg-left {
    left: 0px;
    max-width: 64%;
    top: -5%;
}

/* Right glow */
.services-bg-right {
    top: -100px;
/*     max-width: 500px; */
    right: 0;
}


.services-bg-pink {
    top: 105px;
    right: 0%;
    height: auto;
}


.shade-faq {
    position: relative;
    overflow: hidden;
}

.shade-faq .faq-bg-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 350px;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

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




/* about us */

.about-banner {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.about-banner-img {
    position: absolute;
    object-position: center;
    left: 0;
    top: 0;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1;
}

.about-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.about-banner-content h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 66px;
    font-weight: 400;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 1);
}

.about-banner-content p {
    margin: 0;
    font-family: var(--sans);
    font-size: 22px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
}

  .eyebrow2 {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--pink) !important;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin: 0;
}

.eyebrow2::after {
    content: "";
    flex: 1;
    max-width: 100px;
    height: 2px;
    background: var(--pink);
}



/* blog */
.blog-list-img{border-radius: 15px;}
.blog-list-title{font-size: 24px;font-weight: 600;font-family: var(--display);}
.blog-date{position: absolute; top: 4%;right: 4%;border: 1px solid #CE0B79;background: #CE0B79;border-radius: 30px;padding: 10px 20px;}
.blog-date img{filter: brightness(0) invert(1);width: 23px;height: 23px;}
.page-numbers{border: 1px solid #1B1B1C;background-color: #1B1B1C;border-radius: 50%;padding: 5px 13px;}
.page-numbers.current{border: 1px solid #CE0B79;background-color: #CE0B79;}


.approach-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 30px 24px;
    height: 100%;
}

.approach-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;

}

.approach-icon img {
    width: 24px;
    height: 24px;
}

.approach-card h3 {
    color: rgba(245, 242, 237, 1);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--sans);
}

.approach-card p {
    color: rgba(245, 242, 237, 1);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.9;
}

.approach-card hr {
    border-color: #2a2a2a;
    opacity: 1;
    margin-bottom: 16px;
}

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

.approach-list li {
    position: relative;
      color: rgba(245, 242, 237, 1);
    font-family: var(--sans);
    font-size: 16px;
    padding-left: 28px;
}

.approach-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--pink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.approach-bottom-text {
    color: #e5e5e5;
    font-size: 16px;
    margin: 0;
}


/* gallery */
.gallery-item .image-overlay{display: none;}
.gallery-item:hover .image-overlay{position: absolute;display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(206, 11, 121, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
  }
.plus-img{    font-size: 30px;
    border: 2px solid;
    border-radius: 50%;
    padding: 5px 9px;
}




    /* Gallery Item */
    .gallery-item {
        cursor: pointer;
        overflow: hidden;
    }


    .gallery-image {
        width: 100%;
        display: block;
        transition: transform 0.4s ease;
    }


    .gallery-item:hover .gallery-image {
        /* transform: scale(1.04); */
    }


    /* Overlay */
    .image-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
    }


    .gallery-item:hover .image-overlay {
        opacity: 1;
        visibility: visible;
    }


    /* Plus Icon */
    .plus-icon {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        /* background: #fff; */
        /* color: #000; */
        font-size: 22px;
        transition: transform 0.3s ease;
    }


    .gallery-item:hover .plus-icon {
        transform: scale(1.1);
    }


    /* ========================================
       LIGHTBOX
    ========================================= */

    .custom-lightbox {
        position: fixed;
        inset: 0;
        z-index: 99999;

        display: flex;
        align-items: center;
        justify-content: center;

        background: rgba(0, 0, 0, 0.92);

        opacity: 0;
        visibility: hidden;

        transition: opacity 0.3s ease,
                    visibility 0.3s ease;
    }


    .custom-lightbox.active {
        opacity: 1;
        visibility: visible;
    }


    /* Image Wrapper */
    .lightbox-image-wrapper {
        width: 80%;
        max-width: 1100px;

        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* Lightbox Image */
    #lightboxImage {
        max-width: 100%;
        max-height: 80vh;

        width: auto;
        height: auto;

        object-fit: contain;

        border-radius: 10px;

        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }


    /* Close */
    .lightbox-close {
        position: absolute;

        top: 25px;
        right: 35px;

        width: 45px;
        height: 45px;

        border: 0;
        background: transparent;

        color: #fff;

        font-size: 42px;
        line-height: 1;

        cursor: pointer;

        z-index: 10;

        transition: transform 0.2s ease;
    }


    .lightbox-close:hover {
        transform: scale(1.15);
    }


    /* Previous / Next */
    .lightbox-prev,
    .lightbox-next {
        position: absolute;

        top: 50%;
        transform: translateY(-50%);

        width: 50px;
        height: 50px;

        border: 0;
        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;

        background: rgba(255, 255, 255, 0.9);
        color: #000;

        font-size: 25px;

        cursor: pointer;

        z-index: 10;

        transition: all 0.2s ease;
    }


    .lightbox-prev {
        left: 30px;
    }


    .lightbox-next {
        right: 30px;
    }


    .lightbox-prev:hover,
    .lightbox-next:hover {
        background: #fff;
        transform: translateY(-50%) scale(1.08);
    }


    /* Counter */
    .lightbox-counter {
        position: absolute;

        bottom: 25px;
        left: 50%;

        transform: translateX(-50%);

        color: #fff;

        font-size: 16px;
        font-weight: 500;

        background: rgba(0, 0, 0, 0.5);

        padding: 7px 14px;

        border-radius: 20px;
    }


    /* ========================================
       MOBILE
    ========================================= */

    @media (max-width: 767px) {

        .lightbox-image-wrapper {
            width: 90%;
        }


        #lightboxImage {
            max-height: 55vh;
        }


        .lightbox-prev,
        .lightbox-next {
            width: 40px;
            height: 40px;

            font-size: 20px;
        }


        .lightbox-prev {
            left: 10px;
        }


        .lightbox-next {
            right: 10px;
        }


        .lightbox-close {
            top: 15px;
            right: 15px;

            font-size: 35px;
        }

    }



    .gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.gallery-pagination button {
    border: none;
    background: #1B1B1C;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
    border-radius: 50%;
    color: #fff;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.pagination-number.active {
    background: #CE0B79;
    color: #fff;
}

.gallery-pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-prev,
.pagination-next {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-wave2{
	opacity: 0.6;
	min-height: 100%;
}

.cta-wrap{ padding:60px 20px; }
  .cta-section{
    position:relative;
    margin:0 auto;
    border-radius:24px;
    overflow:hidden;
    min-height:560px;
    display:flex;
    align-items:center;
  }
  .cta-bg-img{
    position:absolute;
    inset:0;
    z-index:0;
  }
  .cta-content{ position:relative; z-index:2; padding:50px 55px; }
  .cta-label{
    display:flex; align-items:center; gap:14px;
    color: var(--pink);
	font-family:'Poppins', serif;
    letter-spacing:4px;
    font-size:18px;
    font-weight:500;
    text-transform:uppercase;
    margin-bottom:22px;
  }
  .cta-label .line{ width:150px; height:2px; background: var(--pink); display:inline-block; }
  .cta-heading{
    font-family:'Antic Didone', serif;
    font-weight:400;
    color:#fff;
    font-size: 46px;
    line-height:1.2;
    margin-bottom:20px;
  }
  .cta-desc{ color:#d8d8d8; font-size: 18px; line-height:1.7; margin-bottom:26px; max-width:480px;  font-family: var(--sans); }
  .cta-features{ display:flex; gap: 34px; margin-bottom:32px; }
  .cta-features .feature{ display:flex; align-items:center; gap:10px; color:#fff; font-size: 16px; font-family: var(--sans);}
  .cta-features .check{
    width:20px; height:20px; border-radius:50%;
    background:#ff3d8f;
    display:flex; align-items:center; justify-content:center;
    font-size:11px; color:#fff; flex-shrink:0;
  }
  .cta-actions{ display:flex; align-items:center; gap:30px; flex-wrap:wrap; }
  .btn-quote{
    background:#ff3d8f;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:50px;
    font-size:0.95rem;
    font-weight:500;
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    transition:0.3s;
  }
  .btn-quote:hover{ background:#e02f7d; color:#fff; }
  .call-now{ display:flex; align-items:center; gap:12px; color:#fff; }
  .call-icon{
    width:42px; height:42px; border-radius:50%;
    background:#fff; color:#ff3d8f;
    display:flex; align-items:center; justify-content:center;
    font-size:16px; flex-shrink:0;
  }
.call-icon img{ width: 25px !important;
  }
  .call-now .call-label{ font-size:0.78rem; color:#c9c9c9; margin-bottom:2px; }
  .call-now .call-number{ font-size:1rem; font-weight:600; color:#fff; }
 

.contact-wrapper.services{ min-height: auto !important;}

.team-section{ padding:80px 0; }
 
  .section-label{
    display:flex; align-items:center; justify-content:center; gap:16px;
    color: var(--pink);
    letter-spacing:4px;
    font-size:18px;
    font-weight:500;
    text-transform:uppercase;
    margin-bottom:20px;
  }
  .section-label .line{ width:40px; height:1px; background:var(--pink); display:inline-block; }
 
  .section-heading{
    font-family:'Antic Didone', serif;
    font-weight:400;
    color:#fff;
    font-size:56px;
    line-height:1.35;
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
  }
 
  .team-card{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:24px;
  }
  .team-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  .team-overlay{
    position:absolute;
    left:0; right:0; bottom:0;
    background:#d6116f;
    padding: 0px 22px;
  }
  .team-name{
    color:#fff;
	font-family: var(--sans);
    font-size:25px;
    font-weight:600;
    margin-bottom:2px;
  }
  .team-role{
	font-family: var(--sans);
    color:#fff;
    font-size:15px;
    font-weight:300;
  }

.services-bg-pink-about {
    top: 66%;
    right: 0;
    height: auto;
}

.about img.services-bg-pink-home {
    top: 175%;
    right: 0 !important;
    height: auto;
}

.contact-box{background: #1B1B1C;border-radius: 20px;padding: 30px;}
    .contact-icon-white {filter: brightness(0) invert(1);width: 25px;}
    .top-title{font-size: 24px;font-weight: 600;}
    .contact-box strong{font-size: 18px;font-weight: 400;}
    .contact-box small{font-size: 15px;font-weight: 400;}
    .contact-icon.phone{width: 50px;border: 1px solid #CE0B79;height: 50px;border-radius: 50%;margin-right: 10px;background: #CE0B79;}
    .contact-icon.email{width: 50px;border: 1px solid #831C91;height: 50px;border-radius: 50%;margin-right: 10px;background: #831C91;}
    .contact-icon.hours{width: 50px;border: 1px solid #D552A3;height: 50px;border-radius: 50%;margin-right: 10px;background: #D552A3;}
    .contact-wrapper{padding-bottom: 0.3rem;}
	
 
    

.form-sec{padding-top: 100px;}
.form-sec .eyebrow::after{display: none;}
.form-sec .section-title{font-size: 30px;}
.booking-form {width: 100%;}
.booking-form .form-control,
.booking-form .form-select {width: 100%;height: 54px;background: #1c1c1f;border: 1px solid #1c1c1f;border-radius: 8px;color: #fff;padding: 0 15px;font-size: 16px;font-weight: 400;box-shadow: none;}
.booking-form .form-select {color: #b5b5b8;cursor: pointer;appearance: none;-webkit-appearance: none;-moz-appearance: none;background-color: #1c1c1f;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5.5L7 9L11 5.5' fill='none' stroke='%23b5b5b8' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat: no-repeat;background-position: right 10px center;background-size: 26px 26px;padding-right: 30px;}
.booking-form .form-select option {background: #1c1c1f;color: #fff;}
.booking-form input[type="date"] {color: #b5b5b8;position: relative;}
.booking-form input[type="date"]::-webkit-calendar-picker-indicator {cursor: pointer;opacity: 1;width: 26px;height: 26px;filter: invert(20%) sepia(96%) saturate(5500%) hue-rotate(315deg) brightness(88%) contrast(105%);}
.booking-form .form-control::placeholder {color: #b5b5b8;opacity: 1;}
.booking-form .form-control:focus,
.booking-form .form-select:focus {
background: #1c1c1f;color: #fff;border-color: #d50076;box-shadow: none;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5.5L7 9L11 5.5' fill='none' stroke='%23b5b5b8' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat: no-repeat;background-position: right 10px center;background-size: 26px 26px;}
.booking-form .form-select {color: #b5b5b8;cursor: pointer;}
.booking-form .form-select option {background: #1c1c1f;color: #fff;}
.booking-form input[type="date"] {color: #b5b5b8;}
.booking-form textarea.form-control {height: 72px;min-height: 72px;padding-top: 15px;resize: none;}
.booking-form .booking-submit {width: 100%;height: 43px;border: 0;border-radius: 7px;background: #d50076;color: #fff;font-size: 16px;font-weight: 700;letter-spacing: 0.5px;cursor: pointer;transition: all 0.3s ease;}
.booking-form .booking-submit:hover {background: #b80065;color: #fff;}
.booking-form .wpcf7-not-valid {border-color: #dc3545 !important;}
.booking-form .wpcf7-not-valid-tip {font-size: 12px;margin-top: 5px;}
.booking-form .wpcf7-response-output {margin: 15px 0 0;padding: 10px;border-radius: 5px;}

.single-post-section {
    padding: 40px 0 70px;
}

.post-title {
    font-size: 60px;
    line-height: 1.3;
    color: #fff;
	font-family: var(--serif);
    margin-bottom: 12px;
}

.post-title span {
    color: #ff2e7e;
}

.post-excerpt2 {
    color: #F5F2ED;
    font-size: 18px;
	font-family: var(--sans);
    line-height: 1.6;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
	font-weight: 600px;
    margin-top: 15px;
}

.meta-row .post-date{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #F5F2ED;
    font-size: 14px;
}

.meta-row > img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.share-icons {
    display: flex;
    gap: 5px;
}

.share-icons a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11px;
}

.share-icons a:hover svg{
    fill: #CE0B79 !important;
}

/* Main Image */

.main-img-wrap {
    margin-top: 18px;
    border-radius: 10px;
    overflow: hidden;
}

.thumb-row {
    margin-top: 12px;
}

.thumb-row img {
    cursor: pointer;
	border-radius: 18px;
}


/* Content */

.post-content {
    margin-top: 30px;
    color: #F5F2ED;
    font-size: 13px;
    line-height: 1.7;
}

.post-content h2 {
	font-family: var(--serif);
    color: #fff;
    font-size: 42px;
}

.post-content h3 {
	font-family: var(--serif);
    color: #fff;
    font-size: 32px;
}




/* Sidebar */

.sidebar-card {
    background: #111118;
    border-radius: 7px;
    padding: 0px;
    margin-bottom: 18px;
}

.sidebar-title {
    display: block;
    background: #d60b76;
    color: #fff;
	font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
    padding: 18px 26px;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Categories */

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

.category-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #292929;
    font-size: 18px;
}

.category-list a {
    color: #aaa;
    text-decoration: none;
}

.category-list a:hover {
    color: #ff2e7e;
}

.category-list span {
    color: #777;
}


.author-wrap{
    border-top:1px solid #2b2b2b;
    border-bottom:1px solid #2b2b2b;
    padding:40px 0;
}
.author-card{
    background:#1a1a1a;
    border:1px solid #2b2b2b;
    border-radius:16px;
    overflow:hidden;
}
.author-card-header{
    padding:18px 28px;
    border-bottom:1px solid #2b2b2b;
}
.author-card-header h4{
    color:#F5F2ED;
	font-family: var(--sans);
    font-size: 40px;
    font-weight:500;
    margin:0;
}
.author-card-body{
    padding:26px 28px;
}
.author-img{
    width:85px;
    height:85px;
    object-fit:cover;
    flex-shrink:0;
}
.author-card-body h5{
    color:#F5F2ED;
	font-family: var(--sans);
    font-weight:500;
    font-size:22px;
    margin-bottom:8px !important;
}
.author-card-body p{
    color:#F5F2ED;
    font-style:italic;
    font-size:18px;
    line-height:1.65;
    margin:0;
}

.comments-section h2 {
    color: #fff;
	font-family: var(--sans);
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 24px;
}

.comment-description {
    color: #F5F2ED;
    font-size: 18px;
	font-family: var(--sans);
    line-height: 1.7;
    margin-bottom: 28px;
}

.comments-section .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.comments-section .form-control {
    width: 100%;
    background: #363636;
    border: 0;
    border-radius: 8px;
    color: #fff;
    padding: 17px 20px;
    font-size: 18px;
    min-height: 52px;
}

.comments-section textarea.form-control {
    min-height: 143px;
    resize: none;
}

.comments-section .form-control::placeholder {
    color: #e5e5e5;
    opacity: 1;
}

.comments-section .form-control:focus {
    background: #1d1d1d;
    color: #fff;
    box-shadow: none;
    outline: none;
}

.comments-section .comment-btn {
    margin-top: 8px;
    background: #CE0B79;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.comments-section .comment-btn:hover {
    background: #b90065;
    color: #fff;
}

.comments-section .wpcf7-spinner {
    display: none;
}

.comments-section .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
    color: #ff5c5c;
}

.popular-posts {
    background: #1b1b1b;
    border: 1px solid #d50075;
    border-radius: 16px;
    overflow: hidden;
}

.sidebar-title {
    background: #CE0B79;
    color: #fff;
	font-family: var(--sans);
    font-size: 26px;
    font-weight: 600;
}

.popular-post {
    display: flex;
    align-items: center;
    gap: 17px;
    text-decoration: none;
    border-bottom: 1px solid #303030;
}

.popular-post:last-child {
    border-bottom: 0;
}

.popular-post-img {
    width: 88px;
    height: 94px;
    min-width: 88px;
    object-fit: cover;
    border-radius: 13px;
}

.popular-post-content {
    flex: 1;
}

.popular-post .cat {
    display: flex;
	font-family: var(--sans);
    align-items: center;
    gap: 9px;
    color: #CE0B79;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 9px;
}

.popular-post .cat i {
    font-size: 14px;
    color: #d50075;
}

.popular-post h6 {
    color: #F5F2ED;
	font-family: var(--sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    margin: 0;
}

.popular-post:hover h6 {
    color: #d50075;
}

.popular-post:hover .popular-post-img {
    opacity: 0.85;
}

.sidebar-card {
    background: #1b1b1b;
    border: 1px solid #d50075;
    border-radius: 16px;
    overflow: hidden;
}

.category-list {
    list-style: none;
    padding: 0px 16px;
    margin: 0;
}
.category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #303030;
}
.category-list li:last-child {
    border-bottom: 0;
}
.category-list li .cat-name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    transition: 0.3s ease;
}
.category-list li .cat-name::before {
    content: "\2713";
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    transition: 0.3s ease;
}
.category-list li span.count {
    color: #d50075;
    font-size: 15px;
}
/* Active category */
.category-list li.active .cat-name {
    color: #d50075;
}
.category-list li.active .cat-name::before {
    color: #d50075;
}
.contact-wrapper.services .services-bg-left {
    left: 0px;
    max-width: 64%;
    top: -40%;
}

.site-header {
    position: relative;
    z-index: 9999;
    transition: all 0.3s ease;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

body.header-sticky-active {
    padding-top: 80px; /* header ni actual height pramane adjust karo */
}

.contactus .services-bg-pink{
    top: 85% !important;
    right: 0;
    height: auto;
}


.google-review-badge .google-icon {
    width: 28px;
    height: 28px;
}
.google-review-badge .review-info {
    line-height: 1.1;
}
.google-review-badge .rating-num {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-right: 4px;
}.google-review-badge {
    background: #000;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.google-review-badge .google-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.google-review-badge .review-info {
    line-height: 1.1;
}

.google-review-badge .rating-line {
    display: flex;
    align-items: center;
}

.google-review-badge .rating-num {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    margin-right: 4px;
}

.google-review-badge .stars {
    display: flex;
    align-items: center;
    color: #FFB800;
    font-size: 13px;
    letter-spacing: 1px;
}

.stars .star-icon {
    width: 18px;
    height: 18px;
    margin-right: 2px;
}

.stars .star-icon:last-child {
    margin-right: 0;
}

.google-review-badge .review-count {
    color: #fff;
    font-size: 20px;
    display: block;
    white-space: nowrap;
}



.video-popup-overlay{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.92);
    z-index:99999;
    align-items:center;
    justify-content:center;
    padding:40px 20px;
    box-sizing:border-box;
}
.video-popup-overlay.active{
    display:flex;
}
.video-popup-box{
    position:relative;
    width:min(92vw, 1100px);
    height:min(92vw * 0.5625, 80vh);
    background:#000;
}
.video-popup-embed{
    width:100%;
    height:100%;
}
.video-popup-embed iframe,
.video-popup-embed video{
    width:100%;
    height:100%;
    display:block;
    border:0;
    object-fit:cover;
}
.video-popup-close{
    position:absolute;
    top:-42px;
    right:0;
    background:rgba(255,255,255,.12);
    border:none;
    color:#fff;
    font-size:24px;
    width:38px;
    height:38px;
    border-radius:50%;
    cursor:pointer;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}
.video-popup-close:hover{
    background:rgba(255,255,255,.25);
}

body.video-popup-open{
    overflow:hidden;
}

/* Mobile mate */
@media (max-width:768px){
    .video-popup-box{
        width:94vw;
        height:calc(94vw * 0.5625);
    }
}

 body{ font-family:'Poppins',sans-serif; margin:0; }
 
  .glosslabz-hero{ min-height:640px; }
  .hero-splide, .splide__track, .splide__list{ height:100%; }
 
/*   .hero-slide{ min-height:640px; } */
.hero-slide{height: 75vh !important;}
  .hero-bg-img{ object-fit:cover; }
  .hero-overlay{
    background:linear-gradient(90deg, rgba(0,0,0,.95) 15%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.15) 100%);
  }
  .z-2{ z-index:2; }
  .z-3{ z-index:3; }
 

  .hero-eyebrow{ color:var(--pink); font-weight:400; letter-spacing:1px; font-size:20px; text-transform:uppercase; font-family:'Poppins',sans-serif;}
  .hero-title{
    font-size:49px; color:#fff; text-transform:uppercase; font-family:'Antic Didone', serif; font-weight:400;
  }
  .hero-title .pink{ color:var(--pink); }
  .hero-text{ color:#FFFFFF;  font-size: 18px; font-family:var( --sans); font-weight:400;}
 
  .btn-hero{
    background:var(--pink); border:none; color:#fff; font-weight:600;
    padding:12px 28px; border-radius:6px;
  }
  .btn-hero:hover{ background:#e01a5f; color:#fff; }
  .btn-hero img{ width:16px; margin-left:8px; }
 
 .hero-contact-row{
  display:flex;
  align-items:center;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:10px;
  padding:6px 8px;
  width:fit-content;
}
.hero-contact-row .contact-box2{
  display:flex;
  align-items:center;
  gap:10px;
  padding:6px 20px;
  position:relative;
}
.hero-contact-row .contact-box2 + .contact-box2::before{
  content:"";
  position:absolute;
  left:0; top:50%;
  transform:translateY(-50%);
  width:1px; height:50px;
  background:rgba(255,255,255,.15);
}
.contact-box .icon-circle{
  width:34px; height:34px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; flex-shrink:0;
}
.icon-call{ background:var(--pink); color:#fff; }
.icon-whatsapp{ background:#25d366; color:#fff; }
.contact-box strong{
  color:#fff; font-size: 16px; font-weight:700;
  display:block; line-height:1.3;
}
.contact-box small{
  color:#999; font-size: 14px; line-height:1.2;
}
.stars{ color:#ffb400; font-size:.7rem; }


 

  .contact-box2 .icon-circle{
    width:38px; height:38px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:1.1rem;
  }
  .icon-call{ background:#ff1f6d1a; color:var(--pink); }
  .icon-whatsapp{ background:#25d3661a; color:#25d366; }
  .contact-box2 small{ color:#aaa; display:block; font-size:.75rem; }
  .contact-box2 strong{ color:#fff; font-size:.95rem; }
  .stars{ color:#ffb400; font-size:.8rem; display: flex;}
 
  .btn-outline-hero{
    border:1px solid #fff; color:#fff; font-weight:600; font-size: 18px;
    padding:12px 28px; border-radius:6px; background:transparent;
  }
  .btn-outline-hero:hover{ background:#fff; color:#000; }

 
  
  .circle-btn:hover{ background:var(--pink); border-color:var(--pink); }
.btn.whatsapp-float{
  position:absolute;
  right: 20px;
  bottom:40px;
  width:fit-content;
  white-space:nowrap;
  background:#25d366; color:#fff; border:none; border-radius:50px;
  padding:10px 22px 10px 14px; gap:10px;
  box-shadow:0 6px 20px rgba(37,211,102,.4);
  transition:transform .25s ease, box-shadow .25s ease;
  z-index:5;
}
.btn.whatsapp-float:hover{
  background:#20bd5a; color:#fff;
  transform:translateY(-3px);
  box-shadow:0 10px 26px rgba(37,211,102,.55);
}
.whatsapp-float strong{
  display:block;
  font-size: 16px;
}
.whatsapp-float small{
  display:block;
  font-size: 14px;
  opacity:.9;
}
.whatsapp-float i{ font-size:1.6rem; }


 
 /* features strip below hero */
.features-strip{
  border-top: 1px solid rgb(97 92 92 / 57%);
  border: 1px solid rgb(97 92 92 / 57%);
  border-radius: 14px;
  overflow: hidden;
background: #000;
}


.features-strip .col{
  position: relative;
  padding: 0;
}

.features-strip .col:after{
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  height: 70%;
  width: 1px;
  border-right: 1px solid rgb(97 92 92 / 57%);
}

.features-strip .col:last-child:after{
  display: none;
}
.feature-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:22px 18px;
  height: 100%;
}

.feature-item .f-icon{
  width:50px; height:50px; min-width:50px; border-radius:50%;
  border:1px solid #ce0b79; color:#ce0b79;
  display:flex; align-items:center; justify-content:center; font-size:1.3rem;
}

.feature-item h6{ color:#fff; font-size: 16px; font-weight:600; margin-bottom:2px; text-transform:uppercase; }
.feature-item p{ color:#999; font-size: 14px; margin:0; }


  .btn-hero2 {
  width: auto;
  border-radius: 6px;
  justify-content: flex-start;
  padding-left: 1.7rem;
  padding-right: 1.4rem;
  white-space: nowrap;
  flex-wrap: nowrap;
  gap: 0.85rem;
}


.glosslabz-hero {
    position: relative;
}

.glosslabz-hero .hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.glosslabz-hero > *:not(.hero-bg-img) {
    position: relative;
    z-index: 1;
}

.blog-list-btn{
	width: 90px;
}

figcaption .homegallery {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.5),
        transparent
    );
}

.policy-wrap{
  color: var(--pink);
}

.policy-wrap p{
  font-size: 16px;
  font-family: var(--sans);
color: #fff;
}

  .policy-wrap ul{
    margin-bottom: 1rem;
    list-style: none;
    padding-left: 2.25rem;
  }
  .policy-wrap ul li{
    position: relative;
    margin-bottom: .35rem;
	 color: #fff;
  }
  .policy-wrap ul li::before{
    content: ".";
    position: absolute;
    left: -1.1rem;
    top: -0.6rem;
    font-size: 30px;
    line-height: 1;
    color: var(--text-color);
  }
.policy-wrap strong{
  color: var(--pink);
}

.services-bg-left2{
	top : -2% !important;
}

.gallery-item { cursor: pointer; }

.gallery-popup-overlay {
    position: fixed; inset: 0;
    background: rgb(0 0 0 / 84%);
    display: none; align-items: center; justify-content: center;
    z-index: 9999; padding: 20px;
}
.gallery-popup-overlay.active { display: flex; }

.gallery-popup-card {
    position: relative;
    max-width: 420px; width: 100%;
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.gallery-popup-img { width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; }

.gallery-popup-caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(0,0,0,.85) 20%, rgba(0,0,0,0));
    color: #fff;
}
.gallery-popup-title { font-size: 1.5rem; font-weight: 600; margin: 0 0 4px; }
.gallery-popup-subtitle { font-size: .95rem; opacity: .9; }

.gallery-popup-close {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px; border: none; border-radius: 50%;
    background: rgba(0,0,0,.5); color: #fff; font-size: 1.4rem; line-height: 1;
    cursor: pointer; z-index: 2;
}




/* ==========================================
   YOUTUBE VIDEO
========================================== */

.yt-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;

    aspect-ratio: 16 / 9;

    overflow: hidden;
}


/* ==========================================
   YOUTUBE IFRAME
========================================== */

.yt-video-wrapper iframe {
    position: absolute;

    top: -50px;

    left: 0;

    width: 100%;

    height: calc(100% + 110px);

    border: 0;
    display: block;
}
















/* ==========================================
   SHORTS SPLIDE
========================================== */

.shorts-splide {
    width: 100%;
    padding: 0 55px;
}

.shorts-splide .splide__track {
    overflow: hidden;
}

.shorts-splide .splide__list {
    align-items: flex-start;
}

.shorts-splide .splide__slide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: auto;
}


/* ==========================================
   SHORT CARD
========================================== */

.short-card {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 9 / 16;

    overflow: hidden;
    border-radius: 20px;
    background: #000;
}

.short-card > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}



/* ==========================================
   PLAY BUTTON
========================================== */

.short-play-btn {
    position: absolute;
    left: 12px;
    bottom: 12px;

    width: 34px;
    height: 34px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: rgba(0, 0, 0, .75);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 20;

    cursor: pointer;
}

.short-play-btn span {
    color: #fff;
    font-size: 13px;
    line-height: 1;

    margin-left: 2px;
}


/* Video */
.short-player {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background: #000;

    z-index: 50;
}

.short-player iframe {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}



.short-card.is-playing > img,
.short-card.is-playing > .short-play-btn {
    display: none !important;
}


/* ==========================================
   SPLIDE ARROWS
========================================== */

.shorts-splide .splide__arrow {
    width: 45px;
    height: 45px;

    opacity: 1;

    background: #000;

    color: #fff;

    border-radius: 50%;

    z-index: 30;
}

.shorts-splide .splide__arrow:hover {
    background: #222;
}

.shorts-splide .splide__arrow i {
    font-size: 18px;
}


/* ==========================================
   PAGINATION
========================================== */

.shorts-splide .splide__pagination {
    position: static !important;

    display: flex !important;

    visibility: visible !important;

    opacity: 1 !important;

    margin: 2rem 0 0 !important;

    padding: 0 !important;

    justify-content: center;

    align-items: center;

    gap: 0.65rem;

    list-style: none;

    min-height: 22px;
}

.shorts-splide .splide__pagination li {
    display: flex !important;

    list-style: none;
}

.shorts-splide .splide__pagination__page {
    display: block !important;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #fff;

    opacity: 1 !important;

    margin: 0;
    padding: 0;

    border: none;

    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;

    transition: all 0.25s ease;
}

.shorts-splide .splide__pagination__page.is-active {
    background: var(--pink);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1199px) {

    .shorts-splide {
        padding: 0 50px;
    }

}

@media (max-width: 991px) {

    .shorts-splide {
        padding: 0 45px;
    }

    .short-card {
        max-width: 320px;
    }

}

@media (max-width: 575px) {

    .shorts-splide {
        padding: 0 35px;
    }

    .short-card {
        max-width: 320px;
    }

    .shorts-splide .splide__arrow {
        width: 38px;
        height: 38px;
    }

    .shorts-splide .splide__arrow i {
        font-size: 15px;
    }

}


















