   *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    :root {
      --pink: #D4537E;
      --pink-dark: #993556;
      --pink-deep: #72243E;
      --pink-light: #FBEAF0;
      --pink-soft: #F4C0D1;
      --rose: #F0687A;
      --cream: #FEF9F6;
      --charcoal: #1C1A1B;
      --muted: #7a6570;
      --white: #fff;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--charcoal);
      overflow-x: hidden
    }

    /* TOPBAR */
    .topbar {
      background: var(--pink-dark);
      color: #fff;
      text-align: center;
      padding: 9px 16px;
      font-size: 13px;
      letter-spacing: .04em;
      font-weight: 500
    }

    /* NAV */
    nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: #fff;
      border-bottom: 1px solid var(--pink-soft);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5vw;
      height: 68px;
      gap: 16px
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      background: var(--pink);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0
    }

    .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--pink-dark);
      letter-spacing: -0.3px;
      line-height: 1
    }

    .logo-sub {
      font-size: 10px;
      color: var(--muted);
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 4px;
      align-items: center
    }

    .nav-links>li {
      position: relative
    }

    .nav-links>li>a {
      font-size: 14px;
      font-weight: 500;
      color: var(--charcoal);
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 8px;
      display: block;
      transition: color .2s, background .2s
    }

    .nav-links>li>a:hover {
      color: var(--pink-dark);
      background: var(--pink-light)
    }

    /* Dropdown */
    .has-dropdown:hover .dropdown {
      display: block
    }

    .dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      background: #fff;
      border: 1px solid rgba(212, 83, 126, .15);
      border-radius: 12px;
      min-width: 200px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
      overflow: hidden;
      z-index: 300
    }

    .dropdown a {
      display: block;
      padding: 11px 18px;
      font-size: 14px;
      color: var(--charcoal);
      text-decoration: none;
      transition: background .15s
    }

    .dropdown a:hover {
      background: var(--pink-light);
      color: var(--pink-dark)
    }

    .nav-cta {
      background: var(--pink);
      color: #fff !important;
      padding: 10px 22px;
      border-radius: 50px;
      font-weight: 600 !important;
      font-size: 14px;
      text-decoration: none;
      transition: background .2s, transform .15s;
      display: inline-block;
      white-space: nowrap
    }

    .nav-cta:hover {
      background: var(--pink-dark);
      transform: translateY(-1px)
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--charcoal);
      border-radius: 2px;
      transition: all .3s
    }

    .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px)
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0
    }

    .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px)
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: #fff;
      border-bottom: 1px solid var(--pink-soft);
      z-index: 199;
      padding: 16px 5vw 24px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .1)
    }

    .mobile-menu.open {
      display: block
    }

    .mobile-menu a {
      display: block;
      padding: 12px 0;
      font-size: 15px;
      font-weight: 500;
      color: var(--charcoal);
      text-decoration: none;
      border-bottom: 1px solid rgba(212, 83, 126, .1)
    }

    .mobile-menu a:hover {
      color: var(--pink-dark)
    }

    .mobile-menu .mm-cta {
      margin-top: 16px;
      display: block;
      text-align: center;
      background: var(--pink);
      color: #fff;
      border-radius: 50px;
      padding: 14px;
      font-weight: 600
    }

    /* HERO */
    .hero {
      min-height: 90vh;
      background: linear-gradient(135deg, #FBEAF0 0%, #FEF9F6 55%, #F4C0D1 100%);
      display: flex;
      align-items: center;
      padding: 60px 5vw;
      gap: 48px;
      position: relative;
      overflow: hidden
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      background: rgba(212, 83, 126, .07)
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: rgba(212, 83, 126, .05)
    }

    .hero-content {
      flex: 1;
      position: relative;
      z-index: 1;
      max-width: 580px
    }

    .hero-badge {
      display: inline-block;
      background: var(--pink-soft);
      color: var(--pink-deep);
      font-size: 12px;
      font-weight: 700;
      padding: 6px 18px;
      border-radius: 50px;
      margin-bottom: 22px;
      letter-spacing: .08em;
      text-transform: uppercase
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(40px, 5.5vw, 70px);
      font-weight: 900;
      line-height: 1.08;
      color: var(--charcoal);
      margin-bottom: 18px
    }

    .hero h1 em {
      font-style: italic;
      color: var(--pink-dark)
    }

    .hero p.hero-desc {
      font-size: 18px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 460px
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 40px
    }

    .btn-primary {
      background: var(--pink);
      color: #fff;
      padding: 15px 34px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: background .2s, transform .15s;
      box-shadow: 0 8px 28px rgba(212, 83, 126, .28)
    }

    .btn-primary:hover {
      background: var(--pink-dark);
      transform: translateY(-2px)
    }

    .btn-outline {
      border: 2px solid var(--pink);
      color: var(--pink-dark);
      padding: 13px 30px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: all .2s
    }

    .btn-outline:hover {
      background: var(--pink-light)
    }

    .hero-stats {
      display: flex;
      gap: 28px;
      flex-wrap: wrap
    }

    .stat-item .num {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      font-weight: 700;
      color: var(--pink-dark)
    }

    .stat-item .label {
      font-size: 12px;
      color: var(--muted);
      margin-top: 2px
    }

    .hero-visual {
      flex: 0 0 400px;
      position: relative;
      z-index: 1
    }

    .hero-card {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(153, 53, 86, .14)
    }

    .hero-img-bg {
      width: 100%;
      height: 420px;
      background: linear-gradient(160deg, #ED93B1 0%, #D4537E 50%, #993556 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: rgba(255, 255, 255, .9)
    }

    .hero-img-bg .big-em {
      font-size: 72px;
      opacity: .65
    }

    .hero-img-bg p {
      font-size: 14px;
      color: rgba(255, 255, 255, .8);
      text-align: center;
      padding: 0 20px
    }

    .hero-overlay {
      position: absolute;
      bottom: 20px;
      left: 20px;
      right: 20px;
      background: #fff;
      border-radius: 14px;
      padding: 14px 18px;
      display: flex;
      gap: 16px;
      align-items: center;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .1)
    }

    .ov-num {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--pink-dark);
      line-height: 1
    }

    .ov-label {
      font-size: 11px;
      color: var(--muted);
      line-height: 1.4
    }

    .ov-divider {
      width: 1px;
      height: 36px;
      background: rgba(212, 83, 126, .2)
    }

    /* TRUST BAR */
    .trust-bar {
      background: var(--pink-dark);
      padding: 16px 5vw;
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      align-items: center
    }

    .trust-item {
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 9px;
      opacity: .95
    }

    .trust-icon {
      width: 30px;
      height: 30px;
      background: rgba(255, 255, 255, .15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px
    }

    /* LOCATIONS SECTION */
    .locations-section {
      background: #fff;
      padding: 80px 5vw
    }

    .section-tag {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--pink);
      margin-bottom: 10px
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.8vw, 46px);
      font-weight: 700;
      line-height: 1.15;
      color: var(--charcoal);
      margin-bottom: 12px
    }

    .section-sub {
      font-size: 16px;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 44px
    }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px
    }

    .location-card {
      background: var(--cream);
      border-radius: 20px;
      padding: 28px;
      border: 1.5px solid transparent;
      transition: border-color .2s, box-shadow .2s, transform .2s;
      position: relative;
      overflow: hidden
    }

    .location-card:hover {
      border-color: var(--pink-soft);
      box-shadow: 0 16px 48px rgba(212, 83, 126, .12);
      transform: translateY(-4px)
    }

    .location-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--pink), var(--rose))
    }

    .loc-num {
      font-family: 'Playfair Display', serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--pink-soft);
      margin-bottom: 6px;
      letter-spacing: .06em;
      text-transform: uppercase
    }

    .loc-name {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 14px
    }

    .loc-detail {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 12px
    }

    .loc-detail .ldi {
      width: 30px;
      height: 30px;
      background: var(--pink-light);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
      margin-top: 1px
    }

    .loc-detail p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.55
    }

    .loc-phone {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      background: var(--pink);
      color: #fff;
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: background .2s
    }

    .loc-phone:hover {
      background: var(--pink-dark)
    }

    /* WHY US */
    .why-section {
      background: var(--cream);
      padding: 80px 5vw
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 22px;
      margin-top: 44px
    }

    .why-card {
      background: #fff;
      border-radius: 20px;
      padding: 30px 26px;
      border: 1.5px solid transparent;
      transition: border-color .2s, transform .2s;
      cursor: default
    }

    .why-card:hover {
      border-color: var(--pink-soft);
      transform: translateY(-3px)
    }

    .why-icon {
      width: 50px;
      height: 50px;
      background: var(--pink-light);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 18px
    }

    .why-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 8px
    }

    .why-card p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7
    }

    /* EXPRESS WORKOUT */
    .express-section {
      background: #fff;
      padding: 80px 5vw
    }

    .express-wrap {
      display: flex;
      gap: 60px;
      align-items: center;
      flex-wrap: wrap
    }

    .express-content {
      flex: 1;
      min-width: 280px
    }

    .express-visual {
      flex: 0 0 380px;
      min-width: 280px
    }

    .express-card {
      background: linear-gradient(135deg, #FBEAF0, #ED93B1);
      border-radius: 24px;
      padding: 48px 36px;
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .express-card::before {
      content: '⚡';
      position: absolute;
      top: -20px;
      right: -10px;
      font-size: 120px;
      opacity: .1
    }

    .express-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 900;
      color: var(--pink-deep);
      margin-bottom: 8px
    }

    .express-card p {
      font-size: 15px;
      color: var(--pink-dark);
      line-height: 1.6;
      margin-bottom: 24px
    }

    .express-steps {
      display: flex;
      flex-direction: column;
      gap: 12px;
      text-align: left
    }

    .express-step {
      background: #fff;
      border-radius: 12px;
      padding: 14px 18px;
      display: flex;
      gap: 12px;
      align-items: flex-start
    }

    .step-num {
      width: 28px;
      height: 28px;
      background: var(--pink);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      flex-shrink: 0
    }

    .step-text h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 2px
    }

    .step-text p {
      font-size: 12px;
      color: var(--muted)
    }

    /* PROGRAMS */
    .programs-section {
      background: var(--cream);
      padding: 80px 5vw
    }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 22px;
      margin-top: 44px
    }

    .program-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(212, 83, 126, .12);
      transition: box-shadow .2s, transform .2s
    }

    .program-card:hover {
      box-shadow: 0 16px 48px rgba(212, 83, 126, .14);
      transform: translateY(-4px)
    }

     .prog-thumb {
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 52px
    } 


    .p1 {
      background: url(../img/weight-loss.webp);
      background-size: cover;
      background-position: center;
    }

    .p2 {
      background: url(../img/strength.webp);
      background-size: cover;
      background-position: center;
    }

    .p3 {
      background: url(../img/nutrition.webp);
      background-size: cover;
      background-position: center;
    }

    .p4 {
      background: url(../img/circuit.webp);
      background-size: cover;
      background-position: center;
    }

    .prog-body {
      padding: 22px;
    }

    .prog-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 8px
    }

    .prog-body p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 14px
    }

    .prog-tag {
      display: inline-block;
      background: var(--pink-light);
      color: var(--pink-dark);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: .05em
    }

    /* REVIEWS */
    .reviews-section {
      background: var(--pink-dark);
      padding: 80px 5vw
    }

    .reviews-section .section-tag {
      color: var(--pink-soft)
    }

    .reviews-section .section-title {
      color: #fff
    }

    .reviews-section .section-sub {
      color: rgba(255, 255, 255, .7)
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 22px;
      margin-top: 44px
    }

    .review-card {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 20px;
      padding: 26px
    }

    .stars {
      color: #FAC775;
      font-size: 16px;
      margin-bottom: 14px;
      letter-spacing: 2px
    }

    .review-card q {
      font-size: 14px;
      color: rgba(255, 255, 255, .9);
      line-height: 1.7;
      display: block;
      margin-bottom: 18px;
      quotes: "\201C" "\201D"
    }

    .review-card q::before {
      content: open-quote
    }

    .review-card q::after {
      content: close-quote
    }

    .reviewer {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .r-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--pink-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 14px;
      color: var(--pink-deep);
      flex-shrink: 0
    }

    .r-name {
      font-size: 13px;
      font-weight: 600;
      color: #fff
    }

    .r-sub {
      font-size: 11px;
      color: rgba(255, 255, 255, .5);
      margin-top: 2px
    }

    /* FAQ */
    .faq-section {
      background: #fff;
      padding: 80px 5vw
    }

    .faq-list {
      max-width: 780px;
      margin-top: 44px
    }

    .faq-item {
      border-bottom: 1px solid rgba(212, 83, 126, .15);
      padding: 18px 0
    }

    .faq-q {
      font-size: 15px;
      font-weight: 600;
      color: var(--charcoal);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      user-select: none
    }

    .faq-arrow {
      color: var(--pink);
      font-size: 22px;
      font-weight: 300;
      transition: transform .25s;
      flex-shrink: 0;
      line-height: 1
    }

    .faq-q.open .faq-arrow {
      transform: rotate(45deg)
    }

    .faq-a {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease, margin-top .2s
    }

    .faq-a.open {
      max-height: 200px;
      margin-top: 10px
    }

    /* CONTACT */
    .contact-section {
      background: var(--cream);
      padding: 80px 5vw;
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
      align-items: flex-start
    }

    .contact-info {
      flex: 1;
      min-width: 260px
    }

    .contact-info .section-sub {
      margin-bottom: 32px
    }

    .c-detail {
      display: flex;
      gap: 13px;
      align-items: flex-start;
      margin-bottom: 20px
    }

    .c-icon {
      width: 42px;
      height: 42px;
      background: var(--pink-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0
    }

    .c-detail h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 3px;
      text-transform: uppercase;
      letter-spacing: .05em
    }

    .c-detail p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.55
    }

    .c-detail a {
      color: var(--pink-dark);
      text-decoration: none;
      font-weight: 600
    }

    .c-detail a:hover {
      text-decoration: underline
    }

    .contact-form-wrap {
      flex: 1;
      min-width: 300px;
      background: #fff;
      border-radius: 24px;
      padding: 40px 36px;
      border: 1.5px solid rgba(212, 83, 126, .12);
      box-shadow: 0 16px 60px rgba(212, 83, 126, .08)
    }

    .contact-form-wrap h3 {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 24px
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px
    }

    .form-group {
      margin-bottom: 16px
    }

    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: .04em
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      border: 1.5px solid rgba(212, 83, 126, .2);
      border-radius: 10px;
      padding: 12px 14px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--charcoal);
      background: var(--cream);
      transition: border-color .2s;
      outline: none;
      -webkit-appearance: none;
      appearance: none
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--pink);
      background: #fff
    }

    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23993556' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
      cursor: pointer
    }

    .form-group textarea {
      resize: vertical;
      min-height: 90px
    }

    .submit-btn {
      width: 100%;
      background: var(--pink);
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s, transform .15s;
      margin-top: 4px
    }

    .submit-btn:hover {
      background: var(--pink-dark);
      transform: translateY(-1px)
    }

    .form-note {
      font-size: 11px;
      color: var(--muted);
      margin-top: 10px;
      line-height: 1.5
    }

    /* FOOTER */
    footer {
      background: var(--charcoal);
      color: rgba(255, 255, 255, .7);
      padding: 56px 5vw 28px
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      margin-bottom: 24px
    }

    .footer-brand .fl {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 900;
      color: var(--pink-soft);
      display: block;
      margin-bottom: 6px
    }

    .footer-brand .fl span {
      color: #ED93B1
    }

    .footer-brand .franchise-tag {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 12px;
      display: block
    }

    .footer-brand p {
      font-size: 13px;
      line-height: 1.7;
      margin-bottom: 16px
    }

    .footer-brand address {
      font-size: 12px;
      line-height: 1.8;
      color: rgba(255, 255, 255, .55);
      font-style: normal;
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding-top: 14px
    }

    .footer-brand address strong {
      color: rgba(255, 255, 255, .75);
      display: block;
      margin-bottom: 4px
    }

    .gstin {
      font-size: 11px;
      color: rgba(255, 255, 255, .35);
      margin-top: 6px
    }

    .footer-col h4 {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: #fff;
      margin-bottom: 16px
    }

    .footer-col ul {
      list-style: none
    }

    .footer-col li {
      margin-bottom: 10px
    }

    .footer-col a {
      color: rgba(255, 255, 255, .6);
      text-decoration: none;
      font-size: 13px;
      transition: color .2s
    }

    .footer-col a:hover {
      color: var(--pink-soft)
    }

    .footer-col .loc-entry {
      margin-bottom: 18px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255, 255, 255, .06)
    }

    .footer-col .loc-entry:last-child {
      border: none;
      margin-bottom: 0;
      padding-bottom: 0
    }

    .footer-col .loc-entry strong {
      display: block;
      font-size: 13px;
      color: rgba(255, 255, 255, .8);
      margin-bottom: 4px
    }

    .footer-col .loc-entry span {
      font-size: 12px;
      color: rgba(255, 255, 255, .45);
      line-height: 1.5;
      display: block;
      margin-bottom: 4px
    }

    .footer-col .loc-entry a {
      color: var(--pink-soft);
      font-size: 13px;
      font-weight: 600
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 12px
    }

    .social-links {
      display: flex;
      gap: 10px
    }

    .social-links a {
      width: 34px;
      height: 34px;
      background: rgba(255, 255, 255, .08);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .7);
      text-decoration: none;
      font-size: 13px;
      font-weight: 700;
      transition: background .2s, color .2s
    }

    .social-links a:hover {
      background: var(--pink);
      color: #fff
    }

    /* WHATSAPP FLOAT */
    .wa-btn {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 500;
      background: #25D366;
      color: #fff;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
      transition: transform .2s
    }

    .wa-btn:hover {
      transform: scale(1.1)
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(22px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .hero-content>* {
      animation: fadeUp .6s ease both
    }

    .hero-badge {
      animation-delay: .05s
    }

    .hero h1 {
      animation-delay: .15s
    }

    .hero p {
      animation-delay: .22s
    }

    .hero-btns {
      animation-delay: .3s
    }

    .hero-stats {
      animation-delay: .38s
    }

    /* RESPONSIVE */
    @media(max-width:900px) {
      .hero {
        flex-direction: column;
        padding: 40px 5vw
      }

      .hero-visual {
        flex: none;
        width: 100%
      }

      .express-wrap {
        flex-direction: column
      }

      .express-visual {
        flex: none;
        width: 100%
      }

      .footer-top {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:640px) {
      .nav-links {
        display: none
      }

      .hamburger {
        display: flex
      }

      .trust-bar {
        gap: 18px
      }

      .form-row {
        grid-template-columns: 1fr
      }

      .footer-top {
        grid-template-columns: 1fr
      }

      .contact-section {
        flex-direction: column
      }

      .hero-visual {
        display: none
      }
    }

    .navbar-link {
      color: var(--pink-soft);
      text-decoration: none;
    }

    .site-logo {
      height: 60px;
      width: auto;
      display: block;
    }
    .hero-logo{
    margin-top: 20px;
}

.hero-logo img{
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
}

.privacy-policy{
    width: 100%;
    padding: 80px 0;
    background: #fff;
}

.container-privacy{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.privacy-content{
    width: 100%;
}

.privacy-content h1{
    margin-bottom: 30px;
}

.privacy-content h2{
    margin-top: 35px;
    margin-bottom: 15px;
}

.privacy-content h3{
    margin-top: 25px;
    margin-bottom: 10px;
}

.privacy-content p{
    line-height: 1.9;
    margin-bottom: 18px;
}

.privacy-content a{
    color: #e91e63;
    text-decoration: none;
}

@media(max-width:768px){

    .privacy-policy{
        padding: 50px 0;
    }

    .container-privacy{
        width: 92%;
    }

    .privacy-content p{
        line-height: 1.8;
    }

}

    .terms-section{
    width: 100%;
    padding: 80px 0;
    background: #fff;
}

.container-club{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.terms-content{
    width: 100%;
}

.terms-content h1{
    margin-bottom: 30px;
}

.terms-content h2{
    margin-top: 35px;
    margin-bottom: 15px;
}

.terms-content p{
    line-height: 1.9;
    margin-bottom: 15px;
}

.terms-content ol,
.terms-content ul{
    padding-left: 25px;
    margin-bottom: 20px;
}

.terms-content li{
    line-height: 1.9;
    margin-bottom: 10px;
}

@media(max-width:768px){

    .terms-section{
        padding: 50px 0;
    }

    .container-club{
        width: 92%;
    }

    .terms-content p,
    .terms-content li{
        line-height: 1.8;
    }

}
    .policy-section{
    width: 100%;
    padding: 80px 0;
    background: #fff;
}

.container-refund{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.policy-content{
    width: 100%;
}

.policy-content h1{
    margin-bottom: 30px;
}

.policy-content h2{
    margin-top: 35px;
    margin-bottom: 15px;
}

.policy-content p{
    line-height: 1.9;
    margin-bottom: 15px;
}

.policy-content ul{
    padding-left: 25px;
    margin-bottom: 20px;
}

.policy-content li{
    line-height: 1.9;
    margin-bottom: 12px;
}

.policy-content a{
    color: #e91e63;
    text-decoration: none;
}

@media(max-width:768px){

    .policy-section{
        padding: 50px 0;
    }

    .container-refund{
        width: 92%;
    }

    .policy-content p,
    .policy-content li{
        line-height: 1.8;
    }

}
    .disclaimer-section{
    width: 100%;
    padding: 80px 0;
    background: #fff;
}

.container-disclaimer{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.disclaimer-content{
    width: 100%;
}

.disclaimer-content h1{
    margin-bottom: 30px;
}

.disclaimer-content h2{
    margin-top: 35px;
    margin-bottom: 15px;
}

.disclaimer-content p{
    line-height: 1.9;
    margin-bottom: 18px;
}

.disclaimer-content a{
    color: #e91e63;
    text-decoration: none;
}

@media(max-width:768px){

    .disclaimer-section{
        padding: 50px 0;
    }

    .container-disclaimer{
        width: 92%;
    }

    .disclaimer-content p{
        line-height: 1.8;
    }

}