/*
Theme Name:  Therapie Clinic
Theme URI:   https://therapieclinic.com
Description: Premium medical aesthetic clinic theme with dynamic mega menu and mobile drill-down navigation. Menu items added in Appearance -> Menus automatically appear in both desktop mega menu and mobile panels.
Author:      Therapie Clinic
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: therapie-clinic
*/

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

:root {
  --purple: #102d21;
  --purple-h: #260c02;
  --burgundy: #8B2D5A;
  --burgundy-h: #7a2650;
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --hero-bg: #102d21;
  --white: #ffffff;
  --cream: #EEE9DB;
  --light: #f5f4f8;
  --muted: #777;
  --green: #102d21;
  --border: #e0dede;
  --red: #e63946;
  --brand-purple: #102d21;

  --f-label: "Lato", sans-serif;
  --f-body: "Lato", sans-serif;
  --f-heading: "Optima", "Palatino Linotype", serif;

  --nav-h: 78px;
  --max-w: 1400px;
  --gap: 16px;
  --rad: 4px;
}

@font-face {
  font-family: "Optima";
  src: url('assets/Fonts/OPTIMA.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Optima";
  src: url('assets/Fonts/Optima_Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Optima";
  src: url('assets/Fonts/Optima Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Optima";
  src: url('assets/Fonts/OPTIMA_B.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}
span.nav-arrow svg {
    height:18px;
    width:18px;
}


img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

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

/* 
   NAVBAR*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  background: var(--white);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: box-shadow .3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.14);
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.logo-leaf {
  width: 28px;
  height: 28px;
}

.logo-text {
  font-family: var(--f-heading);
  font-size: 22px;
  color: var(--purple);
  font-style: italic;
  letter-spacing: .5px;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--f-label);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--dark);
  padding: 8px 11px;
  transition: color .2s;
}

.nav-link:hover {
  color: var(--purple);
}

.nav-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 3px;
  transition: transform .25s cubic-bezier(.23, 1, .32, 1);
  vertical-align: middle;
}

.has-mega:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-icon {
  background: none;
  border: none;
  color: var(--dark);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}

.nav-icon:hover {
  opacity: .6;
}

.nav-flag {
  font-size: 19px;
}

.btn-consultation {
  background: var(--purple);
  color: var(--white);
  font-family: var(--f-label);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  transition: background .2s;
  white-space: nowrap;
}

.btn-consultation:hover {
  background: var(--purple-h);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1100;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform .38s cubic-bezier(.23, 1, .32, 1),
    opacity .25s ease,
    width .3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100vw);
  height: 100vh;
  height: 100dvh;
  background: #111;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.23, 1, .32, 1);
  flex-direction: column;
  overflow: hidden;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Panel system */
.mob-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.23, 1, .32, 1);
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mob-panel::-webkit-scrollbar {
  display: none;
}

.mob-panel.mob-active {
  transform: translateX(0);
  background: #000;
}

.mob-panel.mob-slide-left {
  transform: translateX(-28%);
  opacity: .35;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.23, 1, .32, 1), opacity .3s;
}

/* Panel top bar */
.mob-panel-top {
  display: flex;
  align-items: center;
  padding: 0 8px;
  height: 56px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.mob-close-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .65);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

.mob-close-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.mob-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .55);
  cursor: pointer;
  font-family: var(--f-label);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .6px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  text-transform: uppercase;
}

.mob-back-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

/* Panel title */
.mob-panel-label {
  font-family: var(--f-heading);
  font-size: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, .95);
  padding: 18px 24px 12px;
  flex-shrink: 0;
}

/* Nav list */
.mob-nav-list {
  list-style: none;
  flex: 1;
}

.mob-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  font-family: var(--f-label);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  letter-spacing: .2px;
  transition: color .15s, background .15s;
}

.mob-nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, .05);
}

.mob-nav-item svg {
  color: rgba(255, 255, 255, .3);
  flex-shrink: 0;
  transition: color .15s, transform .2s;
}

.mob-nav-item:hover svg {
  color: rgba(255, 255, 255, .65);
  transform: translateX(2px);
}

.mob-nav-list--sm .mob-nav-item {
  font-size: 14px;
  font-weight: 500;
  padding: 14px 24px;
  color: rgba(255, 255, 255, .72);
}

.mob-nav-list--sm .mob-nav-item:hover {
  color: #fff;
}

/* Panel footer */
.mob-panel-footer {
  padding: 20px 20px 28px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mob-btn-primary {
  display: block;
  text-align: center;
  background: var(--purple);
  color: #fff;
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s;
}

.mob-btn-primary:hover {
  background: var(--purple-h);
}

.mob-auth-row {
  display: flex;
  gap: 8px;
}

.mob-btn-auth {
  flex: 1;
  text-align: center;
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 12px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .08);
  transition: all .2s;
}

.mob-btn-auth:hover {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.mob-btn-auth--ghost {
  background: none;
  color: rgba(255, 255, 255, .55);
}

.mob-btn-auth--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 9998;
  opacity: 0;
  transition: opacity .35s;
}

.overlay.active {
  opacity: 1;
}

.hero {
  margin-top: var(--nav-h);
  min-height: 600px;
  max-height: 720px;
  background: var(--hero-bg);
/* 	background: radial-gradient(circle at center, #0D653B 0%, #0D5734 38%, #0F3B27 68%, #0C2D22 100%); */
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

.hero .conatiner {
  display: flex;
  gap: 40px;
}
h1.hero-title.clrdif {
    color: #ebcd93;
    letter-spacing: 6px;
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  width: 100%;
  max-width: 58%;
  align-items: flex-start;
}
.hero-sub-points {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-sub-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-sub-icon {
  width: 34px;
  height: 34px;
  color: #c79b4b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-sub-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-sub-icon svg path {
  fill: none;
}

.hero-sub-text {
  color: #e8e8e8;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  max-width: 190px;
}

.hero-sub-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.45);
  display: inline-block;
}
.featured-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin: 18px 0;
}

.featured-title span {
  display: block;
  width: 105px;
  height: 1px;
  background: rgba(198, 155, 75, 0.65);
}

.featured-title p {
  margin: 0;
  color: #e8e8e8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 767px) {
  .hero-sub-points {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    margin-top: 22px;
  }

  .hero-sub-item {
    display: block;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
  }

  .hero-sub-icon {
    display: flex;
    width: 24px;
    height: 24px;
    margin: 0 auto 6px;
  }

  .hero-sub-text {
    display: block;
    color: #e8e8e8;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    max-width: 100%;
    text-align: center;
    word-break: normal;
  }

  .hero-sub-divider {
    display: none;
  }
}
.awards-row {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.award-badge {
  width: 82px;
  height: 82px;
  border: 1.5px solid rgba(255, 255, 255, .55);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  text-align: center;
  gap: 2px;
}
.award-badge-new img {
    border: 2px dotted #fff !important;
    border-radius: 12px;
    padding: 12px;
/*     filter: invert(1); */
    height: 60px;
	width: 115px;
    object-fit: contain;
}
.award-year {
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 900;
  color: var(--white);
}

.award-title {
  font-family: var(--f-label);
  font-size: 6.5px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.award-org {
  font-size: 5px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.2;
}
 .featured-title.greens p {
    color: var(--green);
}
.featured-title.greens span {
    background: var(--green);
}
.hero-title {
  font-family: var(--f-label);
  font-size: clamp(30px, 5vw, 70px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: 4.5px;
/*   margin-bottom: 18px; */
  text-align: center;
}
.trusted {
    background: white;
    border-radius: 8px;
    padding: 4px 25px;
	    margin-bottom: 45px;
}

.trusted span {
    color: #0d6139;
      font-size: clamp(22px, 3vw, 20px);

}
.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .88);
  max-width: 620px;
  margin-bottom: 32px;
  line-height: 1.65;
  text-align: center;
}

.btn-hero {
   background: var(--purple);
   color: var(--white);
   font-family: var(--f-label);
   font-size: 15.5px;
   font-weight: 700;
   padding: 14px 22px;
   border-radius: 10px;
   transition: background .2s;
   white-space: nowrap;
   width:300px;
   text-align: center;
}

.btn-hero:hover {
  background: var(--burgundy-h);
}

.hero-img-wrap {

  width: 45%;
}


section.hero .container {
  display: flex;
  padding: 0 0 0 20px;
  gap: 40px;
}

.eyebrow {
  display: block;
  font-family: var(--f-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sale-eyebrow {
  color: var(--green);
}

.light-eyebrow {
  color: rgba(255, 255, 255, .8);
}

.purple-eyebrow {
  color: var(--white);
}

.sec-heading {
  font-family: var(--f-heading);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.2;
}

.light-heading {
  color: var(--black);
}

.dark-heading {
  color: var(--dark);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 14px;
}

.dark-hdr .hdr-left {
  color: var(--white);
}

.hdr-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.view-all {
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid;
  padding-bottom: 2px;
  transition: opacity .2s;
}

.view-all:hover {
  opacity: .65;
}

.white-link {
  color: var(--green);
  border-color: var(--green);
}

.purple-link {
  color: var(--purple);
  border-color: var(--purple);
}

.arrow-group {
  display: flex;
  gap: 8px;
}

.arr-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  cursor: pointer;
}

.light-arr {
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
}

.light-arr:hover {
  background: rgba(255, 255, 255, .18);
}

.dark-arr {
  color: var(--dark);
  border-color: rgba(0, 0, 0, .35);
}

.dark-arr:hover {
  background: rgba(0, 0, 0, .07);
}

/* Slider base */
.slider-outer {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: var(--gap);
  transition: transform .52s cubic-bezier(.23, 1, .32, 1);
  will-change: transform;
}

/* Dots */
.dots-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.dot {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background .25s;
}

.dot.active {
  background: var(--green);
}

.dark-dots .dot {
  background: rgba(0, 0, 0, .2);
}

.dark-dots .dot.active {
  background: var(--dark);
}

.offers-section {
  background: var(--cream);
  padding: 56px 0 44px;
}

.offer-card {
  flex: 0 0 calc(33.333% - 11px);
  width: calc(33.333% - 11px);
  height: 360px;
  border-radius: var(--rad);
  overflow: hidden;
  position: relative;
}

.offer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .22) 50%, rgba(0, 0, 0, .06) 100%);
  opacity: 1;
  transition: opacity .4s cubic-bezier(.23, 1, .32, 1);
  pointer-events: none;
}

.offer-card:hover::after {
  opacity: .45;
}

.offer-card img {
  transition: transform .4s ease;
}

.offer-card:hover img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 13px;
  border-radius: 50px;
  font-family: var(--f-label);
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.red-badge {
  background: var(--red);
  color: var(--white);
}

.white-badge {
  background: rgba(255, 255, 255, .92);
  color: var(--dark);
}

.card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, transparent 100%);
  color: var(--white);
  z-index: 1;
}

.treat-type {
  display: block;
  font-family: var(--f-label);
  font-size: 13px;
  opacity: .88;
  margin-bottom: 3px;
}

.treat-name {
  font-family: var(--f-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 10px;
}

.price-wrap {
  margin-bottom: 14px;
}

.from-txt {
  display: block;
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  opacity: .78;
}

.price-txt {
  font-family: var(--f-heading);
  font-size: 22px;
  color: var(--white);
}

.price-txt strong {
  font-size: 34px;
  font-weight: 500;
}

.was {
  font-size: 12px;
  text-decoration: line-through;
  opacity: .65;
}

.btn-pill-purple {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 50px;
  transition: background .2s;
}

.btn-pill-purple:hover {
  background: var(--purple-h);
}

.sub-banner {
  background: var(--green);
/* 	background: radial-gradient(circle at center, #0D653B 0%, #0D5734 38%, #0F3B27 68%, #0C2D22 100%); */
  padding: 80px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.sub-banner .eyebrow {
  margin-bottom: 16px;
}

.sub-title {
  font-family: var(--f-heading);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
/*   max-width: 640px; */
  margin-bottom: 32px;
}

.sub-title em {
  font-style: italic;
}

.btn-ghost-light {
  display: inline-block;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .5);
  color: var(--white);
  font-family: var(--f-label);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 34px;
  border-radius: 50px;
  transition: background .2s;
}

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

.explore-section {
  background: var(--white);
  padding: 56px 0 44px;
}

.explore-card {
  flex: 0 0 calc(33.333% - 11px);
  width: calc(33.333% - 11px);
  height: 500px;
  border-radius: var(--rad);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.explore-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .28) 50%, rgba(0, 0, 0, .08) 100%);
  opacity: 1;
  transition: opacity .4s cubic-bezier(.23, 1, .32, 1);
}

.explore-card:hover::after {
  opacity: .45;
}

.explore-card img {
  transition: transform .4s ease;
}

.explore-card:hover img {
  transform: scale(1.04);
}

.explore-info {
  position: absolute;
  bottom: 22px;
  left: 20px;
  right: 20px;
  z-index: 1;
}

.explore-info h3 {
  font-family: var(--f-heading);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.btn-explore {
  display: inline-block;
  background: rgba(255, 255, 255, .94);
  color: var(--dark);
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 50px;
  transition: background .2s;
}

.btn-explore:hover {
  background: var(--white);
}

.plans-section {
  background: #260c02;
  padding: 100px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plans-section .eyebrow {
  margin-bottom: 20px;
}

.plans-title {
  font-family: var(--f-heading);
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.28;
  max-width: 680px;
  margin-bottom: 36px;
}

.plans-title em {
  font-style: italic;
}

.btn-ghost-white {
  display: inline-block;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 34px;
  border-radius: 50px;
  transition: all .2s;
}

.btn-ghost-white:hover {
  background: var(--white);
  color: var(--dark);
}

.stats-section {
  background: var(--light);
  padding: 60px 0px;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.stat-num {
  font-family: var(--f-heading);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-lbl {
  font-family: var(--f-label);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--muted);
}

.videos-section {
  background: var(--white);
  padding: 48px 0px;
}

.videos-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.vid-card {
  position: relative;
  border-radius: var(--rad);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.vid-card img {
  transition: transform .3s;
}

.vid-card:hover img {
  transform: scale(1.04);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--dark);
  padding-left: 3px;
  transition: transform .2s;
}

.vid-card:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

.brand-section {
  background: var(--brand-purple);
  padding: 96px 0px;
}

.brand-inner {
  max-width: 900px;
}

.brand-section .eyebrow {
  margin-bottom: 22px;
}

.brand-title {
  font-family: var(--f-heading);
  font-size: clamp(22px, 3.4vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.32;
  margin-bottom: 40px;
}

.brand-title em {
  font-style: italic;
}

.btn-ghost-round {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, .7);
  color: var(--white);
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 50px;
  transition: background .2s;
}

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

.featured-section {
  background: var(--white);
  padding: 56px 0px;
  border-top: 1px solid var(--border);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.feat-card {
  position: relative;
  border-radius: var(--rad);
  overflow: hidden;
  height: 400px;
  cursor: pointer;
}

.feat-card img {
  transition: transform .4s;
}

.feat-card:hover img {
  transform: scale(1.04);
}

.feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.58) 100%);
  transition: opacity .4s ease;
  z-index: 1;
}

.feat-card:hover::after {
  opacity: .45;
}

.new-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  font-family: var(--f-label);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}

.feat-body {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: var(--white);
  z-index: 2;
}

.feat-body h3 {
  font-family: var(--f-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .38);
}

.btn-feat {
  display: inline-block;
  background: rgba(255, 255, 255, .94);
  color: var(--dark);
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 50px;
  transition: background .2s;
}

.btn-feat:hover {
  background: var(--white);
}

.locations-section {
  background: var(--white);
  padding: 56px 0px;
  border-top: 1px solid var(--border);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.loc-card {
  border-radius: 6px;
  overflow: hidden;
}

.loc-img {
  height: 180px;
  overflow: hidden;
}

.loc-img img {
  transition: transform .3s;
}

.loc-card:hover .loc-img img {
  transform: scale(1.04);
}

.loc-info {
  padding: 16px 0;
}

.loc-info h3 {
  font-family: var(--f-heading);
  font-size: 19px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}

.loc-info p {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 6px;
}

.loc-phone {
  display: block;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.btn-directions {
  display: inline-block;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all .2s;
}

.btn-directions:hover {
  background: var(--dark);
  color: var(--white);
}

.media-section {
  background: var(--cream);
  padding: 60px 40px;
  text-align: center;
}

.media-label {
  display: block;
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--muted);
  margin-bottom: 40px;
}

.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
}

.mlogo {
  font-family: var(--f-heading);
  color: var(--dark);
  opacity: .82;
  cursor: pointer;
  transition: opacity .2s;
  letter-spacing: 2px;
}

.mlogo:hover {
  opacity: 1;
}

.elle-logo {
  font-size: 34px;
  letter-spacing: 7px;
}

.forbes-logo {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--f-label);
  letter-spacing: 0;
}

.times-logo {
  font-size: 13px;
  letter-spacing: .5px;
  font-family: var(--f-label);
  font-weight: 600;
}

.vogue-logo {
  font-size: 30px;
  letter-spacing: 5px;
}

.sheer-logo {
  font-size: 16px;
  letter-spacing: 3px;
  font-family: var(--f-label);
  font-weight: 600;
}

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, .65);
}

.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.fcol h4 {
  font-family: var(--f-label);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: .2px;
}

.mt-24 {
  margin-top: 24px;
}

.fcol ul li {
  margin-bottom: 10px;
}

.fcol ul li a {
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(255, 255, 255, .62);
  transition: color .2s;
}

.fcol ul li a:hover {
  color: var(--white);
}

.app-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 1.4;
  transition: border-color .2s;
}

.app-btn:hover {
  border-color: rgba(255, 255, 255, .7);
}

.app-ico {
  font-size: 20px;
  flex-shrink: 0;
}

.pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pay-icon {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 10px;
  font-family: var(--f-label);
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
}

.footer-mid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.region-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .65);
  font-family: var(--f-body);
  font-size: 14px;
  transition: color .2s;
}

.region-btn:hover {
  color: var(--white);
}

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

.soc-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  font-family: var(--f-label);
  font-size: 12px;
  font-weight: 700;
  transition: all .2s;
}

.soc-link:hover {
  border-color: var(--white);
  color: var(--white);
}

.footer-bot {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 40px 32px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-bot p {
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
}
.main-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.media-section {
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

.featured-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.featured-title span {
  display: block;
  width: 105px;
  height: 1px;
  background: rgba(198, 155, 75, 0.65);
}

.featured-title p {
  margin: 0;
  color: #e8e8e8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.media-logo-img {
      max-width: 170px;
    max-height: 115px;
  width: auto;
  height: auto;
  object-fit: contain;
/*   filter: brightness(0) invert(1); */
  opacity: 0.9;
}

@media (max-width: 1100px) {
  .offer-card {
    flex: 0 0 calc(50% - 8px);
    width: calc(50% - 8px);
  }

  .explore-card {
    flex: 0 0 calc(50% - 8px);
    width: calc(50% - 8px);
  }

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

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

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

	.mob-nav-item svg {
    stroke: #fff !important;
}
}

@media (max-width: 900px) {

  .nav-links {
    display: none;
  }
	.nav-actions {
 
  width: 100%;
  justify-content: end;
}
  .nav-actions .btn-consultation,
  .nav-actions .nav-flag {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    max-height: none;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 48px 0px;
  }

  .hero-img-wrap {
    /* display: none; */
  }

  .brand-section {
    padding: 72px 0px;
  }

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

@media (max-width: 700px) {

  .offers-section,
  .explore-section,
  .featured-section,
  .locations-section,
  .stats-section,
  .videos-section {
    padding: 44px 0px;
  }

  .sub-banner,
  .plans-section,
  .brand-section {
    padding: 64px 20px;
  }
th.diff-us-col.diff-us-hdr img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}
  .offer-card,
  .explore-card {
    flex: 0 0 calc(85% - 8px);
    width: calc(85% - 8px);
  }

  .locations-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

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

  .vid-card {
    height: 220px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 20px 28px;
    gap: 28px;
  }

  .footer-mid {
    padding: 18px 20px;
  }

  .footer-bot {
    padding: 12px 20px 28px;
  }

  .media-logos {
    gap: 28px;
  }

  .stats-inner {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-container {
    padding: 0 18px;
  }

  .brand-section {
    padding: 64px 24px;
  }

  .media-section {
    padding: 48px 20px;
  }



  section.hero .container {
    display: flex;
    padding: 20px;
  }
	.main-flex{
		flex-wrap:wrap;
	}
	.hero-img-wrap {
    width: 100%;
}
	section.hero .container {
    padding-bottom: 0;
}
	.media-section {
    padding: 14px 0;
  }

  .featured-title {
    gap: 10px;
    margin-bottom: 14px;
  }

  .featured-title span {
    width: 65px;
  }

  .featured-title p {
    font-size: 11px;
    letter-spacing: 1.4px;
  }

  .media-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    align-items: center;
  }

  .media-logo-img {
    max-width: 90px;
    max-height: 30px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {

  .offer-card,
  .explore-card {
    flex: 0 0 90%;
    width: 90%;
  }

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

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

  .awards-row {
    gap: 8px;
  }

  .award-badge {
    width: 68px;
    height: 68px;
  }
}

