*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --gold: #a98d5e;
      --gold-light: #c8aa78;
      --gold-pale: #f5efe4;
      --dark: #111111;
      --text: #333333;
      --muted: #777777;
      --light: #f9f9f9;
      --white: #ffffff;
      --border: #e8e0d4;
      --red: #ec3237;
    }
    html { font-size: 16px; scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }
    p { font-size: 13.5px; line-height: 2em; color: var(--muted); }
    .container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
    .section-pad { padding: 90px 0; }

    /* ── TOP BAR ── */
    .header-top-two { background: #000; padding: 9px 0; border-bottom: 1px solid #1a1a1a; }
    .header-top-two .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
    .welcm-ht-two p { margin: 0; font-size: 13px; color: #d3d3d3; display: flex; align-items: center; gap: 7px; }
    .welcm-ht-two .fa { color: var(--gold); font-size: 12px; }
    .social-linked-two ul { display: flex; gap: 6px; }
    .social-linked-two a { border: 1px solid #444; color: #ccc; font-size: 12px; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; transition: all .3s; }
    .social-linked-two a:hover { border-color: var(--gold); color: var(--gold); }

    /* ── NAVBAR ── */
    .header-nav { background: #fff; border-bottom: 3px solid var(--gold); position: sticky; top: 0; z-index: 999; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
    .main-header-nav-two .container { display: flex; align-items: center; justify-content: space-between; }
    .logo-wrap { display: flex; align-items: center; gap: 14px; padding: 10px 0; }

    /* Navbar image logo */
    .navbar-logo-img {
      height: 64px;
      width: auto;
      max-width: 220px;
      object-fit: contain;
      display: block;
    }

    /* About section real image */
    .about-real-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    .logo-emblem { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; background: var(--gold-pale); flex-shrink: 0; }
    .logo-emblem svg { width: 32px; height: 32px; }
    .brand-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--gold); line-height: 1.2; }
    .brand-sub { font-size: 11px; color: #888; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 1px; }
    .nav-ul { display: flex; align-items: center; }
    .nav-ul li { position: relative; }
    .nav-ul li a { display: flex; align-items: center; gap: 4px; padding: 22px 13px; font-size: 13.5px; font-weight: 500; color: #222; transition: color .3s; white-space: nowrap; }
    .nav-ul li a:hover { color: var(--gold); }
    .nav-ul li.dropdown > a::after { content: '▾'; font-size: 10px; margin-left: 2px; opacity: .6; }
    .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border-top: 3px solid var(--gold); box-shadow: 0 12px 36px rgba(0,0,0,.12); min-width: 210px; z-index: 1000; padding: 8px 0; }
    .nav-ul li.dropdown:hover .dropdown-menu { display: block; }
    .dropdown-menu li a { display: block; padding: 9px 20px; font-size: 13px; color: #333; border-left: 3px solid transparent; transition: all .25s; }
    .dropdown-menu li a:hover { border-left-color: var(--gold); background: var(--gold-pale); color: var(--gold); padding-left: 26px; }

    /* ══════════════════════════════════
       HERO — Bold Banner Style
       ══════════════════════════════════ */
    .hero-section {
      min-height: 88vh;
      background: linear-gradient(135deg, #f8f8f6 0%, #f5f4f0 50%, #f0eeea 100%);
      display: flex; align-items: stretch;
      position: relative; overflow: hidden;
    }

    /* Diagonal gold slash accent */
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0; right: 36%; bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
      opacity: .5;
      z-index: 1;
      pointer-events: none;
    }

    /* Radial gold glow behind image */
    .hero-section::after {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 55%; height: 100%;
      background: radial-gradient(ellipse at 70% 50%, rgba(169,141,94,.20) 0%, transparent 65%);
      pointer-events: none; z-index: 0;
    }

    /* Decorative dot grid - left side only */
    .hero-blob1 {
      position: absolute; top: 0; left: 0; bottom: 0;
      width: 64%;
      background-image: radial-gradient(circle, rgba(169,141,94,.15) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none; z-index: 0;
    }
    /* Top gold horizontal rule */
    .hero-blob2 {
      display: none;
    }

    .hero-orn { display: none; }
    .hero-accent-line { display: none; }

    /* ── BANNER LAYOUT ── */
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 0;
      align-items: stretch;
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      position: relative; z-index: 2;
      padding: 0;
    }

    /* ── LEFT CONTENT ── */
    .hero-left {
      padding: 70px 20px 70px 20px;
      display: flex; flex-direction: column; justify-content: center;
      position: relative;
      max-width: 700px;
    }

    /* Thin gold top border line */
    .hero-left::before {
      content: '';
      position: absolute; top: 40px; left: 60px;
      width: 60px; height: 2px;
      background: var(--gold);
    }

    .hero-top-badge {
      display: inline-flex; align-items: center; gap: 9px;
      background: rgba(169,141,94,.15);
      border: 1px solid rgba(169,141,94,.45);
      border-radius: 3px;
      color: var(--gold-light); font-size: 10.5px;
      letter-spacing: 3px; text-transform: uppercase;
      padding: 8px 18px; margin-bottom: 30px;
      animation: slideInLeft .6s ease both;
      font-weight: 600; width: fit-content;
    }
    .hero-top-badge .badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--gold);
      animation: pulseDot 1.5s ease-in-out infinite;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(38px, 4.5vw, 66px);
      font-weight: 800; line-height: 1.06;
      color: #111111; margin-bottom: 0;
      overflow: hidden;
    }
    .hero-title .ht-line { display: block; overflow: hidden; }
    .hero-title .ht-inner { display: block; animation: slideInUp .7s cubic-bezier(.16,1,.3,1) both; }
    .hero-title .ht-line:nth-child(1) .ht-inner { animation-delay: .1s; }
    .hero-title .ht-line:nth-child(2) .ht-inner { animation-delay: .22s; }
    .hero-title .ht-line:nth-child(3) .ht-inner { animation-delay: .34s; }
    .hero-title .accent { color: var(--gold); font-style: italic; }
    .hero-title .stroke-text {
      -webkit-text-stroke: 1.5px var(--gold);
      color: transparent;
    }

    .hero-title-underline {
      width: 0; height: 3px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin-bottom: 20px; margin-top: 14px;
      animation: expandWidth .8s .55s ease both;
    }

    .hero-degrees {
      color: rgba(60,40,10,.70); font-size: 14px;
      margin-bottom: 20px; font-weight: 400;
      letter-spacing: .3px; line-height: 1.7;
      animation: fadeUp .7s .45s ease both;
      opacity: 0; animation-fill-mode: both;
    }

    .hero-desc {
      color: rgba(60,40,10,.60); font-size: 14px; line-height: 1.85;
      max-width: 480px; margin-bottom: 38px;
      animation: fadeUp .7s .65s ease both;
      opacity: 0; animation-fill-mode: both;
    }

    .hero-actions {
      display: flex; gap: 14px; flex-wrap: wrap;
      margin-bottom: 50px;
      animation: fadeUp .7s .75s ease both;
      opacity: 0; animation-fill-mode: both;
    }
    .btn-gold-hero {
      background: var(--gold); color: #fff;
      font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
      padding: 15px 34px;
      border: 2px solid var(--gold);
      cursor: pointer; transition: all .3s;
      display: inline-flex; align-items: center; gap: 10px;
      font-family: 'DM Sans', sans-serif; font-weight: 600;
    }
    .btn-gold-hero:hover { background: transparent; color: var(--gold); }

    .btn-outline-hero {
      background: transparent; color: rgba(60,40,10,.80);
      font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
      padding: 15px 34px;
      border: 2px solid rgba(60,40,10,.3);
      cursor: pointer; transition: all .3s;
      display: inline-flex; align-items: center; gap: 10px;
      font-family: 'DM Sans', sans-serif; font-weight: 600;
    }
    .btn-outline-hero:hover { border-color: var(--gold); color: var(--gold); background: rgba(169,141,94,.05); }

    /* Stats row */
    .hero-stats-row {
      display: flex; align-items: center; gap: 0;
      border-top: 1px solid rgba(169,141,94,.2); padding-top: 28px;
      animation: fadeUp .7s .9s ease both;
      opacity: 0; animation-fill-mode: both;
    }
    .hsr-item { padding: 0 28px 0 0; }
    .hsr-item:first-child { padding-left: 0; }
    .hsr-num {
      font-family: 'Playfair Display', serif;
      font-size: 36px; font-weight: 800;
      color: var(--gold); line-height: 1;
      display: flex; align-items: baseline; gap: 2px;
    }
    .hsr-label { font-size: 9.5px; color: rgba(255,255,255,.4); letter-spacing: 2px; text-transform: uppercase; margin-top: 5px; }
    .hsr-divider { width: 1px; height: 44px; background: rgba(169,141,94,.25); margin-right: 28px; flex-shrink: 0; }

    /* ── RIGHT: IMAGE PANEL ── */
    /* ── RIGHT IMAGE PANEL ── */
    .hero-img-col {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      padding: 40px 20px 40px 10px;
      animation: fadeIn 1s .3s ease both;
      opacity: 0; animation-fill-mode: both;
    }

    /* Left blend */
    .hero-img-col::before {
      content: '';
      position: absolute; top: 0; left: 0; bottom: 0;
      width: 60px;
      background: linear-gradient(to right, #f8f8f6, transparent);
      z-index: 4; pointer-events: none;
    }

    /* Bottom fade */
    .hero-img-col::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 80px;
      background: linear-gradient(to top, rgba(248,248,246,.8) 0%, transparent 100%);
      z-index: 4; pointer-events: none;
    }

    .hero-img-bg-shape { display: none; }

    /* Large decorative ring behind frame */
    .hero-img-col .img-bg-circle {
      position: absolute;
      width: 440px; height: 440px; border-radius: 50%;
      border: 1px solid rgba(169,141,94,.07);
      top: 50%; left: 50%; transform: translate(-50%, -50%);
      z-index: 0; pointer-events: none;
    }
    .hero-img-col .img-bg-circle::before {
      content: '';
      position: absolute; inset: 28px; border-radius: 50%;
      border: 1px dashed rgba(169,141,94,.05);
    }

    /* ── IMAGE FRAME ── */
    .hero-img-box {
      position: relative;
      width: 100%; max-width: 360px;
      aspect-ratio: 3/4;
      z-index: 2; flex-shrink: 0;
    }

    /* Outer subtle ring */
    .hero-img-box::before {
      content: '';
      position: absolute; inset: -14px;
      border: 1px solid rgba(169,141,94,.18);
      border-radius: 4px; z-index: 0;
    }

    /* Gold inner border */
    .hero-img-box::after {
      content: '';
      position: absolute; inset: -3px;
      border: 1.5px solid rgba(169,141,94,.5);
      border-radius: 2px; z-index: 5;
      pointer-events: none;
    }

    /* Decorative gold corners */
    .img-corner-tl, .img-corner-br, .img-corner-tr, .img-corner-bl {
      position: absolute; width: 26px; height: 26px; z-index: 6;
    }
    .img-corner-tl { top: -8px; left: -8px; border-top: 2.5px solid var(--gold); border-left: 2.5px solid var(--gold); }
    .img-corner-br { bottom: -8px; right: -8px; border-bottom: 2.5px solid var(--gold); border-right: 2.5px solid var(--gold); }
    .img-corner-tr { top: -8px; right: -8px; width: 16px; height: 16px; border-top: 1.5px solid rgba(169,141,94,.45); border-right: 1.5px solid rgba(169,141,94,.45); }
    .img-corner-bl { bottom: -8px; left: -8px; width: 16px; height: 16px; border-bottom: 1.5px solid rgba(169,141,94,.45); border-left: 1.5px solid rgba(169,141,94,.45); }

    /* Vertical gold tag on right side */
    .img-tag {
      position: absolute; top: 20px; right: -36px;
      background: var(--gold); color: #fff;
      font-size: 8.5px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      padding: 10px 8px;
      writing-mode: vertical-rl;
      z-index: 6;
      box-shadow: 3px 3px 16px rgba(0,0,0,.35);
    }

    /* Actual image */
    .hero-img-box img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: top center;
      display: block; border-radius: 1px;
      position: relative; z-index: 2;
    }

    /* Gold shimmer overlay */
    .img-overlay {
      position: absolute; inset: 0; z-index: 3;
      background: linear-gradient(160deg, rgba(169,141,94,.07) 0%, transparent 45%, rgba(169,141,94,.04) 100%);
      border-radius: 1px; pointer-events: none;
    }

    /* Placeholder */
    .hero-img-box-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 14px;
      background: linear-gradient(160deg, #ede4d3 0%, #dfd0b8 100%);
      border-radius: 1px; position: relative; z-index: 2;
    }
    .hero-img-box-placeholder .fa { font-size: 80px; color: rgba(169,141,94,.2); }
    .hero-img-box-placeholder p { font-size: 10px; letter-spacing: 3px; color: rgba(169,141,94,.3); text-transform: uppercase; }

    /* Doctor name card — bottom overlay on image */
    .hero-img-namecard {
      position: absolute; bottom: 0; left: 0; right: 0;
      z-index: 4; padding: 28px 30px;
      background: linear-gradient(to top, rgba(10,7,3,.95) 0%, transparent 100%);
      display: flex; align-items: flex-end; justify-content: space-between;
    }
    .hinc-name {
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 700; color: #fff; line-height: 1.2;
    }
    .hinc-title { font-size: 11px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }
    .hinc-badge {
      background: var(--gold);
      color: #fff; padding: 8px 16px;
      font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
      display: flex; align-items: center; gap: 6px;
    }

    /* Floating exp badge */
    .hero-exp-badge {
      position: absolute; top: 36px; left: -20px; z-index: 5;
      background: var(--gold);
      color: #fff; border-radius: 4px;
      padding: 14px 18px; text-align: center;
      box-shadow: 0 8px 30px rgba(0,0,0,.4);
      animation: floatBadge 3s ease-in-out infinite;
    }
    .hero-exp-badge .exp-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; line-height: 1; }
    .hero-exp-badge .exp-txt { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .9; margin-top: 3px; }

    /* Award badge */
    .hero-award-badge {
      position: absolute; top: 36px; right: 20px; z-index: 5;
      width: 72px; height: 72px; border-radius: 50%;
      background: #0d0a06;
      border: 2px solid var(--gold);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      box-shadow: 0 6px 24px rgba(0,0,0,.5);
      animation: spinIn .8s 1s cubic-bezier(.16,1,.3,1) both;
    }
    .hero-award-badge .fa { color: var(--gold); font-size: 18px; }
    .hero-award-badge span { color: #fff; font-size: 8px; letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; text-align: center; line-height: 1.2; }

    /* Info card - unused in new design, hide */
    .hero-info-card { display: none; }

    /* ── SERVICES STRIP ── */
    .services-strip { background: var(--gold); display: grid; grid-template-columns: repeat(6, 1fr); }
    .ssi { padding: 20px 12px; text-align: center; border-right: 1px solid rgba(255,255,255,.2); cursor: pointer; transition: background .3s; color: #fff; }
    .ssi:last-child { border-right: none; }
    .ssi:hover { background: rgba(0,0,0,.15); }
    .ssi .fa { font-size: 22px; margin-bottom: 8px; display: block; }
    .ssi span { font-size: 11.5px; font-weight: 500; letter-spacing: .4px; }

    /* ── SECTION HEADER ── */
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
    .section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 44px); font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
    .section-title span { color: var(--gold); }
    .gold-bar { width: 48px; height: 3px; background: var(--gold); margin: 0 auto 18px; }
    .section-desc { color: var(--muted); font-size: 15px; max-width: 540px; margin: 0 auto; }

    /* ── ABOUT ── */
    .ulockd-about { background: var(--light); }
    .about-layout { display: grid; grid-template-columns: 360px 1fr; gap: 70px; align-items: flex-start; }
    .aboutimg { position: relative; }
    .about-img-inner { width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg, #ede4d3 0%, #dfd0b8 100%); border-radius: 200px 200px 0 0; border: 2px solid var(--gold); border-bottom: 14px solid var(--gold); overflow: hidden; display: flex; align-items: flex-end; justify-content: center; }
    .about-img-inner img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
    .about-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--gold); padding-bottom: 20px; }
    .about-img-placeholder .fa { font-size: 80px; opacity: .3; }
    .about-img-placeholder p { font-size: 13px; opacity: .6; }

    .about-degree-strip {
      margin-top: 20px;
    }
    .degree-line {
      font-size: 13px;
      color: #555;
      line-height: 1.9;
      margin: 0;
      padding: 0;
      background: none;
      border: none;
      list-style: none;
    }

    .ankitsharma { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--dark); margin-bottom: 4px; line-height: 1.15; }
    .about-sub { color: var(--gold); font-size: 13px; letter-spacing: .8px; margin-bottom: 20px; }
    .about-quals { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
    .qual-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: #555; line-height: 1.5; }
    .qual-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--gold-pale); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
    .qual-icon .fa { font-size: 9px; color: var(--gold); }
    .about-divider { width: 60px; height: 3px; background: var(--gold); margin: 22px 0; }
    .about-content p { margin-bottom: 14px; }
    .about-tags-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
    .atag { border: 1px solid var(--gold); color: var(--gold); font-size: 11.5px; letter-spacing: .8px; padding: 6px 16px; text-transform: uppercase; transition: all .3s; cursor: default; }
    .atag:hover { background: var(--gold); color: #fff; }

    /* ── TREATMENTS ── */
    .treatments-section { background: var(--light); }
    .treatments-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px; }
    .treat-card { background: #fff; padding: 36px 22px; text-align: center; cursor: pointer; transition: all .3s; position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: 2px; }
    .treat-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform .3s; }
    .treat-card:hover { background: var(--gold-pale); box-shadow: 0 8px 28px rgba(169,141,94,.15); transform: translateY(-3px); }
    .treat-card:hover::after { transform: scaleX(1); }
    .treat-card:hover .treat-icon { background: var(--gold); color: #fff; border-color: var(--gold); }
    .treat-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 26px; color: var(--gold); border: 1px solid var(--border); transition: all .3s; }
    .treat-card h4 { font-size: 14.5px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
    .treat-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin: 0; }

    /* ── WHY CHOOSE — CHANGED BACKGROUND ── */
    .why-section {
      /* CHANGED: Dark charcoal/black instead of gold */
      background: #1a1208;
      padding: 90px 0; position: relative; overflow: hidden;
    }
    .why-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 10% 20%, rgba(169,141,94,.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(169,141,94,.10) 0%, transparent 50%);
    }
    /* Gold geometric pattern overlay */
    .why-section::after {
      content: '';
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23a98d5e' stroke-opacity='0.07' stroke-width='1'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 60px 60px;
    }
    .why-section .section-title { color: #fff; }
    .why-section .section-eyebrow { color: var(--gold-light); }
    .why-section .gold-bar { background: var(--gold); }
    .why-section .section-desc { color: rgba(255,255,255,.65); }
    .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; position: relative; z-index: 1; }
    .why-card {
      background: rgba(169,141,94,.08);
      border: 1px solid rgba(169,141,94,.25);
      padding: 36px 26px; transition: all .3s; cursor: pointer;
      position: relative; overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: scaleX(0); transition: transform .4s;
    }
    .why-card:hover { background: rgba(169,141,94,.15); transform: translateY(-4px); border-color: rgba(169,141,94,.45); }
    .why-card:hover::before { transform: scaleX(1); }
    .why-card-icon { font-size: 30px; color: var(--gold); margin-bottom: 16px; display: block; }
    .why-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 10px; }
    .why-card p { color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.75; margin: 0; }

    /* ── TESTIMONIALS ── */
    .testimonial-section { background: var(--dark); padding: 90px 0; position: relative; overflow: hidden; }
    .testimonial-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(169,141,94,.12) 0%, transparent 60%); }
    .testimonial-section .section-title { color: #fff; }
    .testimonial-section .section-eyebrow { color: var(--gold-light); }
    .testimonial-section .gold-bar { background: var(--gold); }
    .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; position: relative; z-index: 1; }
    .testi-card { background: rgba(255,255,255,.04); border: 1px solid rgba(169,141,94,.2); padding: 34px 28px; transition: border-color .3s; }
    .testi-card:hover { border-color: var(--gold); }
    .testi-quote { font-size: 50px; line-height: 1; color: var(--gold); opacity: .4; font-family: 'Playfair Display', serif; margin-bottom: 8px; }
    .testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; }
    .testi-card p { color: #ccc; font-size: 13.5px; line-height: 1.8; margin-bottom: 22px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; flex-shrink: 0; }
    .testi-name { font-size: 14px; font-weight: 600; color: #fff; }
    .testi-loc { font-size: 12px; color: #888; }

    /* ── CONTACT STRIP ── */
    .contact-strip { background: linear-gradient(135deg, #050d1a 0%, #0a1628 100%); padding: 80px 0; position: relative; overflow: hidden; }
    .contact-strip::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(169,141,94,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(169,141,94,.07) 1px, transparent 1px); background-size: 50px 50px; }
    .contact-strip::after { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(169,141,94,.15) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
    .contact-strip-inner { position: relative; z-index: 1; text-align: center; }
    .contact-strip .cs-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; display: block; }
    .contact-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 46px); color: #fff; font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
    .contact-strip h2 span { color: var(--gold); font-style: italic; }
    .contact-strip .cs-sub { color: #aaa; font-size: 15px; line-height: 1.7; max-width: 500px; margin: 0 auto 36px; }
    .contact-strip .cs-divider { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 32px; }
    .cs-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
    .btn-gold-lg { background: var(--gold); color: #fff; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; padding: 17px 40px; border: 2px solid var(--gold); cursor: pointer; transition: all .3s; display: inline-flex; align-items: center; gap: 10px; font-family: 'DM Sans', sans-serif; font-weight: 500; }
    .btn-gold-lg:hover { background: #8a7246; border-color: #8a7246; color: #fff; }
    .btn-outline-white { background: transparent; color: #fff; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; padding: 17px 40px; border: 2px solid rgba(255,255,255,.3); cursor: pointer; transition: all .3s; display: inline-flex; align-items: center; gap: 10px; font-family: 'DM Sans', sans-serif; font-weight: 500; }
    .btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

    /* ── FOOTER ── */
    section.ulockd-footer2 { background: #fff; border-top: 3px dashed var(--gold); padding: 60px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
    .footer-fst-col .footer-logo { margin-bottom: 18px; }
    .footer-logo-img {
      height: 70px;
      width: auto;
      max-width: 200px;
      object-fit: contain;
      display: block;
    }
    .footer-fst-col p.color-black33 { font-size: 13px; line-height: 1.85; color: #555; }
    ul.footer-font-icon.style2 { display: flex; gap: 8px; margin-top: 20px; padding: 0; }
    ul.footer-font-icon.style2 li { padding: 0; }
    ul.footer-font-icon.style2 a { border: 1px solid #ddd; color: #777; font-size: 14px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; transition: all .3s; }
    ul.footer-font-icon.style2 a:hover { border-color: var(--gold); color: var(--gold); }
    .footer-qlink h3 { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); margin: 0 0 22px; position: relative; padding-bottom: 12px; }
    .footer-qlink h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 2px; background: var(--gold); }
    .footer-qlink .list-unstyled { display: flex; flex-direction: column; gap: 2px; }
    .footer-qlink .list-unstyled a { font-size: 13px; color: #555; display: flex; align-items: center; gap: 8px; transition: all .3s; line-height: 2em; }
    .footer-qlink .list-unstyled .fa { color: var(--gold); font-size: 11px; }
    .footer-qlink .list-unstyled a:hover { color: var(--gold); padding-left: 6px; }
    .footer-contact h3 { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); margin: 0 0 22px; position: relative; padding-bottom: 12px; }
    .footer-contact h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 2px; background: var(--gold); }
    .footer-contact h4 { color: var(--red); font-weight: 700; font-size: 14px; margin-bottom: 6px; line-height: 1.4; }
    .footer-contact p { font-size: 13px; color: #555; line-height: 1.8; }
    .footer-contact a { color: #555; font-size: 13px; display: block; margin-top: 10px; transition: color .3s; line-height: 2em; }
    .footer-contact a:hover { color: var(--gold); }
    .footer-contact .fa { color: var(--gold); margin-right: 6px; }
    .ulockd-l2-copy-right { background: #000; color: #888; text-align: center; font-size: 13px; padding: 16px 20px; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp    { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:translateY(0); } }
    @keyframes fadeIn    { from { opacity:0; } to { opacity:1; } }
    @keyframes slideInLeft { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
    @keyframes slideInUp { from { transform:translateY(100%); } to { transform:translateY(0); } }
    @keyframes expandWidth { from { width:0; } to { width:72px; } }
    @keyframes ornFloat  { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
    @keyframes floatBadge { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
    @keyframes spinIn    { from { opacity:0; transform:scale(.4) rotate(-90deg); } to { opacity:1; transform:scale(1) rotate(0); } }
    @keyframes blobFloat { 0%,100% { transform:scale(1) translate(0,0); } 50% { transform:scale(1.06) translate(8px,-10px); } }
    @keyframes pulseDot  { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.7); } }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .hero-inner { grid-template-columns: 1fr 320px; }
      .treatments-row { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .services-strip { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      .header-top-two .container { flex-direction: column; align-items: flex-start; gap: 6px; }
      .main-header-nav-two .container { flex-direction: column; align-items: flex-start; }
      .nav-ul { display: none; }
      .hero-inner { grid-template-columns: 1fr; }
      .hero-left { padding: 50px 20px !important; }
      .hero-img-col { display: none; }
      .about-layout { grid-template-columns: 1fr; }
      .aboutimg { max-width: 300px; }
      .treatments-row { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr; gap: 30px; }
      .services-strip { grid-template-columns: repeat(2, 1fr); }
      .hero-stats-row { gap: 0; flex-wrap: wrap; }
      .hsr-item { padding: 0 16px 0 0; }
    }