@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #172033;
  --muted: #697386;
  --cream: #fbfaf7;
  --white: #fff;
  --navy: #071d3b;
  --navy2: #0d2d55;
  --orange: #e6731c;
  --gold: #f2b45b;
  --line: #e9e5de;
  --shadow: 0 22px 60px rgba(18, 35, 58, .10);
  --radius: 24px;
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth
  width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden
   width: 100%;
    max-width: 100%;
}

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

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

button {
  font: inherit
}

.section-shell {
  width: min(calc(100% - 48px), var(--max));
  margin: auto
}

/*marquee*/

.top-marquee {
    width: 100%;
    background: #0d3b66;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    position: relative;
}

.top-marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    min-width: max-content;
    animation: marqueeMove 25s linear infinite;
}

.top-marquee-content span {
    font-size: 14px;
    font-weight: 500;
}

.top-marquee-content a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.top-marquee-content a:hover {
    color: #ffd54f;
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.top-marquee:hover .top-marquee-content {
    animation-play-state: paused;
}

/* Mobile */
@media (max-width:768px) {
    .top-marquee {
        padding: 8px 0;
    }

    .top-marquee-content {
        gap: 35px;
        animation-duration: 18s;
    }

    .top-marquee-content span {
        font-size: 13px;
    }
}


/*----------*/

.lux-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20, 30, 45, .08);
  transition: .3s
}

.lux-header.scrolled {
  box-shadow: 0 10px 35px rgba(10, 30, 50, .08)
}

.lux-header__inner {
  width: min(calc(100% - 48px), var(--max));
  height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand-lockup img {
  width: 180px;
  height: 68px;
  object-fit: contain;
  border-radius: 6px
}

.lux-nav {
  display: flex;
  align-items: center;
  gap: 5px
}

.nav-link,
.nav-parent {
  border: 0;
  background: transparent;
  padding: 13px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #263246;
  cursor: pointer;
  transition: .25s
}

.nav-link:hover,
.nav-parent:hover,
.nav-link.is-current {
  color: var(--orange)
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  border-radius: 999px;
  padding: 13px 20px;
  margin-left: 8px
   
}
.nav-cta:hover{
    background:orange;
    box-shadow:0 3px 4px black;
   
}

.nav-parent i {
  font-size: 9px;
  margin-left: 5px;
  transition: .25s
}

.nav-group {
  position: relative
}

.nav-panel {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 720px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(12, 31, 52, .18);
  opacity: 0;
  visibility: hidden;
  transition: .25s
}

.nav-panel--compact {
  width: 330px;
  grid-template-columns: 1fr
}

.nav-group:hover .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.nav-panel a {
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 13px;
  color: #556071
}

.nav-panel a:hover {
  background: #fff4e9;
  color: var(--orange)
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 45px;
  height: 45px
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto
}
/* -------------------- */

/* =========================================================
   PREMIUM HERO BANNER
   DESKTOP + MOBILE
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


/* =========================================================
   HERO BASE
========================================================= */

.premium-hero {
    position: relative;

    width: 100%;
    max-width: 100%;

    overflow: hidden;

    background: #ffffff;

    isolation: isolate;
}


/* =========================================================
   DESKTOP HERO
========================================================= */

.premium-hero--desktop {

    display: block;

    height: clamp(
        420px,
        42vw,
        680px
    );
}


/* =========================================================
   SLIDE CONTAINER
========================================================= */

.premium-hero__slides {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;
}


/* =========================================================
   INDIVIDUAL SLIDE
========================================================= */

.premium-hero__slide {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    z-index: 0;

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


/* ACTIVE SLIDE */

.premium-hero__slide.is-active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    z-index: 2;
}


/* =========================================================
   SLIDE LINK
========================================================= */

.premium-hero__slide > a {

    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    text-decoration: none;
}


/* =========================================================
   DESKTOP IMAGE
========================================================= */

.premium-hero--desktop
.premium-hero__slide img {

    display: block;

    width: 100% !important;
    height: 85% !important;

    max-width: 100% !important;
    min-width: 0 !important;

    margin: 0;
    padding: 0;

    /*
       IMPORTANT:
       Keeps the complete promotional banner visible.
    */

    object-fit: contain;

    object-position: center center;

    background: #ffffff;
}


/* =========================================================
   DESKTOP DOTS
========================================================= */

.premium-hero--desktop
.premium-hero__dots {

    position: absolute;

    left: 50%;

    bottom: 22px;

    transform: translateX(-50%);

    z-index: 20;

    display: flex;

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

    gap: 7px;
}


/* =========================================================
   DOT BUTTON
========================================================= */

.premium-hero__dots button {

    display: block;

    width: 28px;
    height: 4px;

    padding: 0;

    border: 0;

    border-radius: 20px;

    background:
        rgba(7, 29, 59, 0.30);

    cursor: pointer;

    transition:
        width 0.35s ease,
        background 0.35s ease,
        transform 0.25s ease;
}


.premium-hero__dots button:hover {

    transform: scaleY(1.4);

}


.premium-hero__dots button.is-active {

    width: 48px;

    background: #f47721;

}


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

.premium-hero--mobile {

    display: none;

    width: 100%;

    height: auto;

    min-height: 0;

    overflow: hidden;
}


/* =========================================================
   MOBILE SLIDE CONTAINER
========================================================= */

.premium-hero--mobile
.premium-hero__slides {

    position: relative;

    width: 100%;

    /*
       Mobile banner area.
       Adjust if your mobile banner ratio is different.
    */

    aspect-ratio: 4 / 5;

    height: auto;

    overflow: hidden;
}


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

.premium-hero--mobile
.premium-hero__slide {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

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


.premium-hero--mobile
.premium-hero__slide.is-active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    z-index: 2;
}


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

.premium-hero--mobile
.premium-hero__slide > a {

    display: block;

    width: 100%;
    height: 100%;
}


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

.premium-hero--mobile
.premium-hero__slide img {

    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    min-width: 0 !important;

    margin: 0;
    padding: 0;

    object-fit: contain;

    object-position: center center;

    background: #ffffff;
}


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

.premium-hero--mobile
.premium-hero__dots {

    position: absolute;

    left: 50%;

    bottom: 12px;

    transform: translateX(-50%);

    z-index: 20;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;
}


.premium-hero--mobile
.premium-hero__dots button {

    width: 20px;

    height: 3px;

    padding: 0;

    border: 0;

    border-radius: 20px;

    background:
        rgba(7, 29, 59, 0.35);

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}


.premium-hero--mobile
.premium-hero__dots button.is-active {

    width: 34px;

    background: #f47721;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) and (min-width: 768px) {

    .premium-hero--desktop {

        height: clamp(
            360px,
            48vw,
            560px
        );

    }

}


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

@media (max-width: 767px) {

    /* Hide desktop */

    .premium-hero--desktop {

        display: none !important;

    }


    /* Show mobile */

    .premium-hero--mobile {

        display: block !important;

    }

}


/* =========================================================
   DESKTOP SWITCH
========================================================= */

@media (min-width: 768px) {

    .premium-hero--desktop {

        display: block !important;

    }


    .premium-hero--mobile {

        display: none !important;

    }

}


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

@media (max-width: 480px) {

    .premium-hero--mobile
    .premium-hero__slides {

        /*
           Good for 1080 × 1350 banners.
        */

        aspect-ratio: 4 / 5;

    }


    .premium-hero--mobile
    .premium-hero__dots {

        bottom: 9px;

    }


    .premium-hero--mobile
    .premium-hero__dots button {

        width: 18px;

        height: 3px;

    }


    .premium-hero--mobile
    .premium-hero__dots button.is-active {

        width: 30px;

    }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .premium-hero--mobile
    .premium-hero__slides {

        aspect-ratio: 4 / 5;

    }


    .premium-hero--mobile
    .premium-hero__dots {

        bottom: 7px;

    }

}

/* ----------------------------------- */

.section-heading {
  margin-bottom: 45px
}

.section-heading.center {
  text-align: center
}

.section-heading span {
  display: block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 10px
}

.section-heading h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -.04em
}

.section-heading h2 strong {
  color: var(--orange)
}

.section-heading p {
  color: var(--muted);
  margin-top: 12px
}

.intro-section {
  padding: 40px 0
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center
}

.intro-copy {
  font-size: 15px;
  color: var(--muted)
}

.intro-copy p {
  margin-bottom: 20px
  
}

.intro-copy .lead {
  font-size: 23px;
  line-height: 1.45;
  color: var(--ink)
}

.intro-copy .lead strong {
  color: var(--orange)
}

.text-link {
  display: inline-flex;
  gap: 9px;
  color: var(--orange);
  font-weight: 800;
  margin-top: 8px
}

.intro-visual {
  position: relative
}

.image-frame {
  padding: 10px;
  background: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow);
  /*transform: rotate(1.5deg)*/
}

.image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 21px
}

.floating-stat {
  position: absolute;
  left: -90px;
  bottom: 200px;
  background: var(--navy);
  color: #fff;
  padding: 18px 24px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow)
}

.floating-stat strong {
  font-size: 42px;
  color: #ffc477;
  line-height: 1
}

.floating-stat span {
  font-size: 12px;
  line-height: 1.45
}

.service-showcase {
  padding: 30px 0 50px
}

.service-orbit {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  align-items: center;
  gap: 35px
}

.service-column {
  display: grid;
  gap: 16px
}

.service-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(18, 35, 58, .06);
  transition: .3s
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(18, 35, 58, .12);
  border-color: #f4c28c
}

.service-icon {
  flex: 0 0 55px;
  width: 75px;
  height: 75px;
  border-radius: 16px;
  background: #fff5ea;
  display: grid;
  place-items: center;
  overflow: hidden
}

.service-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain
}

.service-card h3 {
  font-size: 15px;
  color: var(--orange);
  margin-bottom: 2px
}

.service-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45
}

.service-center {
  position: relative;
  display: grid;
  place-items: center
}

.service-center img {
  width: 240px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, .14))
}

.service-center__halo {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 20%, #fff0e0 70%, transparent 71%);
  /*box-shadow: inset 0 0 0 2px #e6731c;*/
  box-shadow: inset 11px -20px 20px 0px #bebbb8;
}

.hair-section {
  background: var(--navy);
  padding: 50px 0
}

.light h2,
.section-heading.light h2 {
  color: #fff
}

.light p {
  color: #b8c5d5
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #102d50;
  min-height: 245px;
  border: 1px solid rgba(255, 255, 255, .12)
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  transition: .5s
}

.visual-card:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .85))
}

.visual-card span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 17px;
  color: #fff;
  font-weight: 800;
  font-size: 14px
}

.visual-card:hover img {
  transform: scale(1.08)
}

.skin-section {
  padding: 50px 0;
  background: #f5f8fb
}

.skin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.skin-card {
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(20, 40, 60, .08);
  transition: .3s
}

.skin-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: .45s
}

.skin-card span {
  display: block;
  padding: 18px;
  text-align: center;
  font-weight: 800;
  color: var(--ink);
  font-size: 14px
}

.skin-card:hover {
  transform: translateY(-8px)
}

.skin-card:hover img {
  transform: scale(1.06)
}

.detail-section {
  padding: 50px 0
}

.detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 65px
}

.quick-menu {
  align-self: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 13px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 110px
}

.quick-menu__title {
  padding: 15px 14px;
  font-family: "Manrope";
  font-weight: 800
}

.quick-menu>a {
  display: block;
  padding: 11px 13px;
  border-radius: 10px;
  color: black;
  font-size: 13px
}

.quick-menu>a:hover,
.quick-menu>a.active {
  background: #fff0df;
  color: var(--orange);
  font-weight: 700
}

.help-card {
  margin-top: 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 17px;
  padding: 22px;
  text-align: center
}

.help-card span,
.help-card strong,
.help-card a {
  display: block
}

.help-card span {
  font-size: 12px
}

.help-card strong {
  font-size: 18px;
  color: #ffc477;
  margin-bottom: 12px
}

.help-card a {
  font-size: 12px;
  margin-top: 5px
}

.detail-copy {
  color: black;
  font-size: 15px
}

.detail-copy h2 {
  font-family: "Manrope";
  font-size: 42px;
  line-height: 1.15;
  color: #e6731c;
  margin-bottom: 22px
}

.detail-copy h3 {
  font-size: 22px;
  color: #e6731c;
  margin: 32px 0 10px
}

.detail-copy p {
  margin-bottom: 12px
}

.faq-section {
  padding: 50px 0;
  background: var(--navy)
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 70px;
  align-items: center
}

.faq-list {
  display: grid;
  gap: 10px
}

.faq-row {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-radius: 14px;
  text-align: left;
  padding: 18px 52px 18px 19px;
  cursor: pointer;
  transition: .3s
}

.faq-row:hover,
.faq-row.is-open {
  background: rgba(255, 255, 255, .1)
}

.faq-row>i {
  position: absolute;
  right: 18px;
  top: 20px;
  color: #ffc477
}

.faq-row div {
  max-height: 0;
  overflow: hidden;
  transition: .35s;
  color: #bdc9d7;
  font-size: 13px
}

.faq-row.is-open div {
  max-height: 180px;
  padding-top: 12px
}

.faq-visual {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .25)
}

.faq-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover
}

.team-section {
  padding: 50px 0
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px
}

.doctor-card {
  display: grid;
  grid-template-columns: 42% 58%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.doctor-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover
}

.doctor-info {
  padding: 25px
  
  
}

.doctor-info h3 {
  font-family: "Manrope";
  font-size: 22px
}

.doctor-info b {
  font-size: 13px;
  color: var(--orange);
  line-height: 1.55
}

.doctor-info p {
  font-size: 13px;
  color: var(--muted);
  margin: 14px 0
}

.doctor-info a {
  font-size: 12px;
  font-weight: 800;
  color: var(--orange)
}

.results-section {
  padding: 50px 0;
  background: #f5f8fb
}

.results-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.result-card {
  background: #fff;
  padding: 8px;
  border-radius: 22px;
  box-shadow: var(--shadow)
}

.result-image {
  position: relative;
  overflow: hidden;
  border-radius: 17px
}

.result-image img {
  width: 100%;
  height: 180px;
  object-fit: cover
}

.result-image span,
.result-image b {
  position: absolute;
  top: 12px;
  background: rgba(7, 29, 59, .85);
  color: #fff;
  padding: 4px 9px;
  border-radius: 7px;
  font-size: 10px
}

.result-image span {
  left: 12px
}

.result-image b {
  right: 12px;
  background: rgba(230, 115, 28, .9)
}

.insights-section {
  padding: 50px 0
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px
}

.insights-grid article {
  border: 2px solid black;
  background: #fff;
  border-radius: 19px;
  padding: 24px;
  min-height: 220px;
  transition: .3s
}

.insights-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.insights-grid span {
  color: black;
  font-size: 12px;
  font-weight: 800
  border-radius: 50%;
  box-shadow:0 2px 2px black;
  border: 2px solid #FF5722;
    padding: 4px;
}

.insights-grid h3 {
  color: var(--orange);
  font-size: 17px;
  line-height: 1.35;
  margin: 28px 0 10px
}

.insights-grid p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55
}

.media-section {
  padding: 20px 0 50px
}

.youtube-label {
  color: #e11 !important
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.media-card {
  background: #fff;
  padding: 8px;
  border-radius: 22px;
  box-shadow: var(--shadow)
}

.video-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16/9
}

.video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s
}

.video-box:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .08)
}

.video-box button {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: #e11;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3)
}

.video-box:hover img {
  transform: scale(1.05)
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: 0
}
/*-------------------------------*/

/*---------------------------*/



/*----------------------------*/

.lux-footer {
  background: black;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr 1fr;
  gap: 65px;
  padding-top: 40px;
  /*padding-bottom: 35px*/
}

.footer-brand img {
  width: 210px;
  margin-bottom: 20px
}

.footer-brand p,
.footer-contact p {
  font-size: 14px;
  line-height: 1.7
}

.hours {
  display: flex;
  gap: 15px;
  margin-top: 22px
}

.hours i {
  color: #ffc477;
  font-size: 22px
}

.hours span,
.hours strong {
  display: block;
  font-size: 14px
}

.hours strong {
  color: #fff;
  margin-bottom: 4px
}

.footer-links h3,
.footer-contact h3 {
  color: #e6731c;
  font-family: "Manrope";
  font-size: 18px;
  margin-bottom: 18px
}

.footer-links a {
  display: block;
  font-size: 14px;
  padding: 5px 0
}

.footer-links a:hover,
.footer-contact>a:hover {
  color: #ffc477
}

.footer-contact p {
  display: flex;
  gap: 12px
}

.footer-contact p i,
.footer-contact>a i {
  color: #ffc477
}

.footer-contact>a {
  display: block;
  font-size: 14px;
  margin-top: 13px
}

.map-wrap {
  margin-top: 17px;
  border-radius: 15px;
  overflow: hidden
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer-bottom__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px
}

.socials {
  display: flex;
  gap: 8px
}

.socials a {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: .25s
}

.socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff
}

.float-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.float-actions a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 23px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
  transition: .25s
}

.float-actions a:hover {
  transform: translateY(-5px) scale(1.05)
}

.float-call {
  background: linear-gradient(135deg, #ffd27d, #c98d3c)
}

.float-wa {
  background: #25d366
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease
}

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

@media(max-width:1100px) {
  .lux-nav {
    gap: 0
  }

  .nav-link,
  .nav-parent {
    padding: 12px 9px;
    font-size: 10px
  }

  .intro-grid {
    gap: 40px
  }

  .skin-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .insights-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer-grid {
    gap: 10px
  }
}

@media(max-width:900px) {
  .top-strip__inner {
    justify-content: center
  }

  .top-strip a {
    display: none
  }

  .lux-header__inner {
    height: 72px
  }

  .nav-toggle {
    display: block
  }

  .lux-nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12)
  }

  .lux-nav.is-open {
    display: flex
  }

  .nav-link,
  .nav-parent {
    text-align: left;
    width: 100%;
    font-size: 12px
  }

  .nav-group {
    width: 100%
  }

  .nav-panel,
  .nav-panel--compact {
    position: static;
    transform: none;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    background: #fafafa;
    box-shadow: none;
    border-radius: 12px;
    margin: 3px 0 8px;
    padding: 8px
  }

  .nav-group.is-open .nav-panel {
    display: grid
  }

  .nav-cta {
    margin: 7px 0 0;
    text-align: center
  }

  .hero-stage {
    min-height: 75vh
  }

  .hero-stage__content {
    padding: 70px 0
  }

  .hero-stage h1 {
    font-size: 55px
  }

  .service-orbit {
    grid-template-columns: 1fr 220px 1fr;
    gap: 12px
  }

  .service-center img {
    width: 200px
  }

  .service-center__halo {
    width: 210px;
    height: 210px
  }

  .detail-grid {
    grid-template-columns: 1fr
  }

  .quick-menu {
    position: static
  }

  .faq-layout {
    grid-template-columns: 1fr
  }

  .faq-visual {
    order: -1
  }

  .team-grid {
    grid-template-columns: 1fr
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-brand {
    grid-column: 1/-1
  }
}

@media(max-width:650px) {
  .section-shell {
    width: min(calc(100% - 28px), var(--max))
  }

  .top-strip {
    font-size: 10px
  }

  .brand-lockup img {
    width: 165px
  }

  .hero-stage {
    min-height: 72vh
  }

  .hero-stage h1 {
    font-size: 43px
  }

  .hero-stage p {
    font-size: 15px
  }

  .hero-stage__content {
    padding-top: 50px
  }

  .intro-section,
  .hair-section,
  .skin-section,
  .detail-section,
  .faq-section,
  .team-section,
  .results-section,
  .insights-section,
  .review-section {
    padding: 70px 0
  }

  .intro-grid {
    grid-template-columns: 1fr
  }

  .image-frame img {
    height: 350px
  }

  .floating-stat {
    display:none;
  }

  .service-showcase {
    padding-bottom: 75px
  }

  .service-orbit {
    grid-template-columns: 1fr
  }

  .service-center {
    order: -1;
    margin-bottom: 15px
  }

  .service-center img {
    width: 180px
  }

  .service-center__halo {
    width: 190px;
    height: 190px
  }

  .visual-grid,
  .media-grid {
    grid-template-columns: 1fr 1fr
  }

  .visual-card,
  .visual-card img {
    min-height: 180px
  }

  .skin-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .skin-card img {
    height: 160px
  }

  .skin-card span {
    padding: 12px 7px;
    font-size: 12px
  }

  .detail-copy h2 {
    font-size: 31px
  }

  .faq-visual img {
    height: 330px
  }

  .doctor-card {
    grid-template-columns: 1fr
  }

  .doctor-photo img {
    height: 480px
  }

  .results-track {
    grid-template-columns: 1fr 1fr
  }

  .result-image img {
    height: 190px
  }

  .insights-grid {
    grid-template-columns: 1fr 1fr
  }

  .insights-grid article {
    min-height: 200px
  }

  .review-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom__inner {
    flex-direction: column;
    gap: 14px;
    padding: 20px 0
  }

  .float-actions {
    right: 15px;
    bottom: 15px
  }

  .float-actions a {
    width: 48px;
    height: 48px;
    font-size: 19px
  }
}

@media(max-width:420px) {

  .visual-grid,
  .media-grid,
  .skin-grid,
  .results-track,
  .insights-grid {
    grid-template-columns: 1fr
  }

  .hero-stage h1 {
    font-size: 39px
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center
  }
}


/* ================= PREMIUM V2 OVERRIDES ================= */
:root {
  --lux-navy: #071b3a;
  --lux-navy-2: #0d2a56;
  --lux-orange: #f47721;
  --lux-gold: #d7a24a;
  --lux-cream: #fbf8f2;
  --lux-white: #ffffff;
  --lux-text: #27344a;
  --lux-muted: #718096;
  --lux-line: rgba(7, 27, 58, .11);
  --lux-shadow: 0 24px 70px rgba(7, 27, 58, .12);
  --lux-radius: 22px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px
}

body {
  background: linear-gradient(180deg, #fff 0%, #fbfcff 55%, #fff 100%);
  color: var(--lux-text);
  overflow-x: hidden;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 8% 15%, rgba(244, 119, 33, .055), transparent 25%),
    radial-gradient(circle at 92% 42%, rgba(7, 27, 58, .055), transparent 27%);
}



header,
.navbar,
nav {
  position: relative;
  z-index: 1000;
}

.navbar {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .88) !important;
  border-bottom: 1px solid rgba(7, 27, 58, .07);
  box-shadow: 0 10px 35px rgba(7, 27, 58, .06);
}

.navbar-brand img {
  max-height: 52px;
  width: auto
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 700 !important;
  letter-spacing: .02em;
  color: var(--lux-navy) !important;
  padding: 20px 13px !important;
}

.navbar-nav .nav-link:after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 9px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--lux-orange), var(--lux-gold));
  transition: .3s;
}

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

section {
  position: relative
}

section:not(.hero-section):before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--lux-orange), var(--lux-gold));
  opacity: .0;
}

h1,
h2,
h3,
h4 {
  color: var(--lux-navy);
  letter-spacing: -.025em
}

.section-title,
.section-heading {
  font-weight: 800;
  position: relative;
}

.section-title:after,
.section-heading:after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  border-radius: 10px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, var(--lux-orange), var(--lux-gold));
}

.card,
.service-card,
.doctor-card,
.testimonial-card,
.blog-card,
.faq-item,
.treatment-card {
  border: 1px solid var(--lux-line) !important;
  border-radius: var(--lux-radius) !important;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 40px rgba(7, 27, 58, .07);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.card:hover,
.service-card:hover,
.doctor-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--lux-shadow);
  border-color: rgba(244, 119, 33, .28) !important;
}

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

.btn,
.button {
  border-radius: 999px !important;
  font-weight: 800 !important;
  letter-spacing: .02em;
  padding: 12px 23px !important;
  transition: .3s !important;
}

.btn-primary,
.btn-orange {
  background: linear-gradient(135deg, var(--lux-orange), #ff9b4d) !important;
  border: 0 !important;
  box-shadow: 0 10px 25px rgba(244, 119, 33, .25);
}

.btn-primary:hover,
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(244, 119, 33, .32)
}

.btn-outline-primary {
  border: 1px solid var(--lux-navy) !important;
  color: var(--lux-navy) !important;
}

.btn-outline-primary:hover {
  background: var(--lux-navy) !important;
  color: #fff !important
}

footer {
  /*background: linear-gradient(135deg, #061831, #0d2d5a) !important;*/
  position: relative;
  overflow: hidden;
}

footer:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -170px;
  top: -200px;
  background: rgba(244, 119, 33, .08);
}

footer a {
  transition: .25s
}

footer a:hover {
  color: #ffab63 !important;
  padding-left: 3px
}

.mobile-action-dock {
  display: none;
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 9990;
  background: rgba(7, 27, 58, .95);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mobile-action-dock a {
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 11px;
  padding: 8px 3px;
  border-radius: 14px;
}

.mobile-action-dock a:first-child {
  background: rgba(255, 255, 255, .07)
}

.mobile-action-dock span {
  display: block;
  font-size: 18px;
  color: #ff9a50;
  margin-bottom: 2px
}

@media (max-width: 991.98px) {
  .luxury-topline__inner {
    justify-content: center
  }

  .luxury-topline__inner span:not(:first-child) {
    display: none
  }

  .navbar {
    padding: 7px 12px
  }

  .navbar-collapse {
    margin-top: 10px;
    padding: 10px 8px 15px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .12);
  }

  .navbar-nav .nav-link {
    padding: 13px 15px !important;
    border-radius: 12px
  }

  .navbar-nav .nav-link:hover {
    background: #fff7f0
  }

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

@media (max-width:767.98px) {
  

  .luxury-topline {
    font-size: 9px
  }

  .luxury-topline__inner {
    padding: 7px 10px
  }

  .mobile-action-dock {
    display: grid
  }

  h1 {
    font-size: clamp(32px, 9vw, 48px)
  }

  h2 {
    font-size: clamp(25px, 7vw, 36px)
  }

  h3 {
    font-size: 21px
  }

  .section-title:after,
  .section-heading:after {
    margin-top: 10px
  }

  .card,
  .service-card,
  .doctor-card,
  .testimonial-card,
  .blog-card,
  .faq-item,
  .treatment-card {
    border-radius: 17px !important;
  }

  .container,
  .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important
  }
}

@media (prefers-reduced-motion:reduce) {

  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important
  }
}

.premium-reveal {
  opacity: 0;
  transform: translateY(20px)
}

.premium-reveal.is-visible {
  opacity: 1;
  transform: none;
  box-shadow: 0 2px 2px black;
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .8, .2, 1)
}

/* ================= FULLY RESPONSIVE NAVBAR V3 ================= */
.nav-scrim {
  display: none
}

@media (min-width:901px) {
  .lux-nav {
    display: flex !important
  }

  .nav-group:hover>.nav-parent i {
    transform: rotate(180deg)
  }

  .nav-group:focus-within .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
  }
}

@media (max-width:900px) {
  body.nav-lock {
    overflow: hidden
  }

  .lux-header {
    z-index: 10000
  }

  .lux-header__inner {
    height: 72px;
    padding: 0 16px;
    position: relative
  }

  .brand-lockup {
    position: relative;
    z-index: 10003;
    display: flex;
    align-items: center
  }

  .brand-lockup img {
    width: 165px;
    height: 62px
  }

  .nav-toggle {
    position: relative;
    z-index: 10004;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(7, 29, 59, .10);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(7, 29, 59, .08);
    cursor: pointer
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    margin: 0;
    background: var(--navy);
    border-radius: 4px;
    transition: .3s ease
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
  }

  .nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(3, 15, 32, .55);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 9990
  }

  .nav-scrim.is-visible {
    opacity: 1;
    visibility: visible
  }

  .lux-nav {
    position: fixed !important;
    top: 0;
    right: 0;
    left: auto !important;
    width: min(88vw, 390px) !important;
    height: 100dvh;
    min-height: 100vh;
    display: flex !important;
    flex-direction: column;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 92px 18px 30px !important;
    background: #fff !important;
    border-left: 1px solid rgba(7, 29, 59, .08);
    box-shadow: -25px 0 70px rgba(3, 15, 32, .18);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(105%);
    visibility: hidden;
    opacity: 0;
    transition: transform .38s cubic-bezier(.22, .61, .36, 1), opacity .25s ease, visibility .38s;
    z-index: 10001
  }

  .lux-nav.is-open {
    display: flex !important;
    transform: translateX(0);
    visibility: visible;
    opacity: 1
  }

  .lux-nav:before {
    content: "MENU";
    position: absolute;
    top: 28px;
    left: 20px;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2em;
    color: var(--orange)
  }

  .lux-nav .nav-link,
  .lux-nav .nav-parent {
    width: 100%;
    min-height: 52px;
    padding: 14px 14px !important;
    margin: 0 !important;
    border-bottom: 1px solid #edf0f4;
    text-align: left;
    font-size: 12px !important;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--navy) !important;
    background: transparent !important;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between
  }

  .lux-nav .nav-link:hover,
  .lux-nav .nav-parent:hover,
  .lux-nav .nav-link.is-current {
    color: var(--orange) !important;
    background: #fff8f1 !important
  }

  .lux-nav .nav-link:after {
    display: none
  }

  .nav-group {
    width: 100%;
    position: static
  }

  .nav-parent i {
    font-size: 10px;
    margin-left: auto;
    transition: .3s ease
  }

  .nav-group.is-open>.nav-parent {
    color: var(--orange) !important;
    background: #fff8f1 !important
  }

  .nav-group.is-open>.nav-parent i {
    transform: rotate(180deg)
  }

  .nav-panel,
  .nav-panel--compact {
    position: static !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 0 5px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fafbfc !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
  }

  .nav-group.is-open .nav-panel {
    max-height: 850px
  }

  .nav-panel a {
    padding: 12px 15px 12px 29px !important;
    border-bottom: 1px solid #eef1f4;
    border-radius: 0 !important;
    font-size: 12px !important;
    line-height: 1.35;
    color: #5c6778 !important;
    position: relative
  }

  .nav-panel a:before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%)
  }

  .nav-panel a:hover {
    background: #fff4e9 !important;
    color: var(--orange) !important
  }

  .nav-cta {
    justify-content: center !important;
    text-align: center !important;
    margin-top: 18px !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, var(--orange), #ff9b4d) !important;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(230, 115, 28, .24);
    min-height: 50px !important
  }
}

@media (max-width:480px) {
  .lux-nav {
    width: 92vw !important;
    padding-left: 14px !important;
    padding-right: 14px !important
  }

  .lux-header__inner {
    padding: 0 12px
  }

  .brand-lockup img {
    width: 152px;
    height: 60px
  }

  .nav-toggle {
    width: 43px;
    height: 43px
  }

  .lux-nav .nav-link,
  .lux-nav .nav-parent {
    min-height: 50px
  }

  .nav-panel a {
    font-size: 11.5px !important
  }
}

@media (prefers-reduced-motion:reduce) {

  .lux-nav,
  .nav-scrim,
  .nav-toggle span,
  .nav-panel {
    transition: none !important
  }
}
/* ------------------- */
/*testimonal*/


