/* ===================================================================
   VSMILE DENTAL STUDIO — stylesheet
   Palette sampled directly from the VSmile crest: antique gold,
   warm ivory/cream, and a deep espresso-black (no blue anywhere).
   Type: Fraunces (display) + Inter (body/UI)
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');



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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inder', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-style: normal;
  font-size: 20px;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

@media(max-width:640px) {
  .container {
    padding: 0 20px;
  }
}

::selection {
  background: var(--gold);
  color: var(--white);
}

/* focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 1rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 600;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.on-dark .eyebrow {
  color: var(--gold-light);
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 .4em;
  color: var(--ink);
}

.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark p {
  color: var(--ivory);
}

h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -.01em;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
}

h3 {
  font-size: 1.5rem;
}

em {
  font-style: italic;
  color: var(--gold);
}

p {
  margin: 0 0 1em;
  color: #4b473f;
}

.on-dark p {
  color: #D9CDB4;
}

.lede {
  font-size: 1.30rem;
  max-width: 52ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: .03em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--line);
  color: var(--ivory);
}

.on-dark .btn-outline {
  color: var(--ivory);
  border-color: rgba(217, 187, 124, .4);
}

body:not(.on-dark) .btn-outline {
  color: var(--gold-light);
  border-color: var(--gold-dim);
}

.btn-outline:hover {
  background: rgba(176, 141, 77, .12);
  transform: translateY(-2px);
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 1rem;
}

/*==================================================
            PREMIUM MODERN HEADER - PART A
==================================================*/

:root {

  --header-bg: rgba(8, 18, 28, .72);
  --header-border: rgba(255, 255, 255, .08);

  --gold: #D4AF37;
  --gold-light: #F7D97C;

  --white: #ffffff;

  --text: #d8d8d8;

  --shadow: 0 20px 45px rgba(0, 0, 0, .25);

  --radius: 22px;

  --transition: .4s cubic-bezier(.4, 0, .2, 1);

}

/*==================================================
                HEADER
==================================================*/

.site-header {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 9999;

  transition: .4s;

}

.site-header.scrolled {

  padding-top: 10px;

}

/*==================================================
                TOP BAR
==================================================*/

.top-bar {

  background: #06111b;

  border-bottom: 1px solid rgba(255, 255, 255, .06);

  padding: 10px 0;

}

.top-flex {

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 15px;

}

.top-left,
.top-right {

  display: flex;

  align-items: center;

  gap: 25px;

}

.top-left a,
.top-right span {

  color: #d7d7d7;

  font-size: 14px;

  text-decoration: none;

  display: flex;

  align-items: center;

  gap: 8px;

  transition: .3s;

}

.top-left a:hover {

  color: var(--gold-light);

}

.top-left i,
.top-right i {

  color: var(--gold);

}

/*==================================================
                SOCIAL
==================================================*/

.top-social {

  display: flex;

  align-items: center;

  gap: 10px;

}

.top-social a {

  width: 34px;

  height: 34px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  text-decoration: none;

  background: rgba(255, 255, 255, .05);

  border: 1px solid rgba(255, 255, 255, .08);

  transition: var(--transition);

}

.top-social a:hover {

  background: var(--gold);

  color: #111;

  transform: translateY(-4px);

}

/*==================================================
                NAVBAR
==================================================*/

.navbar-wrap {

  margin-top: 18px;

}

.navbar {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;

 padding: 5px 5px;

  background: var(--header-bg);

  border: 1px solid var(--header-border);

  backdrop-filter: blur(20px);

  -webkit-backdrop-filter: blur(20px);

  border-radius: 22px;

  box-shadow: var(--shadow);

  transition: var(--transition);

}

.site-header.scrolled .navbar {

  padding: 14px 28px;

  background: rgba(7, 16, 24, .88);

}

/*==================================================
                BRAND
==================================================*/

.brand {

  display: flex;

  align-items: center;

  gap: 14px;

  text-decoration: none;

}

.brand img {

  width: 350px;

  transition: .4s;

}

.brand:hover img {

  transform: rotate(-6deg) scale(1.05);

}

.brand-text {

  display: flex;

  flex-direction: column;

}

.brand-text h2 {

  font-size: 30px;

  margin: 0;

  color: #fff;

  line-height: 1;

  font-weight: 700;

}

.brand-text span {

  font-size: 13px;

  color: var(--gold-light);

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-top: 4px;

}

/*==================================================
                NAVIGATION
==================================================*/

.nav-links {

  display: flex;

  align-items: center;

  gap: 34px;

}

.nav-links>a {

  position: relative;

  color: var(--gold-dark);

  text-decoration: none;

  font-size: 15px;

  font-weight: 500;

  transition: .35s;

}

.nav-links>a:hover {

  color: var(--gold-light);

}

.nav-links>a::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 2px;

  background: linear-gradient(90deg,
      var(--gold),
      var(--gold-light));

  border-radius: 5px;

  transition: .4s;

}

.nav-links>a:hover::after,
.nav-links>a.active::after {

  width: 100%;

}

.nav-links>a.active {

  color: var(--gold-light);

}



/*==================================================
                HEADER RIGHT
==================================================*/

.header-right {

  display: flex;

  align-items: center;

  gap: 18px;

}

/*==================================================
                CALL BUTTON
==================================================*/

.call-btn {

  display: flex;

  align-items: center;

  gap: 12px;

  text-decoration: none;

  color: #fff;

}

.call-btn span {

  width: 52px;

  height: 52px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg,
      var(--gold),
      var(--gold-light));

  color: #111;

  font-size: 18px;

  transition: .4s;

}

.call-btn:hover span {

  transform: rotate(12deg) scale(1.08);

}

.call-btn small {

  display: block;

  color: #aaa;

  font-size: 11px;

  margin-bottom: 2px;

}

.call-btn strong {

  display: block;

  color: #fff;

  font-size: 15px;

  font-weight: 600;

}

/*==================================================
                BOOK BUTTON
==================================================*/

.book-btn {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 15px 26px;

  border-radius: 50px;

  background: linear-gradient(135deg,
      var(--gold),
      var(--gold-light));

  color: #111;

  text-decoration: none;

  font-weight: 700;

  transition: .4s;

  overflow: hidden;

  position: relative;

}

.book-btn::before {

  content: "";

  position: absolute;

  left: -120%;

  top: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .45),
      transparent);

  transition: .8s;

}

.book-btn:hover::before {

  left: 120%;

}

.book-btn:hover {

  transform: translateY(-5px);

  box-shadow: 0 18px 35px rgba(212, 175, 55, .35);

}

.book-btn i {

  transition: .3s;

}

.book-btn:hover i {

  transform: translateX(4px);

}

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


/*==================================================
        PREMIUM MODERN HEADER - PART B
==================================================*/

/*==============================
        MEGA MENU
==============================*/

.mega-menu {

  position: absolute;

  top: calc(100% + 28px);

  left: 50%;

  transform: translateX(-50%) translateY(20px);

  width: 760px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 35px;

  padding: 35px;

  background: rgba(8, 18, 28, .96);

  backdrop-filter: blur(30px);

  border: 1px solid rgba(255, 255, 255, .08);

  border-radius: 24px;

  box-shadow: 0 35px 70px rgba(0, 0, 0, .35);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition: .45s cubic-bezier(.4, 0, .2, 1);

  z-index: 999;

}

.nav-dropdown:hover .mega-menu {

  opacity: 1;

  visibility: visible;

  transform: translateX(-50%) translateY(0);

  pointer-events: auto;

}

.mega-column h4 {

  color: var(--gold-light);

  font-size: 18px;

  margin-bottom: 18px;

  padding-bottom: 10px;

  border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.mega-column a {

  display: block;

  color: #d8d8d8;

  text-decoration: none;

  padding: 10px 0;

  transition: .3s;

  font-size: 15px;

}

.mega-column a:hover {

  color: var(--gold-light);

  transform: translateX(8px);

}

/*==============================
        NAV LINK HOVER
==============================*/

.nav-links>a,
.drop-btn {

  transition: .35s;

}

.nav-links>a:hover,
.drop-btn:hover {

  text-shadow: 0 0 15px rgba(212, 175, 55, .4);

}

/*==============================
        HEADER SCROLL
==============================*/

.site-header.scrolled .top-bar {

  display: none;

}

.site-header.scrolled .navbar-wrap {

  margin-top: 10px;

}

.site-header.scrolled .brand img {

  /*width: 52px;*/

}

.site-header.scrolled .brand-text h2 {

  font-size: 26px;

}




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

@media(max-width:768px) {

  .top-bar {

    display: none;

  }

  .navbar-wrap {

    margin-top: 12px;

  }

  .navbar {

    padding: 15px 18px;

  }

  .brand img {

    /*width: 52px;*/

  }

  .brand-text h2 {

    font-size: 24px;

  }

  .brand-text span {

    font-size: 11px;

  }

  .book-btn {

    display: none;

  }

  .call-btn {

    display: none;

  }

}

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

@media(max-width:576px) {

  .navbar {

    padding: 14px 16px;

    border-radius: 18px;

  }

  .brand {

    gap: 10px;

  }

  .brand img {

    width: 46px;

  }

  .brand-text h2 {

    font-size: 21px;

  }

  .brand-text span {

    font-size: 10px;

    letter-spacing: 1px;

  }

  .menu-toggle {

    width: 42px;

    height: 42px;

  }

  .nav-links {

    width: 100%;

  }

}

/*==============================
        GLASS SHINE
==============================*/

.navbar::before {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  background: linear-gradient(120deg,
      transparent 20%,
      rgba(255, 255, 255, .08) 50%,
      transparent 80%);

  transform: translateX(-120%);

  pointer-events: none;

}

.navbar:hover::before {

  animation: glassShine 1.2s ease;

}

@keyframes glassShine {

  100% {

    transform: translateX(120%);

  }

}

/*==============================
        FLOAT ANIMATION
==============================*/

.book-btn {

  animation: floatBtn 4s ease-in-out infinite;

}

@keyframes floatBtn {

  0%,
  100% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(-4px);

  }

}

/*==============================
        LOGO ANIMATION
==============================*/

.brand img {

  animation: logoFloat 6s ease-in-out infinite;

}

@keyframes logoFloat {

  0%,
  100% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(-6px);

  }

}

/*==============================
        ACTIVE PAGE INDICATOR
==============================*/

.nav-links>a.active {

  color: var(--gold-light);

  font-weight: 600;

}

.nav-links>a.active::after {

  width: 100%;

  height: 3px;

}

/*==============================
        SCROLLBAR
==============================*/

.nav-links::-webkit-scrollbar {

  width: 6px;

}

.nav-links::-webkit-scrollbar-thumb {

  background: var(--gold);

  border-radius: 20px;

}

/* ===================================================================
   HERO
   =================================================================== */
/*==========================================================
            MODERN PREMIUM HERO SECTION
==========================================================*/

:root {

  --hero-bg: #07141f;
  --hero-secondary: #0d2233;
  --hero-card: rgba(255, 255, 255, .06);

  --gold: #d4af37;
  --gold-light: #f6d77c;
  --gold-dark: #9e7424;

  --white: #ffffff;
  --text: #d9d9d9;

  --line: rgba(255, 255, 255, .08);

  --shadow: 0 25px 60px rgba(0, 0, 0, .35);

  --radius: 28px;

  --transition: .45s cubic-bezier(.4, 0, .2, 1);

}

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

.hero {

  position: relative;

  overflow: hidden;

  background: linear-gradient(135deg,
      #06131d 0%,
      #0a2030 40%,
      #07141f 100%);

  padding: 180px 0 120px;

  isolation: isolate;

}

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

.hero-bg {

  position: absolute;

  inset: 0;

  overflow: hidden;

  z-index: -1;

}

.grid-pattern {

  position: absolute;

  inset: 0;

  background-image:

    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),

    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);

  background-size: 60px 60px;

  opacity: .25;

}

/*==========================================================
                    BLOBS
==========================================================*/

.blob {

  position: absolute;

  border-radius: 50%;

  filter: blur(70px);

  animation: blobFloat 12s ease-in-out infinite;

}

.blob1 {

  width: 420px;

  height: 420px;

  background: rgba(212, 175, 55, .18);

  top: -150px;

  right: -100px;

}

.blob2 {

  width: 300px;

  height: 300px;

  background: rgba(255, 255, 255, .06);

  left: -80px;

  bottom: -80px;

  animation-delay: 2s;

}

.blob3 {

  width: 220px;

  height: 220px;

  background: rgba(212, 175, 55, .12);

  left: 45%;

  top: 8%;

  animation-delay: 5s;

}

@keyframes blobFloat {

  0%,
  100% {

    transform: translateY(0) translateX(0);

  }

  50% {

    transform: translateY(40px) translateX(25px);

  }

}

/*==========================================================
                GRID
==========================================================*/

.hero-grid {

  display: grid;

  grid-template-columns: 1.1fr .9fr;

  /* gap: 80px; */

  align-items: center;

  position: relative;

  z-index: 2;
  margin-top: 5%;

}

/*==========================================================
            HERO COPY
==========================================================*/

.hero-copy {

  position: relative;

}

.eyebrow-wrap {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 25px;

}

.pulse-dot {

  width: 12px;

  height: 12px;

  border-radius: 50%;

  background: #30d158;

  box-shadow: 0 0 0 rgba(48, 209, 88, .5);

  animation: pulse 2s infinite;

}

@keyframes pulse {

  0% {

    box-shadow: 0 0 0 0 rgba(48, 209, 88, .5);

  }

  70% {

    box-shadow: 0 0 0 14px rgba(48, 209, 88, 0);

  }

  100% {

    box-shadow: 0 0 0 0 rgba(48, 209, 88, 0);

  }

}

.eyebrow {

  color: var(--gold-light);

  text-transform: uppercase;

  letter-spacing: 3px;

  font-size: 1rem;

  font-weight: 700;

}

.hero-copy h1 {

  font-size: clamp(48px, 7vw, 76px);

  line-height: 1.05;

  color: #fff;

  margin-bottom: 24px;

  font-weight: 700;

}

.hero-copy h1 span {

  display: block;

  background: linear-gradient(90deg,
      #ffffff,
      var(--gold-light),
      #ffffff);

  background-size: 220%;

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  animation: gradientMove 6s linear infinite;

}

@keyframes gradientMove {

  100% {

    background-position: 220%;

  }

}

.smile-arc {

  width: 220px;

  margin-bottom: 28px;

}

.smile-arc path {

  fill: none;

  stroke: var(--gold-light);

  stroke-width: 2;

  stroke-linecap: round;

  stroke-dasharray: 340;

  stroke-dashoffset: 340;

  animation: drawSmile 2s forwards;

}

@keyframes drawSmile {

  to {

    stroke-dashoffset: 0;

  }

}

.lede {

  color: black;

  font-size: 1.25rem;

  line-height: 1.9;

  max-width: 650px;

  margin-bottom: 35px;

}

.lede strong {

  color: var(--gold-light);

}

/*==========================================================
                    BUTTONS
==========================================================*/

.btn-row {

  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  margin-bottom: 40px;

}

.btn {

  position: relative;

  overflow: hidden;

  padding: 16px 34px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: var(--transition);

}

.btn::before {

  content: "";

  position: absolute;

  left: -120%;

  top: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .45),
      transparent);

  transition: .8s;

}

.btn:hover::before {

  left: 120%;

}

.btn:hover {

  transform: translateY(-6px);

}

.btn-gold {

  background: linear-gradient(135deg,
      var(--gold),
      var(--gold-light));

  color: #111;

  box-shadow: 0 18px 45px rgba(212, 175, 55, .25);

}

.btn-outline {

  border: 1px solid rgba(255, 255, 255, .15);

  color: #fff;

  background: rgba(255, 255, 255, .05);

  backdrop-filter: blur(12px);

}

/*==========================================================
                    CHIPS
==========================================================*/

.chip-row {

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 45px;

}

.chip {

  padding: 10px 18px;

  border-radius: 30px;

  background: rgba(255, 255, 255, .05);

  border: 1px solid rgba(255, 255, 255, .08);

  backdrop-filter: blur(14px);

  color: #fff;

  font-size: 1rem;

  transition: var(--transition);

}

.chip:hover {

  background: var(--gold);

  color: #111;

  transform: translateY(-5px);

}

/*==========================================================
                STATISTICS
==========================================================*/

.hero-stats {

  display: flex;

  flex-wrap: wrap;

  gap: 22px;

}

.stat-card {

  min-width: 170px;

  padding: 22px;

  border-radius: 22px;

  background: rgba(255, 255, 255, .05);

  border: 1px solid rgba(255, 255, 255, .08);

  backdrop-filter: blur(20px);

  transition: var(--transition);

}

.stat-card:hover {

  transform: translateY(-10px);

  border-color: rgba(212, 175, 55, .35);

  box-shadow: 0 25px 60px rgba(0, 0, 0, .3);

}

.stat-card h3 {

  color: var(--gold-light);

  font-size: 30px;

  margin-bottom: 10px;

}

.stat-card p {

  color: #d0d0d0;

  font-size: 1.125rem;

  line-height: 1.6;

}

/*==========================================================
                HERO IMAGE
==========================================================*/

.hero-image {

  position: relative;

}

.image-glow {

  position: absolute;

  width: 520px;

  height: 520px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .20),
      transparent 70%);

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  filter: blur(50px);

  animation: glowFloat 8s ease infinite;

}

@keyframes glowFloat {

  0%,
  100% {

    transform: translate(-50%, -50%) scale(1);

  }

  50% {

    transform: translate(-50%, -50%) scale(1.08);

  }

}

.frame-photo {

  position: relative;

  border-radius: 32px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, .10);

  background: #111;

  box-shadow: var(--shadow);

  aspect-ratio: 4/5;

}

.frame-photo img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: 1s;

}

.frame-photo:hover img {

  transform: scale(1.08);

}

/*==========================================================
            PREMIUM IMAGE CORNERS
==========================================================*/

.corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid var(--gold-light);
  z-index: 3;
  transition: .4s;
}

.corner.tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.corner.tr {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.corner.bl {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.corner.br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.frame-photo:hover .corner {
  width: 55px;
  height: 55px;
}

/*==========================================================
            GOLDEN ROTATING BORDER
==========================================================*/

.frame-photo::before {

  content: "";

  position: absolute;

  inset: -2px;

  border-radius: 34px;

  background: conic-gradient(from 0deg,
      transparent,
      rgba(212, 175, 55, .8),
      transparent,
      rgba(255, 255, 255, .25),
      transparent);

  animation: rotateBorder 8s linear infinite;

  z-index: -2;

}

.frame-photo::after {

  content: "";

  position: absolute;

  inset: 2px;

  background: #091722;

  border-radius: 30px;

  z-index: -1;

}

@keyframes rotateBorder {

  100% {
    transform: rotate(360deg);
  }

}

/*==========================================================
                SCAN LINE
==========================================================*/

.scan-line {

  position: absolute;

  left: 0;

  right: 0;

  height: 3px;

  background: linear-gradient(90deg,
      transparent,
      var(--gold-light),
      transparent);

  box-shadow: 0 0 25px rgba(212, 175, 55, .8);

  animation: scanner 3.5s ease-in-out infinite;

  opacity: .9;

}

@keyframes scanner {

  0% {

    top: 3%;

  }

  50% {

    top: 95%;

  }

  100% {

    top: 3%;

  }

}

/*==========================================================
            FLOATING GLASS CARDS
==========================================================*/

.floating-card {

  position: absolute;

  display: flex;

  align-items: center;

  gap: 16px;

  padding: 18px 22px;

  background: rgba(255, 255, 255, .08);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, .12);

  border-radius: 18px;

  color: #fff;

  box-shadow: 0 18px 45px rgba(0, 0, 0, .25);

  animation: cardFloat 5s ease-in-out infinite;

  z-index: 5;

}

.floating-card .icon {

  width: 55px;

  height: 55px;

  border-radius: 50%;

  background: linear-gradient(135deg,
      var(--gold),
      var(--gold-light));

  color: #111;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 22px;

  flex-shrink: 0;

}

.floating-card h5 {

  font-size: 16px;

  margin-bottom: 4px;

  color: black;

}

.floating-card p {

  font-size: 13px;

  color: var(--gold-dark);

  line-height: 1.5;

}

.card1 {

  left: -45px;

  top: 15%;

}

.card2 {

  right: -45px;

  bottom: 18%;

  animation-delay: 2s;

}

@keyframes cardFloat {

  0%,
  100% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(-12px);

  }

}

/*==========================================================
                HERO BADGE
==========================================================*/

.hero-badge {

  position: absolute;

  left: -30px;

  bottom: -30px;

  display: flex;

  align-items: center;

  gap: 18px;

  background: #fff;

  color: #111;

  padding: 18px 22px;

  border-radius: 20px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, .28);

  animation: badgeFloat 5s ease-in-out infinite;

  z-index: 10;

}

.badge-number {

  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: linear-gradient(135deg,
      var(--gold),
      var(--gold-light));

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 22px;

  font-weight: 700;

  color: #111;

}

.hero-badge h4 {

  margin-bottom: 5px;

  font-size: 16px;
  color: black;
  font-weight: 800;
}

.hero-badge p {

  font-size: 13px;

  color: var(--gold-dark);

  line-height: 1.5;

}

@keyframes badgeFloat {

  0%,
  100% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(-10px);

  }

}

/*==========================================================
                ENTRANCE ANIMATION
==========================================================*/

.hero-copy>* {

  opacity: 0;

  transform: translateY(40px);

  animation: fadeUp .9s forwards;

}

.hero-copy>*:nth-child(1) {
  animation-delay: .2s;
}

.hero-copy>*:nth-child(2) {
  animation-delay: .4s;
}

.hero-copy>*:nth-child(3) {
  animation-delay: .6s;
}

.hero-copy>*:nth-child(4) {
  animation-delay: .8s;
}

.hero-copy>*:nth-child(5) {
  animation-delay: 1s;
}

.hero-copy>*:nth-child(6) {
  animation-delay: 1.2s;
}

.hero-copy>*:nth-child(7) {
  animation-delay: 1.4s;
}

.hero-image {

  opacity: 0;

  transform: translateX(70px) scale(.92);

  animation: imageReveal 1.3s ease forwards .5s;

}

@keyframes fadeUp {

  to {

    opacity: 1;

    transform: none;

  }

}

@keyframes imageReveal {

  to {

    opacity: 1;

    transform: none;

  }

}

/*==========================================================
                HOVER EFFECTS
==========================================================*/

.frame-photo:hover {

  transform: translateY(-8px);

  transition: .5s;

}

.floating-card:hover {

  transform: translateY(-8px) scale(1.03);

}

.hero-badge:hover {

  transform: translateY(-8px);

}

.btn:hover {

  box-shadow: 0 20px 45px rgba(212, 175, 55, .28);

}

.stat-card:hover {

  background: rgba(255, 255, 255, .08);

}

.chip:hover {

  box-shadow: 0 15px 35px rgba(212, 175, 55, .25);

}

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

@media(max-width:992px) {

  .hero {

    padding: 150px 0 80px;

  }

  .hero-grid {

    grid-template-columns: 1fr;

    gap: 60px;

  }

  .hero-copy {

    text-align: center;

  }

  .smile-arc {

    margin: 20px auto;

  }

  .btn-row,
  .chip-row,
  .hero-stats {

    justify-content: center;

  }

  .card1 {

    left: 10px;

    top: 15px;

  }

  .card2 {

    right: 10px;

    bottom: 15px;

  }

  .hero-badge {

    left: 50%;

    transform: translateX(-50%);

    bottom: -20px;

  }

}

@media(max-width:768px) {

  .hero {

    padding: 130px 0 70px;

  }

  .hero-copy h1 {

    font-size: 42px;

  }

  .lede {

    font-size: 16px;

  }

  .hero-stats {

    flex-direction: column;

  }

  .stat-card {

    width: 100%;

  }

  .btn {

    width: 100%;

    text-align: center;

  }

  .btn-row {

    flex-direction: column;

  }

  .chip-row {

    justify-content: center;

  }

  .floating-card {

    position: relative;

    left: auto;

    right: auto;

    top: auto;

    bottom: auto;

    margin-top: 20px;

    width: 100%;

  }

  .hero-badge {

    position: relative;

    left: auto;

    bottom: auto;

    transform: none;

    margin-top: 25px;

    width: 100%;

  }

}

@media(max-width:480px) {

  .hero-copy h1 {

    font-size: 34px;

  }

  .eyebrow {

    font-size: 12px;

    letter-spacing: 2px;

  }

  .frame-photo {

    border-radius: 22px;

  }

  .corner {

    display: none;

  }

  .image-glow {

    width: 300px;

    height: 300px;

  }

}

/* marquee credential strip */
/*==================================================
        PREMIUM TRUST STRIP
==================================================*/

.trust-strip {

  position: relative;

  overflow: hidden;

  padding: 20px 0;

  background: linear-gradient(135deg,
      #08131d,
      #102538,
      #08131d);

  border-top: 1px solid rgba(255, 255, 255, .06);

  border-bottom: 1px solid rgba(255, 255, 255, .06);

}

/* Animated Top Border */

.trust-strip::before {

  content: "";

  position: absolute;

  left: -100%;

  top: 0;

  width: 200%;

  height: 2px;

  background: linear-gradient(90deg,
      transparent,
      #d4af37,
      #fff3b0,
      #d4af37,
      transparent);

  animation: borderMove 5s linear infinite;

}

@keyframes borderMove {

  100% {

    left: 0;

  }

}

/* Fade */

.fade-left,
.fade-right {

  position: absolute;

  top: 0;

  width: 120px;

  height: 100%;

  z-index: 2;

  pointer-events: none;

}

.fade-left {

  left: 0;

  background: linear-gradient(90deg,
      #08131d,
      transparent);

}

.fade-right {

  right: 0;

  background: linear-gradient(-90deg,
      #08131d,
      transparent);

}

/* Track */

.trust-track {

  display: flex;

  width: max-content;

  gap: 30px;

  animation: trustScroll 28s linear infinite;

}

.trust-strip:hover .trust-track {

  animation-play-state: paused;

}

@keyframes trustScroll {

  0% {

    transform: translateX(0);

  }

  100% {

    transform: translateX(-50%);

  }

}

/* Cards */

.trust-item {

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 15px 24px;

  border-radius: 50px;

  background: rgba(255, 255, 255, .05);

  border: 1px solid rgba(255, 255, 255, .08);

  backdrop-filter: blur(18px);

  color: #fff;

  transition: .35s;

  white-space: nowrap;

}

/* Icon */

.trust-item i {

  width: 42px;

  height: 42px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg,
      #d4af37,
      #f6d77c);

  color: #111;

  font-size: 18px;

  flex-shrink: 0;

}

/* Text */

.trust-item span {

  font-size: 15px;

  font-weight: 500;

  letter-spacing: .3px;

}

/* Hover */

.trust-item:hover {

  transform: translateY(-6px);

  background: rgba(255, 255, 255, .08);

  box-shadow: 0 20px 40px rgba(212, 175, 55, .18);

}

/* Responsive */

@media(max-width:768px) {

  .trust-strip {

    padding: 15px 0;

  }

  .trust-item {

    padding: 12px 18px;

  }

  .trust-item i {

    width: 36px;

    height: 36px;

    font-size: 15px;

  }

  .trust-item span {

    font-size: 13px;

  }

  .fade-left,
  .fade-right {

    width: 50px;

  }

}

/* ===================================================================
   SECTIONS — generic
   =================================================================== */
section {
  padding: 110px 0;
  position: relative;
}

@media(max-width:640px) {
  section {
    padding: 76px 0;
  }
}

.section-dark {
  background: var(--ink);
}

.section-head {
  max-width: 640px;
  margin-bottom: 60px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- concern / pillars cards ---------- */
/*==================================================
        MODERN TREATMENT SECTION
==================================================*/

.pillars {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 35px;

  margin-top: 70px;

}

.pillar-card {

  position: relative;

  padding: 40px 35px;

  border-radius: 28px;

  background: rgba(255, 255, 255, .85);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(212, 175, 55, .12);

  overflow: hidden;

  transition: .45s cubic-bezier(.4, 0, .2, 1);

  box-shadow: 0 20px 45px rgba(0, 0, 0, .06);

}

/* Top Gradient */

.pillar-card::before {

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(90deg,
      #d4af37,
      #f6d77c);

}

/* Glow */

.pillar-card::after {

  content: "";

  position: absolute;

  width: 250px;

  height: 250px;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .18),
      transparent 70%);

  top: -140px;

  right: -120px;

  opacity: 0;

  transition: .5s;

}

.pillar-card:hover::after {

  opacity: 1;

}

.pillar-card:hover {

  transform: translateY(-12px);

  border-color: #d4af37;

  box-shadow: 0 35px 70px rgba(0, 0, 0, .12);

}

/* Number */

.pillar-number {

  position: absolute;

  top: 25px;

  right: 25px;

  font-size: 42px;

  font-weight: 700;

  color: rgba(212, 175, 55, .12);

  line-height: 1;

}

/* Icon */

.pillar-icon-wrap {

  width: 80px;

  height: 80px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg,
      #d4af37,
      #f6d77c);

  margin-bottom: 28px;

  box-shadow: 0 15px 35px rgba(212, 175, 55, .3);

  transition: .45s;

}

.pillar-card:hover .pillar-icon-wrap {

  transform: rotate(-10deg) scale(1.08);

}

.pillar-icon-wrap i {

  font-size: 34px;

  color: #111;

}

/* Heading */

.pillar-card h3 {

  font-size: 28px;

  margin-bottom: 18px;

  color: #0f1720;

}

/* Text */

.pillar-card p {

  font-size: 18px;

  line-height: 1.8;

  color: #666;

  margin-bottom: 28px;

}

/* Button */

.pillar-btn {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 14px 24px;

  border-radius: 50px;

  background: #111827;

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  transition: .4s;

}

.pillar-btn:hover {

  background: #d4af37;

  color: #111;

  transform: translateX(8px);

}

.pillar-btn i {

  transition: .35s;

}

.pillar-btn:hover i {

  transform: translateX(5px);

}

/* Responsive */

@media(max-width:768px) {

  .pillars {

    grid-template-columns: 1fr;

  }

  .pillar-card {

    padding: 30px;

  }

  .pillar-number {

    font-size: 32px;

  }

  .pillar-icon-wrap {

    width: 65px;

    height: 65px;

  }

  .pillar-icon-wrap i {

    font-size: 28px;

  }

  .pillar-card h3 {

    font-size: 24px;

  }

}

/* ---------- two column with image ---------- */
/*==================================================
        DOCTOR SECTION
==================================================*/

.doctor-section {

  padding: 120px 0;

  background: linear-gradient(135deg,
      #07131d,
      #0d2234);

  position: relative;

  overflow: hidden;

}

.doctor-section::before {

  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .18),
      transparent 70%);

  right: -180px;

  top: -150px;

}

/* Layout */

.doctor-grid {

  display: grid;

  grid-template-columns: .9fr 1.1fr;

  gap: 80px;

  align-items: center;

}

/* Image */

.doctor-image {

  position: relative;

}

.doctor-photo {

  overflow: hidden;

  border-radius: 30px;

  box-shadow: 0 35px 70px rgba(0, 0, 0, .35);

}

.doctor-photo img {

  width: 100%;

  display: block;

  transition: 1s;

}

.doctor-photo:hover img {

  transform: scale(1.08);

}

.doctor-glow {

  position: absolute;

  width: 450px;

  height: 450px;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .25),
      transparent);

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  filter: blur(40px);

}

/* Floating Card */

.floating-info {

  position: absolute;

  left: -20px;

  bottom: 35px;

  display: flex;

  align-items: center;

  gap: 16px;

  padding: 18px 22px;

  background: rgba(255, 255, 255, .08);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, .08);

  border-radius: 18px;

  color: #fff;

}

.floating-info i {

  width: 55px;

  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg,
      #d4af37,
      #f6d77c);

  color: #111;

  font-size: 22px;

}

/* Tag */

.doctor-tag {

  display: inline-block;

  padding: 10px 18px;

  background: #d4af37;

  color: #111;

  border-radius: 30px;

  font-weight: 600;

  margin-bottom: 25px;

}

.doctor-content h2 {

  font-size: 54px;

  line-height: 1.1;

  color: #fff;

  margin-bottom: 24px;

}

.doctor-content h2 span {

  color: #f6d77c;

}

.doctor-desc {

  font-size: 19px;

  line-height: 1.9;

  color: #d5d5d5;

  margin-bottom: 35px;

}

/* Features */

.doctor-features {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-bottom: 35px;

}

.feature {

  display: flex;

  align-items: center;

  gap: 12px;

  color: #fff;

  padding: 16px 18px;

  background: rgba(255, 255, 255, .05);

  border-radius: 18px;

  border: 1px solid rgba(255, 255, 255, .06);

}

.feature i {

  color: #d4af37;

}

/* Profile */

.doctor-profile {

  display: flex;

  gap: 20px;

  align-items: flex-start;

  padding: 25px;

  margin-top: 15px;

  background: rgba(255, 255, 255, .06);

  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, .08);

  backdrop-filter: blur(18px);

}

.avatar {

  width: 75px;

  height: 75px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 24px;

  font-weight: 700;

  background: linear-gradient(135deg,
      #d4af37,
      #f6d77c);

  color: #111;

}

.doctor-profile h3 {

  color: #fff;

  margin-bottom: 6px;

}

.doctor-profile span {

  display: block;

  color: #f6d77c;

  margin-bottom: 12px;

}

.doctor-profile p {

  color: #d7d7d7;

  line-height: 1.7;

}

/* Stats */

.doctor-stats {

  display: flex;

  gap: 30px;

  margin-top: 35px;

  flex-wrap: wrap;

}

.doctor-stats div {

  padding: 20px;

  min-width: 160px;

  border-radius: 18px;

  background: rgba(255, 255, 255, .05);

  text-align: center;

}

.doctor-stats h3 {

  font-size: 32px;

  color: #f6d77c;

  margin-bottom: 8px;

}

.doctor-stats span {

  color: #ddd;

  font-size: 14px;

}

/* Responsive */

@media(max-width:992px) {

  .doctor-grid {

    grid-template-columns: 1fr;

  }

  .doctor-content {

    order: 2;

  }

  .doctor-image {

    order: 1;

  }

}

@media(max-width:768px) {

  .doctor-content h2 {

    font-size: 38px;

  }

  .doctor-features {

    grid-template-columns: 1fr;

  }

  .doctor-stats {

    flex-direction: column;

  }

  .floating-info {

    position: relative;

    left: 0;

    bottom: 0;

    margin-top: 20px;

  }

}

/* ---------- services list ---------- */
/*==================================================
            PREMIUM SERVICES SECTION
==================================================*/

.services-section {

  padding: 120px 0;

  background: linear-gradient(135deg,
      #f8fbff,
      #ffffff);

  position: relative;

  overflow: hidden;

}

/* Decorative Glow */

.services-section::before {

  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .12),
      transparent 70%);

  left: -150px;

  top: -120px;

}

/* Heading */

.section-head.center {

  text-align: center;

  max-width: 760px;

  margin: auto auto 70px;

}

.section-tag {

  display: inline-block;

  padding: 10px 20px;

  border-radius: 40px;

  background: #111827;

  color: #fff;

  font-size: 14px;

  margin-bottom: 20px;

}

.section-head h2 {

  font-size: 52px;

  margin-bottom: 18px;

}

.section-head h2 span {

  color: #d4af37;

}

.section-head p {

  font-size: 20px;

  color: #666;

  line-height: 1.8;

}

/* Grid */

.services-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 35px;

}

/* Card */

.service-card {

  position: relative;

  padding: 40px 35px;

  border-radius: 28px;

  background: #fff;

  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, .12);

  transition: .45s;

  box-shadow: 0 20px 45px rgba(0, 0, 0, .05);

}

/* Top Border */

.service-card::before {

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(90deg,
      #d4af37,
      #f6d77c);

}

/* Glow */

.service-card::after {

  content: "";

  position: absolute;

  width: 240px;

  height: 240px;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .16),
      transparent);

  right: -120px;

  top: -120px;

  opacity: 0;

  transition: .4s;

}

.service-card:hover::after {

  opacity: 1;

}

.service-card:hover {

  transform: translateY(-12px);

  box-shadow: 0 35px 70px rgba(0, 0, 0, .12);

}

/* Icon */

.service-icon {

  width: 80px;

  height: 80px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg,
      #d4af37,
      #f6d77c);

  margin-bottom: 30px;

  box-shadow: 0 20px 40px rgba(212, 175, 55, .25);

}

.service-icon i {

  font-size: 34px;

  color: #111;

}

/* Number */

.service-no {

  position: absolute;

  top: 25px;

  right: 30px;

  font-size: 46px;

  font-weight: 700;

  color: rgba(212, 175, 55, .12);

}

/* Text */

.service-card h3 {

  font-size: 28px;

  margin-bottom: 16px;

}

.service-card p {

  line-height: 1.8;

  font-size: 18px;

  color: #666;

  margin-bottom: 30px;

}

/* Button */

.service-btn {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 14px 24px;

  border-radius: 50px;

  background: #111827;

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  transition: .35s;

}

.service-btn:hover {

  background: #d4af37;

  color: #111;

  transform: translateX(8px);

}

.service-btn i {

  transition: .3s;

}

.service-btn:hover i {

  transform: translateX(6px);

}

/* Bottom Buttons */

.services-bottom {

  margin-top: 60px;

  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;

}

.outline-btn {

  padding: 15px 34px;

  border-radius: 50px;

  border: 2px solid #d4af37;

  text-decoration: none;

  font-weight: 600;

  color: #111;

  transition: .35s;

}

.outline-btn:hover {

  background: #d4af37;

  color: #111;

}

.primary-btn {

  padding: 15px 34px;

  border-radius: 50px;

  background: #111827;

  text-decoration: none;

  color: #fff;

  font-weight: 600;

  transition: .35s;

}

.primary-btn:hover {

  background: #d4af37;

  color: #111;

}

/* Responsive */

@media(max-width:768px) {

  .section-head h2 {

    font-size: 38px;

  }

  .services-grid {

    grid-template-columns: 1fr;

  }

  .service-card {

    padding: 30px;

  }

  .service-icon {

    width: 68px;

    height: 68px;

  }

  .service-icon i {

    font-size: 28px;

  }

  .service-card h3 {

    font-size: 24px;

  }

  .services-bottom {

    flex-direction: column;

    align-items: center;

  }

  .outline-btn,

  .primary-btn {

    width: 100%;

    max-width: 320px;

    text-align: center;

  }

}

/* ---------- gallery ---------- */
/*==========================
        GALLERY
===========================*/

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  transition: all .35s ease;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

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

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

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, .78), transparent);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  transition: .3s;
}

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

@media(max-width:768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---------- spotlight / signs checklist (mirrors dentiq's specialty-centre section) ---------- */
/*==================================================
        FACIAL SCANNER SECTION
==================================================*/

.scanner-section {

  padding: 120px 0;

  background: linear-gradient(135deg,
      #f8fbff,
      #ffffff);

  position: relative;

  overflow: hidden;

}

.scanner-section::before {

  content: "";

  position: absolute;

  width: 450px;

  height: 450px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .15),
      transparent 70%);

  top: -120px;

  right: -120px;

}

/* Layout */

.scanner-grid {

  display: grid;

  grid-template-columns: 1.1fr .9fr;

  gap: 70px;

  align-items: center;

}

.scanner-tag {

  display: inline-block;

  padding: 10px 18px;

  border-radius: 30px;

  background: #111827;

  color: #fff;

  font-size: 14px;

  margin-bottom: 22px;

}

.scanner-content h2 {

  font-size: 52px;

  line-height: 1.1;

  margin-bottom: 25px;

}

.scanner-content h2 span {

  color: #d4af37;

}

.scanner-desc {

  font-size: 19px;

  line-height: 1.9;

  color: #666;

  margin-bottom: 35px;

}

/* Features */

.scanner-feature {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-bottom: 40px;

}

.feature-box {

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 18px;

  background: #fff;

  border-radius: 18px;

  border: 1px solid rgba(212, 175, 55, .12);

  transition: .35s;

}

.feature-box:hover {

  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.feature-box i {

  width: 55px;

  height: 55px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg,
      #d4af37,
      #f6d77c);

  color: #111;

  font-size: 22px;

}

/* Button */

.scanner-btn {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 16px 28px;

  border-radius: 50px;

  background: #111827;

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  transition: .35s;

}

.scanner-btn:hover {

  background: #d4af37;

  color: #111;

  transform: translateY(-4px);

}

/* Right Card */

.scanner-card {

  position: relative;

  padding: 40px;

  border-radius: 28px;

  background: #fff;

  box-shadow: 0 25px 60px rgba(0, 0, 0, .08);

  overflow: hidden;

}

.scanner-glow {

  position: absolute;

  width: 220px;

  height: 220px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .18),
      transparent);

  top: -90px;

  right: -90px;

}

.scanner-card h3 {

  font-size: 30px;

  margin-bottom: 30px;

}

.scanner-list {

  display: grid;

  gap: 16px;

}

.scanner-item {

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 16px 18px;

  border-radius: 18px;

  background: #fafafa;

  transition: .35s;

}

.scanner-item:hover {

  background: #fff7e4;

  transform: translateX(6px);

}

.scanner-item i {

  color: #d4af37;

  font-size: 20px;

}

/* Bottom Card */

.consult-box {

  display: flex;

  gap: 16px;

  margin-top: 35px;

  padding: 22px;

  border-radius: 18px;

  background: #111827;

  color: #fff;

}

.consult-box i {

  font-size: 34px;

  color: #f6d77c;

}

.consult-box strong {

  display: block;

  margin-bottom: 8px;

}

.consult-box p {

  font-size: 17px;

  line-height: 1.7;

  color: #ddd;

}

/* Responsive */

@media(max-width:992px) {

  .scanner-grid {

    grid-template-columns: 1fr;

  }

}

@media(max-width:768px) {

  .scanner-content h2 {

    font-size: 38px;

  }

  .scanner-feature {

    grid-template-columns: 1fr;

  }

  .scanner-card {

    padding: 30px;

  }

}

/* ---------- why-choose numbered ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

@media(max-width:900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-item .num {
  font-family: var(--display);
  font-size: 2.5rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  margin-bottom: 14px;
  display: block;
}

/* ---------- quote / statement band ---------- */
/*==================================================
        PREMIUM QUOTE SECTION
==================================================*/

.quote-section {

  position: relative;

  padding: 130px 0;

  background: linear-gradient(135deg,
      #08131d,
      #10283b,
      #08131d);

  overflow: hidden;

}

/* Background Glow */

.quote-section::before {

  content: "";

  position: absolute;

  width: 550px;

  height: 550px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .18),
      transparent 70%);

  top: -180px;

  right: -180px;

}

.quote-section::after {

  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(255, 255, 255, .05),
      transparent 70%);

  bottom: -160px;

  left: -120px;

}

/* Card */

.quote-box {

  position: relative;

  max-width: 900px;

  margin: auto;

  padding: 70px 60px;

  border-radius: 30px;

  background: rgba(255, 255, 255, .06);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, .08);

  text-align: center;

  overflow: hidden;

  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);

}

/* Shine */

.quote-box::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(120deg,
      transparent 25%,
      rgba(255, 255, 255, .08) 50%,
      transparent 75%);

  transform: translateX(-120%);

}

.quote-box:hover::before {

  animation: shine 1.2s ease;

}

@keyframes shine {

  to {

    transform: translateX(120%);

  }

}

/* Tag */

.quote-tag {

  display: inline-block;

  padding: 10px 22px;

  border-radius: 40px;

  background: linear-gradient(135deg,
      #d4af37,
      #f6d77c);

  color: #111;

  font-size: 18px;

  font-weight: 600;

  margin-bottom: 30px;

}

/* Quote Icon */

.quote-icon {

  display: flex;

  justify-content: center;

  align-items: center;

  width: 90px;

  height: 90px;

  margin: 0 auto 35px;

  border-radius: 50%;

  background: rgba(212, 175, 55, .12);

  border: 1px solid rgba(212, 175, 55, .25);

}

.quote-icon i {

  font-size: 34px;

  color: #f6d77c;

}

/* Quote */

.quote-box blockquote {

  margin: 0;

  font-size: clamp(32px, 4vw, 54px);

  line-height: 1.35;

  font-weight: 600;

  color: #fff;

  font-family: var(--display);

  letter-spacing: .3px;

}

/* Divider */

.quote-divider {

  width: 120px;

  height: 3px;

  margin: 40px auto;

  border-radius: 50px;

  background: linear-gradient(90deg,
      transparent,
      #d4af37,
      transparent);

}

/* Author */

.quote-author h4 {

  margin-bottom: 8px;

  font-size: 22px;

  color: #f6d77c;

}

.quote-author span {

  color: #c8c8c8;

  letter-spacing: 1px;

  font-size: 18px;

}

/* Floating Animation */

.quote-box {

  animation: floatQuote 5s ease-in-out infinite;

}

@keyframes floatQuote {

  0%,
  100% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(-8px);

  }

}

/* Responsive */

@media(max-width:768px) {

  .quote-section {

    padding: 90px 0;

  }

  .quote-box {

    padding: 45px 25px;

    border-radius: 24px;

  }

  .quote-icon {

    width: 70px;

    height: 70px;

    margin-bottom: 25px;

  }

  .quote-icon i {

    font-size: 26px;

  }

  .quote-author h4 {

    font-size: 20px;

  }

  .quote-divider {

    margin: 30px auto;

  }

}

/* ---------- info / visit cards ---------- */
/*==================================================
            VISIT SECTION
==================================================*/

.visit-section {

  padding: 120px 0;

  background: linear-gradient(135deg,
      #f7fbff,
      #ffffff);

  position: relative;

  overflow: hidden;

}

.visit-section::before {

  content: "";

  position: absolute;

  width: 450px;

  height: 450px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .15),
      transparent 70%);

  top: -120px;

  left: -120px;

}

/* Heading */

.visit-tag {

  display: inline-block;

  padding: 10px 22px;

  background: #111827;

  color: #fff;

  border-radius: 40px;

  font-size: 14px;

  margin-bottom: 18px;

}

.section-head.center {

  text-align: center;

  max-width: 720px;

  margin: auto auto 70px;

}

.section-head.center h2 {

  font-size: 52px;

  margin-bottom: 20px;

}

.section-head.center h2 span {

  color: #d4af37;

}

.section-head.center p {

  font-size: 19px;

  line-height: 1.8;

  color: #666;

}

/* Grid */

.visit-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;

  margin-bottom: 60px;

}

/* Card */

.visit-card {

  position: relative;

  padding: 40px 35px;

  background: #fff;

  border-radius: 28px;

  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, .12);

  transition: .45s;

  box-shadow: 0 18px 45px rgba(0, 0, 0, .05);

}

.visit-card::before {

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(90deg,
      #d4af37,
      #f6d77c);

}

.visit-card:hover {

  transform: translateY(-12px);

  box-shadow: 0 35px 70px rgba(0, 0, 0, .12);

}

/* Icon */

.visit-icon {

  width: 80px;

  height: 80px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg,
      #d4af37,
      #f6d77c);

  margin-bottom: 28px;

}

.visit-icon i {

  font-size: 32px;

  color: #111;

}

/* Text */

.visit-card h3 {

  font-size: 28px;

  margin-bottom: 15px;

}

.visit-card p {

  font-size: 18px;

  line-height: 1.8;

  color: #666;

  margin-bottom: 15px;

}

.visit-card a {

  color: #111;

  text-decoration: none;

  font-weight: 600;

}

/* Button */

.visit-link {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 10px;

  color: #d4af37 !important;

  transition: .35s;

}

.visit-link:hover {

  gap: 16px;

}

/* Google Map */

.clinic-map {

  height: 450px;

  overflow: hidden;

  border-radius: 30px;

  box-shadow: 0 25px 70px rgba(0, 0, 0, .12);

  border: 1px solid rgba(212, 175, 55, .12);

}

.clinic-map iframe {

  width: 100%;

  height: 100%;

  border: 0;

  filter: grayscale(.15);

  transition: .5s;

}

.clinic-map:hover iframe {

  filter: none;

}

/* Responsive */

@media(max-width:768px) {

  .visit-section {

    padding: 90px 0;

  }

  .section-head.center h2 {

    font-size: 38px;

  }

  .visit-grid {

    grid-template-columns: 1fr;

  }

  .visit-card {

    padding: 30px;

  }

  .visit-icon {

    width: 65px;

    height: 65px;

  }

  .visit-icon i {

    font-size: 26px;

  }

  .clinic-map {

    height: 320px;

  }

}

/* ---------- footer ---------- */
/*==================================================
                PREMIUM FOOTER
==================================================*/

.footer {

  position: relative;

  background: #08131d;

  padding: 100px 0 30px;

  overflow: hidden;

}

.footer::before {

  content: "";

  position: absolute;

  width: 450px;

  height: 450px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .15),
      transparent 70%);

  top: -180px;

  right: -120px;

}

.footer-top {

  display: grid;

  grid-template-columns: 4fr 4fr 4fr 4fr;

  gap: 50px;

  padding-bottom: 60px;

  border-bottom: 1px solid rgba(255, 255, 255, .08);

  position: relative;

  z-index: 2;

}

.footer-logo {

  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 25px;

  text-decoration: none;

}

.footer-logo img {

  width: 65px;

}

.footer-logo h3 {

  color: #fff;

  font-size: 28px;

  margin: 0;

}

.footer-logo span {

  color: #d4af37;

  font-size: 15px;

}

.footer-about p {

  color: #c6c6c6;

  line-height: 1.9;

  margin-bottom: 30px;

}

.footer-social {

  display: flex;

  gap: 15px;

}

.footer-social a {

  width: 48px;

  height: 48px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  background: rgba(255, 255, 255, .05);

  color: #d4af37;

  transition: .4s;

  text-decoration: none;

}

.footer-social a:hover {

  background: #d4af37;

  color: #111;

  transform: translateY(-6px);

}

.footer-column h4,

.footer-news h4 {

  color: #fff;

  margin-bottom: 25px;

  font-size: 22px;

}

.footer-column a {

  display: block;

  color: #cfcfcf;

  text-decoration: none;

  margin-bottom: 14px;

  transition: .35s;

}

.footer-column a:hover {

  color: #d4af37;

  padding-left: 8px;

}

.footer-column p {

  color: #cfcfcf;

  line-height: 1.9;
  display: flex;
  align-items: baseline;

}

.footer-news p {

  color: #cfcfcf;

  line-height: 1.8;

  margin-bottom: 20px;

}

.footer-news form {

  display: flex;

  margin-top: 20px;

}

.footer-news input {

  flex: 1;

  padding: 14px;

  background: #102231;

  border: none;

  color: #fff;

  border-radius: 10px 0 0 10px;

  outline: none;

}

.footer-news button {

  padding: 14px 22px;

  background: linear-gradient(135deg, #d4af37, #f6d77c);

  border: none;

  cursor: pointer;

  font-weight: 600;

  border-radius: 0 10px 10px 0;

}

.footer-bottom {

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding-top: 30px;

  flex-wrap: wrap;

  gap: 20px;

  position: relative;

  z-index: 2;

}

.footer-bottom p {

  color: #aaa;

}

.footer-bottom div {

  display: flex;

  gap: 25px;

}

.footer-bottom a {

  color: #aaa;

  text-decoration: none;

  transition: .3s;

}

.footer-bottom a:hover {

  color: #d4af37;

}

/* Mobile CTA */

.mobile-bar {

  display: none;

  position: fixed;

  bottom: 15px;

  left: 50%;

  transform: translateX(-50%);

  background: #08131d;

  padding: 10px;

  border-radius: 60px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, .3);

  z-index: 9999;

  gap: 10px;

}

.mobile-bar a {

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 12px 18px;

  border-radius: 40px;

  background: #d4af37;

  color: #111;

  font-weight: 600;

  text-decoration: none;

  transition: .35s;

}

.mobile-bar a:hover {

  transform: translateY(-3px);

}

@media(max-width:1100px) {

  .footer-top {

    grid-template-columns: 1fr 1fr;

  }

}

@media(max-width:768px) {

  .footer {

    padding: 70px 0 90px;

  }

  .footer-top {

    grid-template-columns: 1fr;

    gap: 40px;

  }

  .footer-bottom {

    flex-direction: column;

    text-align: center;

  }

  .mobile-bar {

    display: flex;

  }

  body {

    padding-bottom: 90px;

  }

}

.footer-column h4 i,
.footer-news h4 i {
  color: #D4AF37;
  margin-right: 10px;
}

.footer-column a i {
  width: 18px;
  color: #D4AF37;
  margin-right: 8px;
  transition: .3s;
}

.footer-column a:hover i {
  transform: translateX(5px);
}

.footer-column p i {
  width: 22px;
  color: #D4AF37;
  margin-right: 10px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1b1b1b;
  color: #fff;
  margin-right: 10px;
  transition: .35s;
}

.footer-social a:hover {
  background: #D4AF37;
  transform: translateY(-5px);
}

.footer-news button i {
  margin-right: 8px;
}

.footer-policy a i {
  margin-right: 6px;
  color: #D4AF37;
}

/* page header (inner pages) */
/*==================================================
            PREMIUM PAGE HERO
==================================================*/

.page-hero {

  position: relative;

  padding: 180px 0 120px;

  background: linear-gradient(135deg,
      #08131d,
      #10283b,
      #08131d);

  overflow: hidden;

}

/* Background */

.hero-bg-circle {

  position: absolute;

  border-radius: 50%;

  filter: blur(20px);

  animation: floatHero 8s ease-in-out infinite;

}

.hero-bg-circle.one {

  width: 420px;

  height: 420px;

  background: rgba(212, 175, 55, .15);

  top: -100px;

  right: -80px;

}

.hero-bg-circle.two {

  width: 320px;

  height: 320px;

  background: rgba(255, 255, 255, .05);

  bottom: -120px;

  left: -80px;

  animation-delay: 2s;

}

@keyframes floatHero {

  0%,
  100% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(25px);

  }

}

/* Content */

.hero-content {

  position: relative;

  /* max-width: 760px; */

  padding: 60px;

  /* background: rgba(255, 255, 255, .05);

  border: 1px solid rgba(255, 255, 255, .08);

  backdrop-filter: blur(15px); */

  border-radius: 30px;

  /* box-shadow: 0 30px 70px rgba(0, 0, 0, .25); */

  z-index: 2;

}

/* Breadcrumb */

.breadcrumb {

  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 25px;

  font-size: 15px;

}

.breadcrumb a {

  color: #d4af37;

  text-decoration: none;

}

.breadcrumb span {

  color: #cfcfcf;

}

/* Badge */

.hero-badge {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 10px 22px;

  border-radius: 40px;

  background: rgba(212, 175, 55, .12);

  color: #f6d77c;

  margin-bottom: 30px;

  font-size: 15px;

}

/* Heading */

.hero-content h1 {

  font-size: clamp(46px, 6vw, 72px);

  line-height: 1.15;

  color: #fff;

  margin-bottom: 25px;

}

.hero-content h1 span {

  color: #d4af37;

}

/* Paragraph */

.hero-content p {

  font-size: 18px;

  line-height: 1.9;

  color: #d2d2d2;

  max-width: 650px;

  margin-bottom: 40px;

}

/* Buttons */

.hero-buttons {

  display: flex;

  gap: 20px;

  flex-wrap: wrap;

}

.btn-primary {

  padding: 16px 34px;

  background: linear-gradient(135deg, #d4af37, #f6d77c);

  color: #111;

  font-weight: 600;

  border-radius: 50px;

  text-decoration: none;

  transition: .4s;

}

.btn-primary:hover {

  transform: translateY(-5px);

  box-shadow: 0 15px 30px rgba(212, 175, 55, .35);

}

.btn-outline {

  padding: 16px 34px;

  border: 2px solid rgba(255, 255, 255, .15);

  border-radius: 50px;

  color: #fff;

  text-decoration: none;

  transition: .4s;

}

.btn-outline:hover {

  background: #fff;

  color: #111;

}

/* Responsive */

@media(max-width:768px) {

  .page-hero {

    padding: 150px 0 90px;

  }

  .hero-content {

    padding: 35px 25px;

    border-radius: 20px;

  }

  .hero-content h1 {

    font-size: 42px;

  }

  .hero-content p {

    font-size: 16px;

  }

  .hero-buttons {

    flex-direction: column;

  }

  .btn-primary,

  .btn-outline {

    text-align: center;

  }

}

/* utility */
.mt-0 {
  margin-top: 0;
}

.text-center {
  text-align: center;
}

.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 20px;
  font-size: 1rem;
  letter-spacing: .05em;
  color: var(--gold-dim);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/*=========================================
        OUR PHILOSOPHY
==========================================*/

.philosophy-section {

  padding: 120px 0;

  background: #fbfdff;

  position: relative;

  overflow: hidden;

}

.philosophy-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;

}

.philosophy-image {

  position: relative;

}

.philosophy-image img {

  width: 100%;

  border-radius: 28px;

  display: block;

  box-shadow: 0 30px 70px rgba(0, 0, 0, .12);

  transition: .5s;

}

.philosophy-image:hover img {

  transform: scale(1.03);

}

.experience-card {

  position: absolute;

  bottom: 35px;

  right: -35px;

  background: #fff;

  padding: 28px;

  border-radius: 22px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);

  border-left: 5px solid #d4af37;

}

.experience-card h2 {

  font-size: 42px;

  margin-bottom: 5px;

  color: #d4af37;

}

.experience-card span {

  font-size: 15px;

  color: #666;

}

.section-tag {

  display: inline-block;

  padding: 10px 22px;

  background: #f6edd5;

  color: #b8863b;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 20px;

}

.philosophy-content h2 {

  font-size: 52px;

  margin-bottom: 20px;

  line-height: 1.2;

}

.philosophy-content h2 span {

  color: #d4af37;

}

.intro {

  font-size: 20px;

  font-weight: 500;

  margin-bottom: 20px;

  color: #333;

  line-height: 1.8;

}

.philosophy-content p {

  line-height: 1.9;

  color: #666;

  margin-bottom: 18px;

}

.feature-list {

  margin: 35px 0;

  display: grid;

  gap: 20px;

}

.feature-item {

  display: flex;

  gap: 20px;

  align-items: flex-start;

  padding: 20px;

  background: #fff;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

  transition: .35s;

}

.feature-item:hover {

  transform: translateX(10px);

}

.icon {

  width: 60px;

  height: 60px;

  border-radius: 18px;

  background: linear-gradient(135deg, #d4af37, #f5d77f);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 24px;

  color: #fff;

  flex-shrink: 0;

}

.feature-item h4 {

  margin-bottom: 6px;

  font-size: 20px;

}

.feature-item p {

  margin: 0;

  font-size: 15px;

}

.philosophy-btn {

  display: inline-block;

  margin-top: 15px;

  padding: 16px 34px;

  background: linear-gradient(135deg, #d4af37, #f6d77c);

  color: #111;

  font-weight: 600;

  border-radius: 50px;

  text-decoration: none;

  transition: .4s;

}

.philosophy-btn:hover {

  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(212, 175, 55, .3);

}

@media(max-width:992px) {

  .philosophy-grid {

    grid-template-columns: 1fr;

    gap: 50px;

  }

  .experience-card {

    right: 20px;

    bottom: 20px;

  }

  .philosophy-content h2 {

    font-size: 40px;

  }

}

@media(max-width:768px) {

  .philosophy-section {

    padding: 80px 0;

  }

  .experience-card {

    position: relative;

    right: 0;

    bottom: 0;

    margin-top: 20px;

    width: fit-content;

  }

  .philosophy-content h2 {

    font-size: 34px;

  }

  .intro {

    font-size: 18px;

  }

}

/*=========================================
        FOUNDER SECTION
==========================================*/

.founder-section {

  padding: 120px 0;

  background: linear-gradient(135deg, #08131d, #13283d);

  position: relative;

  overflow: hidden;

}

.founder-section::before {

  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .15),
      transparent 70%);

  top: -180px;

  right: -100px;

  border-radius: 50%;

}

.founder-wrapper {

  display: grid;

  grid-template-columns: 420px 1fr;

  gap: 80px;

  align-items: center;

  position: relative;

  z-index: 2;

}

.founder-image {

  position: relative;

}

.founder-image img {

  width: 100%;

  display: block;

  border-radius: 28px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);

}

.doctor-badge {

  position: absolute;

  left: 25px;

  bottom: 25px;

  background: #fff;

  padding: 14px 22px;

  border-radius: 50px;

  font-weight: 600;

  display: flex;

  align-items: center;

  gap: 10px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, .2);

}

.doctor-badge i {

  color: #d4af37;

}

.founder-content {

  background: rgba(255, 255, 255, .05);

  padding: 50px;

  border-radius: 30px;

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, .08);

}

.founder-tag {

  display: inline-block;

  padding: 10px 20px;

  background: rgba(212, 175, 55, .15);

  color: #f6d77c;

  border-radius: 40px;

  margin-bottom: 20px;

  font-size: 14px;

  font-weight: 600;

}

.founder-content h2 {

  font-size: 56px;

  color: #fff;

  margin-bottom: 10px;

}

.founder-content h2 span {

  color: #d4af37;

}

.founder-content h4 {

  font-size: 20px;

  color: #f6d77c;

  margin-bottom: 25px;

  font-weight: 500;

}

.founder-content p {

  color: #d6d6d6;

  line-height: 1.9;

  margin-bottom: 18px;

}

.founder-features {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin: 35px 0;

}

.founder-features div {

  display: flex;

  align-items: center;

  gap: 10px;

  color: #fff;

}

.founder-features i {

  color: #d4af37;

}

.founder-stats {

  display: flex;

  gap: 50px;

  margin: 40px 0;

}

.founder-stats h3 {

  font-size: 38px;

  color: #d4af37;

  margin-bottom: 5px;

}

.founder-stats span {

  color: #bbb;

  font-size: 14px;

}

.founder-btn {

  display: inline-block;

  padding: 16px 35px;

  background: linear-gradient(135deg, #d4af37, #f6d77c);

  color: #111;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: .35s;

}

.founder-btn:hover {

  transform: translateY(-4px);

  box-shadow: 0 15px 30px rgba(212, 175, 55, .3);

}

/* Responsive */

@media(max-width:991px) {

  .founder-wrapper {

    grid-template-columns: 1fr;

    gap: 50px;

  }

  .founder-image {

    max-width: 450px;

    margin: auto;

  }

}

@media(max-width:768px) {

  .founder-section {

    padding: 80px 0;

  }

  .founder-content {

    padding: 35px 25px;

  }

  .founder-content h2 {

    font-size: 40px;

  }

  .founder-features {

    grid-template-columns: 1fr;

  }

  .founder-stats {

    justify-content: space-between;

    gap: 20px;

  }

  .founder-stats h3 {

    font-size: 28px;

  }

}

/*=========================================
        SERVICE SHOWCASE
==========================================*/

.service-showcase {

  padding: 120px 0;

  background: #fbfcff;

  position: relative;

  overflow: hidden;

}

.service-showcase::before {

  content: "";

  position: absolute;

  width: 450px;

  height: 450px;

  right: -120px;

  top: -150px;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .12),
      transparent 70%);

  border-radius: 50%;

}

.service-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;

  position: relative;

  z-index: 2;

}

.service-image {

  position: relative;

}

.service-image img {

  width: 100%;

  display: block;

  border-radius: 28px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, .12);

  transition: .5s;

}

.service-image:hover img {

  transform: scale(1.04);

}

.floating-card {

  position: absolute;

  left: 30px;

  bottom: 30px;

  background: #fff;

  padding: 20px 25px;

  border-radius: 18px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

  border-left: 5px solid #D4AF37;

}

.floating-card h4 {

  margin-bottom: 6px;

  font-size: 20px;

}

.floating-card span {

  font-size: 14px;

  color: #777;

}

.service-label {

  display: inline-block;

  padding: 10px 20px;

  border-radius: 50px;

  background: #f7efd8;

  color: #b8863b;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 20px;

}

.service-content h2 {

  font-size: 54px;

  line-height: 1.2;

  margin-bottom: 20px;

}

.service-content h2 span {

  color: #D4AF37;

}

.service-intro {

  font-size: 20px;

  font-weight: 500;

  line-height: 1.8;

  margin-bottom: 18px;

  color: #333;

}

.service-content p {

  line-height: 1.9;

  color: #666;

}

.service-features {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin: 40px 0;

}

.feature-box {

  display: flex;

  gap: 18px;

  padding: 22px;

  background: #fff;

  border-radius: 18px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, .06);

  transition: .35s;

}

.feature-box:hover {

  transform: translateY(-8px);

}

.feature-box i {

  width: 55px;

  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 16px;

  background: linear-gradient(135deg, #D4AF37, #F7D97E);

  color: #fff;

  font-size: 22px;

  flex-shrink: 0;

}

.feature-box h4 {

  margin-bottom: 6px;

  font-size: 18px;

}

.feature-box p {

  margin: 0;

  font-size: 16px;

  color: #666;

}

.service-btn {

  display: inline-block;

  padding: 16px 36px;

  border-radius: 50px;

  background: linear-gradient(135deg, #D4AF37, #F5D77A);

  color: #111;

  font-weight: 600;

  text-decoration: none;

  transition: .35s;

}

.service-btn:hover {

  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(212, 175, 55, .30);

}

@media(max-width:991px) {

  .service-grid {

    grid-template-columns: 1fr;

    gap: 50px;

  }

  .service-content h2 {

    font-size: 42px;

  }

  .service-features {

    grid-template-columns: 1fr;

  }

}

@media(max-width:768px) {

  .service-showcase {

    padding: 80px 0;

  }

  .floating-card {

    position: relative;

    left: 0;

    bottom: 0;

    margin-top: 20px;

    width: fit-content;

  }

  .service-content h2 {

    font-size: 34px;

  }

  .service-intro {

    font-size: 18px;

  }

}

/*=========================================
        IMPLANT SHOWCASE
==========================================*/

.implant-showcase {

  padding: 120px 0;

  background: #08131d;

  position: relative;

  overflow: hidden;

}

.implant-showcase::before {

  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  left: -150px;

  top: -120px;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .15),
      transparent 70%);

  border-radius: 50%;

}

.implant-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;

  position: relative;

  z-index: 2;

}

.implant-content {

  color: #fff;

}

.implant-label {

  display: inline-block;

  padding: 10px 22px;

  background: rgba(212, 175, 55, .15);

  border: 1px solid rgba(212, 175, 55, .3);

  color: #F5D77A;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 22px;

}

.implant-content h2 {

  font-size: 54px;

  line-height: 1.2;

  margin-bottom: 20px;

  color: #fff;

}

.implant-content h2 span {

  color: #D4AF37;

}

.implant-intro {

  font-size: 20px;

  line-height: 1.8;

  font-weight: 500;

  margin-bottom: 18px;

  color: #ececec;

}

.implant-content p {

  line-height: 1.9;

  color: #cfcfcf;

}

.implant-features {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin: 40px 0;

}

.implant-box {

  display: flex;

  gap: 18px;

  padding: 22px;

  background: rgba(255, 255, 255, .05);

  border: 1px solid rgba(255, 255, 255, .08);

  backdrop-filter: blur(10px);

  border-radius: 20px;

  transition: .35s;

}

.implant-box:hover {

  transform: translateY(-8px);

  border-color: #D4AF37;

}

.implant-box i {

  width: 55px;

  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 16px;

  background: linear-gradient(135deg, #D4AF37, #F6D77A);

  color: #111;

  font-size: 22px;

  flex-shrink: 0;

}

.implant-box h4 {

  margin-bottom: 6px;

  font-size: 18px;

  color: #fff;

}

.implant-box p {

  margin: 0;

  font-size: 16px;

  color: #cfcfcf;

}

.implant-btn {

  display: inline-block;

  padding: 16px 36px;

  border-radius: 50px;

  background: linear-gradient(135deg, #D4AF37, #F6D77A);

  color: #111;

  font-weight: 600;

  text-decoration: none;

  transition: .35s;

}

.implant-btn:hover {

  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(212, 175, 55, .35);

}

.implant-image {

  position: relative;

}

.implant-image img {

  width: 100%;

  display: block;

  border-radius: 30px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);

  transition: .5s;

}

.implant-image:hover img {

  transform: scale(1.03);

}

.implant-badge {

  position: absolute;

  bottom: 30px;

  left: 30px;

  background: #fff;

  padding: 24px;

  border-radius: 18px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);

  border-left: 5px solid #D4AF37;

}

.implant-badge h3 {

  font-size: 42px;

  margin-bottom: 5px;

  color: #D4AF37;

}

.implant-badge span {

  font-size: 14px;

  color: #666;

}

@media(max-width:991px) {

  .implant-grid {

    grid-template-columns: 1fr;

    gap: 50px;

  }

  .implant-image {

    order: -1;

  }

  .implant-content h2 {

    font-size: 42px;

  }

  .implant-features {

    grid-template-columns: 1fr;

  }

}

@media(max-width:768px) {

  .implant-showcase {

    padding: 80px 0;

  }

  .implant-content h2 {

    font-size: 34px;

  }

  .implant-intro {

    font-size: 18px;

  }

  .implant-badge {

    position: relative;

    left: 0;

    bottom: 0;

    margin-top: 20px;

    width: fit-content;

  }

}

/*=========================================
        ESTHETIC SHOWCASE
==========================================*/

.esthetics-showcase {

  padding: 120px 0;

  background: linear-gradient(135deg, #fffdf9, #f7f4ee);

  position: relative;

  overflow: hidden;

}

.esthetics-showcase::before {

  content: "";

  position: absolute;

  right: -120px;

  bottom: -120px;

  width: 450px;

  height: 450px;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .12),
      transparent 70%);

  border-radius: 50%;

}

.esthetics-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;

  position: relative;

  z-index: 2;

}

.esthetics-image {

  position: relative;

}

.esthetics-image img {

  width: 100%;

  border-radius: 30px;

  display: block;

  box-shadow: 0 30px 70px rgba(0, 0, 0, .12);

  transition: .5s;

}

.esthetics-image:hover img {

  transform: scale(1.04);

}

.esthetics-badge {

  position: absolute;

  bottom: 30px;

  left: 30px;

  background: #fff;

  padding: 22px 28px;

  border-radius: 18px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);

  border-left: 5px solid #D4AF37;

}

.esthetics-badge h4 {

  margin-bottom: 6px;

  font-size: 20px;

  color: #222;

}

.esthetics-badge span {

  font-size: 14px;

  color: #666;

}

.esthetics-label {

  display: inline-block;

  padding: 10px 22px;

  border-radius: 50px;

  background: #f7efd8;

  color: #b8863b;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 20px;

}

.esthetics-content h2 {

  font-size: 54px;

  line-height: 1.2;

  margin-bottom: 20px;

}

.esthetics-content h2 span {

  color: #D4AF37;

}

.esthetics-intro {

  font-size: 20px;

  line-height: 1.8;

  font-weight: 500;

  color: #333;

  margin-bottom: 18px;

}

.esthetics-content p {

  line-height: 1.9;

  color: #666;

}

.esthetics-features {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin: 40px 0;

}

.esthetics-box {

  display: flex;

  gap: 18px;

  padding: 22px;

  background: #fff;

  border-radius: 18px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, .06);

  transition: .35s;

}

.esthetics-box:hover {

  transform: translateY(-8px);

}

.esthetics-box i {

  width: 55px;

  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 16px;

  background: linear-gradient(135deg, #D4AF37, #F6D77A);

  color: #fff;

  font-size: 22px;

  flex-shrink: 0;

}

.esthetics-box h4 {

  margin-bottom: 6px;

  font-size: 18px;

}

.esthetics-box p {

  margin: 0;

  font-size: 16px;

  color: #666;

}

.esthetics-btn {

  display: inline-block;

  padding: 16px 36px;

  background: linear-gradient(135deg, #D4AF37, #F6D77A);

  color: #111;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: .35s;

}

.esthetics-btn:hover {

  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(212, 175, 55, .30);

}

@media(max-width:991px) {

  .esthetics-grid {

    grid-template-columns: 1fr;

    gap: 50px;

  }

  .esthetics-content h2 {

    font-size: 42px;

  }

  .esthetics-features {

    grid-template-columns: 1fr;

  }

}

@media(max-width:768px) {

  .esthetics-showcase {

    padding: 80px 0;

  }

  .esthetics-content h2 {

    font-size: 34px;

  }

  .esthetics-intro {

    font-size: 18px;

  }

  .esthetics-badge {

    position: relative;

    left: 0;

    bottom: 0;

    margin-top: 20px;

    width: fit-content;

  }

}

/*=========================================
        CONTACT SECTION
==========================================*/

.contact-section {

  padding: 120px 0;

  background: linear-gradient(135deg, #fafcff, #f5f7fb);

  position: relative;

  overflow: hidden;

}

.contact-section::before {

  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  right: -180px;

  top: -120px;

  background: radial-gradient(circle,
      rgba(212, 175, 55, .12),
      transparent 70%);

  border-radius: 50%;

}

.contact-grid {

  display: grid;

  grid-template-columns: 1fr 520px;

  gap: 70px;

  align-items: start;

  position: relative;

  z-index: 2;

}

/*==========================
LEFT
==========================*/

.contact-info h2 {

  font-size: 54px;

  margin-bottom: 20px;

}

.contact-info h2 em {

  color: #D4AF37;

  font-style: normal;

}

.contact-info .lede {

  margin-bottom: 40px;

  max-width: 580px;

}

.contact-cards {

  display: grid;

  gap: 20px;

  margin-bottom: 35px;

}

.contact-card {

  display: flex;

  align-items: flex-start;

  gap: 18px;

  background: #fff;

  padding: 24px;

  border-radius: 22px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, .06);

  transition: .35s;
  margin-top: 25px;

}

.contact-card:hover {

  transform: translateY(-8px);

}

.contact-icon {

  width: 58px;

  height: 58px;

  background: linear-gradient(135deg, #D4AF37, #F7D77B);

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  flex-shrink: 0;

}

.contact-icon svg {

  width: 24px;

  height: 24px;

}

.contact-card h4 {

  margin-bottom: 8px;

  font-size: 19px;

}

.contact-card p {

  margin: 0;

  color: #666;

  line-height: 1.7;

}

.contact-card a {

  color: #444;

  font-weight: 600;

}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(184, 134, 59, .18);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
  margin-top: 35px;
}

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

/*==========================
FORM
==========================*/

.contact-form {

  background: #fff;

  padding: 45px;

  border-radius: 30px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, .08);

  position: relative;

  overflow: hidden;

}

.contact-form::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 6px;

  background: linear-gradient(90deg, #D4AF37, #F7D77B);

}

.contact-form h3 {

  font-size: 32px;

  margin-bottom: 30px;

}

.field {

  margin-bottom: 22px;

}

.field label {

  display: block;

  margin-bottom: 8px;

  font-size: 14px;

  font-weight: 600;

  color: #555;

}

.field input,

.field select,

.field textarea {

  width: 100%;

  padding: 16px 18px;

  border: 1px solid #ddd;

  border-radius: 14px;

  font-size: 15px;

  transition: .3s;

  background: #fafafa;

}

.field textarea {

  resize: none;

}

.field input:focus,

.field select:focus,

.field textarea:focus {

  outline: none;

  border-color: #D4AF37;

  background: #fff;

  box-shadow: 0 0 0 4px rgba(212, 175, 55, .12);

}

.contact-form button {

  width: 100%;

  padding: 18px;

  border: none;

  border-radius: 50px;

  background: linear-gradient(135deg, #D4AF37, #F7D77B);

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  transition: .35s;

}

.contact-form button:hover {

  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(212, 175, 55, .30);

}

.form-note {

  margin-top: 18px;

  font-size: 14px;

  color: #777;

  line-height: 1.7;

  text-align: center;

}

.form-status {

  margin-top: 15px;

  text-align: center;

}

/*==========================
Responsive
==========================*/

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

@media (max-width: 991px) {

  .contact-section {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-info h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .contact-info .lede {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 380px;
  }

  .contact-form {
    padding: 35px;
  }

}

@media (max-width: 768px) {

  .contact-section {
    padding: 70px 0;
  }

  .contact-grid {
    gap: 35px;
  }

  .contact-info h2 {
    font-size: 32px;
  }

  .contact-card {
    padding: 18px;
    border-radius: 18px;
    gap: 15px;
    margin-top: 18px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-card h4 {
    font-size: 17px;
  }

  .contact-card p,
  .contact-card a {
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 300px;
    border-radius: 20px;
  }

  .contact-form {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .contact-form h3 {
    font-size: 28px;
  }

  .field {
    margin-bottom: 18px;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 14px 16px;
    font-size: 15px;
  }

  .contact-form button {
    padding: 16px;
    font-size: 15px;
  }

}

@media (max-width: 576px) {

  .contact-section {
    padding: 60px 0;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  .contact-info .lede {
    font-size: 15px;
  }

  .contact-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 16px;
    gap: 14px;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 250px;
    border-radius: 18px;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .form-heading h3 {
    font-size: 24px;
  }

  .form-heading p {
    font-size: 14px;
  }

  .field label {
    font-size: 13px;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 14px;
    padding: 13px 15px;
  }

  .contact-form button {
    font-size: 14px;
    padding: 15px;
  }

}

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

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: none;
  background: #00a6b6;
  border-radius: 8px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: .3s;
}

/* Mobile */

@media (max-width:991px) {

  .navbar {
    position: relative;
  }

  .menu-toggle {
    display: flex;
  }

  .header-right {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .35s;
    z-index: 999;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links>a {

    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .drop-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 14px 0;
    font-size: 16px;
    cursor: pointer;
  }

  .mega-menu {
    position: static;
    display: none;
    box-shadow: none;
    padding: 10px 0;
    width: 100%;
  }

  .mega-menu.show {
    display: block;
  }

  .mega-column {
    margin-bottom: 20px;
  }

}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/*=====================================
        TESTIMONIAL SECTION
======================================*/

.testimonial-section {
  padding: 120px 0;
  background: #f8fafc;
}

.section-title {
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-title h2 {
  font-size: 52px;
  margin-bottom: 15px;
}

.section-title h2 em {
  color: #D4AF37;
  font-style: normal;
}

.section-title p {
  color: #666;
  line-height: 1.8;
}

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

.testimonial-card {
  position: relative;
  background: #fff;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
  transition: .35s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.quote-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D4AF37, #F7D97C);
  color: #fff;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  margin-bottom: 25px;
}

.stars {
  color: #ffb400;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h4 {
  margin: 0;
  font-size: 18px;
}

.testimonial-user span {
  color: #888;
  font-size: 14px;
}

@media(max-width:991px) {

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

  .section-title h2 {
    font-size: 42px;
  }

}

@media(max-width:768px) {

  .testimonial-section {
    padding: 80px 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    margin-bottom: 45px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .testimonial-card {
    padding: 25px;
  }

}

.user-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #F7D97C);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(212, 175, 55, .35);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-user h4 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
}

.testimonial-user span {
  color: #777;
  font-size: 14px;
}

/*=========================================
        TREATMENTS SECTION
=========================================*/

.treatments-section{
    position:relative;
    padding:120px 0;
    background:linear-gradient(180deg,#fafcff 0%,#f4f7fb 100%);
    overflow:hidden;
}

.treatments-section::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    top:-220px;
    right:-180px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(212,175,55,.12),
    transparent 70%);
}

.treatments-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    bottom:-180px;
    left:-180px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(212,175,55,.08),
    transparent 70%);
}

/*=========================================
SECTION TITLE
=========================================*/

.section-title{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
    position:relative;
    z-index:2;
}

.section-title .eyebrow{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(212,175,55,.12);
    color:#D4AF37;
    font-weight:600;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-title h2{
    font-size:52px;
    color:#1d1d1d;
    margin-bottom:20px;
    line-height:1.2;
}

.section-title h2 em{
    color:#D4AF37;
    font-style:normal;
}

.section-title p{
    font-size:17px;
    color:#666;
    line-height:1.9;
}

/*=========================================
GRID
=========================================*/

.treatment-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    position:relative;
    z-index:2;
}

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

.treatment-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.45s ease;
    border:1px solid rgba(212,175,55,.08);
    position:relative;
}

.treatment-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#D4AF37,#F7D77B);
    transform:scaleX(0);
    transition:.4s;
    transform-origin:left;
}

.treatment-card:hover::before{
    transform:scaleX(1);
}

.treatment-card:hover{
    transform:translateY(-12px);
    box-shadow:0 28px 60px rgba(0,0,0,.15);
}

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

.treatment-image{
    width:100%;
    height:230px;
    overflow:hidden;
    position:relative;
}

.treatment-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.treatment-card:hover .treatment-image img{
    transform:scale(1.08);
}

/* Dark Overlay */

.treatment-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.35),
    transparent 60%);
}

/*=========================================
CONTENT
=========================================*/

.treatment-content{
    padding:28px;
}

.treatment-content h3{
    font-size:23px;
    margin-bottom:15px;
    color:#222;
    line-height:1.4;
}

.treatment-content p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin-bottom:22px;
}

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

.treatment-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#D4AF37;
    font-weight:600;
    transition:.35s;
}

.treatment-btn i{
    transition:.35s;
}

.treatment-btn:hover{
    color:#b88a17;
}

.treatment-btn:hover i{
    transform:translateX(8px);
}

/*=========================================
HOVER GLOW
=========================================*/

.treatment-card:hover .treatment-content h3{
    color:#D4AF37;
}

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

@media(max-width:991px){

.treatments-section{
    padding:90px 0;
}

.section-title h2{
    font-size:40px;
}

.treatment-grid{
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.treatment-image{
    height:210px;
}

}

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

@media(max-width:768px){

.treatments-section{
    padding:70px 0;
}

.section-title{
    margin-bottom:45px;
}

.section-title h2{
    font-size:32px;
}

.section-title p{
    font-size:15px;
}

.treatment-grid{
    grid-template-columns:1fr;
    gap:22px;
}

.treatment-card{
    border-radius:20px;
}

.treatment-image{
    height:220px;
}

.treatment-content{
    padding:22px;
}

.treatment-content h3{
    font-size:21px;
}

.treatment-content p{
    font-size:14px;
}

}

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

@media(max-width:480px){

.treatment-image{
    height:200px;
}

.section-title h2{
    font-size:28px;
}

.section-title .eyebrow{
    font-size:12px;
}

.treatment-content{
    padding:20px;
}

}