/* ============ AR TOKENS ============ */
:root{
  --ar-bg:#0b0b0d;
  --ar-bg-alt:#141416;
  --ar-bg-card:#1a1a1c;
  --ar-gold:#c9a659;
  --ar-gold-soft:#e4cd8f;
  --ar-ivory:#f3ede0;
  --ar-muted:#8f8a80;
  --ar-line:#2a2822;
  --ar-display: 'Cormorant Garamond', serif;
  --ar-body: 'Jost', sans-serif;
  --cs-bg: #0e0d0c;
  --cs-bg-alt: #161412;
  --cs-card: #1a1815;
  --cs-gold: #c9a24b;
  --cs-gold-soft: #e8d29a;
  --cs-text: #f3efe8;
  --cs-text-muted: #b8b0a4;
  --cs-border: rgba(201, 162, 75, 0.25);
  --cs-radius: 2px;
  --cs-font-display: Georgia, 'Times New Roman', serif;
  --cs-font-body: 'Helvetica Neue', Arial, sans-serif;
   --srm-black:#15130f;
    --srm-charcoal:#1e1b16;
    --srm-cream:#f6f1e6;
    --srm-gold:#b08d4f;
    --srm-gold-soft:#d9c6a0;
    --srm-line:rgba(176,141,79,0.25);
    --srm-muted:#8f8a80;
}

*{margin:0;padding:0;box-sizing:border-box;}
body{
  background:var(--ar-bg);
  color:var(--ar-ivory);
  font-family:var(--ar-body);
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
img{max-width:100%;display:block;}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit;}

.ar-section{
  position:relative;
  width:100%;
}

/* ============ HEADER ============ */
.ar-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 48px;
  background:linear-gradient(to bottom, rgb(11 11 13 / 38%), rgba(11, 11, 13, 0));
  transition:background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.ar-header.ar-scrolled{
  background:rgba(11,11,13,0.92);
  backdrop-filter:blur(10px);
  padding:14px 48px;
  box-shadow:0 1px 0 var(--ar-line);
}

.ar-logo{
  display:flex;
  align-items:center;
  width:235px;               /* base logo width */
  flex-shrink:0;             /* never collapse in header */
  line-height:0;             /* remove extra line-space from inline img */
}
.ar-logo img{
  width:100%;
  height:auto;
  object-fit:contain;
  display:block;
}

/* ============ NAV ============ */
.ar-nav{
  display:flex;
  align-items:center;
  gap:38px;
}
.ar-nav-item{
  position:relative;
}
.ar-nav-item > a{
  font-size: 14px;
  font-weight: 500;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--ar-ivory);
  padding:10px 0;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:color .25s ease;
}
.ar-nav-item > a:hover,
.ar-nav-item.ar-active > a{
  color:var(--ar-gold);
}
.ar-caret{
  width:7px;height:7px;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform:rotate(45deg);
  margin-top:-3px;
  transition:transform .25s ease;
}
.ar-nav-item:hover .ar-caret{
  transform:rotate(225deg);
  margin-top:3px;
}

/* underline sweep */
.ar-nav-item > a::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  height:1px;
  width:0;
  background:var(--ar-gold);
  transition:width .3s ease;
}
.ar-nav-item > a:hover::after{width:100%;}

/* ---- Simple dropdown (Academy) ---- */
.ar-dropdown{
  position:absolute;
  top:100%;left:50%;
  transform:translateX(-50%) translateY(8px);
  min-width:220px;
  background:var(--ar-bg-card);
  border:1px solid var(--ar-line);
  padding:14px 0;
  opacity:0;
  visibility:hidden;
  transition:opacity .3s ease, transform .3s ease;
  z-index:50;
}
.ar-nav-item:hover .ar-dropdown{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}
.ar-dropdown li a{
  display:block;
  padding:10px 24px;
  font-size:15px;
  font-weight: 500;
  letter-spacing:1px;
  color:var(--ar-muted);
  transition:color .2s ease, padding-left .2s ease;
}
.ar-dropdown li a:hover{
  color:var(--ar-gold-soft);
  padding-left:30px;
}

/* ---- Mega menu (Services) ---- */
.ar-mega{
  position:fixed;
  top:0;left:0;right:0;
  top:76px;
  background:#1a1a1c94;
  border-top:1px solid var(--ar-line);
  border-bottom:1px solid var(--ar-gold);
  padding:44px 48px;
  display:grid;
  grid-template-columns:repeat(4,1fr) 1.2fr;
  gap:36px;
  opacity:0;
  visibility:hidden;
  transform:translateY(-10px);
  transition:opacity .3s ease, transform .3s ease, visibility .3s;
  z-index:40;
}
.ar-nav-item.ar-has-mega:hover .ar-mega{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.ar-mega-col h4{
  font-family:'Jost';
  font-size:18px;
  color:var(--ar-gold);
  font-weight:600;
  letter-spacing:.5px;
  margin-bottom:16px;
  padding-bottom:10px;
  border-bottom:1px solid var(--ar-line);
}
.ar-mega-col li a{
  display:block;
  font-size: 16px;
  font-weight: 500;
  color:var(--ar-muted);
  letter-spacing:.5px;
  padding:7px 0;
  transition:color .2s ease, transform .2s ease;
}
.ar-mega-col li a:hover{
  color:var(--ar-ivory);
  transform:translateX(4px);
}
.ar-mega-feature{
  position:relative;
  border:1px solid var(--ar-line);
  overflow:hidden;
  min-height:220px;
  background:
    radial-gradient(circle at 30% 20%, rgba(201,166,89,.25), transparent 55%),
    linear-gradient(160deg,#232019,#0b0b0d 70%);
  display:flex;
  align-items:flex-end;
  padding:20px;
}
.ar-mega-feature h5{
  font-family:var(--ar-display);
  font-size:20px;
  color:var(--ar-ivory);
  font-weight:600;
}
.ar-mega-feature span{
  display:block;
  font-size:11px;
  color:var(--ar-gold-soft);
  letter-spacing:2px;
  margin-top:6px;
}

/* ============ HAMBURGER (mobile) ============ */
.ar-hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  width:26px;
  z-index:1100;
}
.ar-hamburger span{
  height:1.5px;
  width:100%;
  background:var(--ar-ivory);
  transition:transform .3s ease, opacity .3s ease, background .3s ease;
}
.ar-hamburger.ar-open span:nth-child(1){transform:translateY(6.5px) rotate(45deg);background:var(--ar-gold);}
.ar-hamburger.ar-open span:nth-child(2){opacity:0;}
.ar-hamburger.ar-open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg);background:var(--ar-gold);}

/* ============ MOBILE NAV OVERLAY ============ */
.ar-mobile-nav{
  position:fixed;
  inset:0;
  background:var(--ar-bg);
  z-index:1050;
  padding:110px 32px 40px;
  transform:translateX(100%);
  transition:transform .4s cubic-bezier(.77,0,.18,1);
  overflow-y:auto;
}
.ar-mobile-nav.ar-open{transform:translateX(0);}

.ar-mobile-close{
  position:absolute;
  top:26px;right:28px;
  width:38px;height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--ar-line);
  border-radius:50%;
  transition:border-color .25s ease, transform .25s ease, background .25s ease;
}
.ar-mobile-close:hover{
  border-color:var(--ar-gold);
  background:var(--ar-bg-alt);
  transform:rotate(90deg);
}
.ar-mobile-close svg{
  width:16px;height:16px;
  stroke:var(--ar-ivory);
  stroke-width:1.6;
  fill:none;
}
.ar-mobile-close:hover svg{stroke:var(--ar-gold);}
.ar-mobile-item{
  border-bottom:1px solid var(--ar-line);
}
.ar-mobile-item > a,
.ar-mobile-item > button{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
  text-align:left;
  padding:18px 2px;
  font-family:'Jost';
  font-size:20px;
  letter-spacing:1px;
  color:var(--ar-ivory);
}
.ar-mobile-item .ar-caret{margin-top:0;}
.ar-mobile-item.ar-mopen .ar-caret{transform:rotate(225deg);}
.ar-mobile-sub{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.ar-mobile-item.ar-mopen .ar-mobile-sub{max-height:600px;}
.ar-mobile-sub li a{
  display:block;
  padding:10px 12px 10px 18px;
  font-size:13.5px;
  color:var(--ar-muted);
  letter-spacing:.5px;
  border-left:1px solid var(--ar-gold);
  margin-bottom:2px;
}
.ar-mobile-sub-title{
  font-size:10.5px;
  letter-spacing:2px;
  color:var(--ar-gold);
  padding:14px 12px 4px 18px;
  text-transform:uppercase;
}

/* ============ HERO SLIDER ============ */
.ar-hero{
  position:relative;
  /* height:100vh; */
  min-height:750px;
  /* min-height:560px; */
  overflow:hidden;
}
.ar-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity 1.1s ease;
  display:flex;
  align-items:center;
  padding:0 48px;
}
.ar-slide.ar-active{opacity:1;visibility:visible;}

/* real <img> tag as slide background, RWD via object-fit */
.ar-slide-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:0;
}
.ar-slide-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg, rgba(11,11,13,.90) 15%, rgba(11,11,13,.45) 60%, rgba(11,11,13,.78));
}
.ar-slide-content{
  max-width:640px;
  position:relative;
  z-index:2;
}
.ar-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing:4px;
  color:var(--ar-gold);
  text-transform:uppercase;
  /* margin-bottom:22px; */
}
.ar-eyebrow::before{
  content:'';
  width:34px;height:1px;
  background:var(--ar-gold);
}
.ar-slide-content h1{
  font-family: inherit;
  font-size: 50px;
  font-weight: 600;
  line-height:1.25;
  color:var(--ar-ivory);
  margin-bottom:22px;
}
.ar-slide-content h1 em{
  font-style:italic;
  color:var(--ar-gold-soft);
}
.ar-slide-content p{
  font-size:16px;
  line-height:1.8;
  color:#fff;
  max-width:460px;
  margin-bottom:34px;
}

.ar-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 15px;
  font-size:12px;
  font-weight: 500;
  letter-spacing:0.5px;
  text-transform:uppercase;
  border:1px solid var(--ar-gold);
  color:var(--ar-ivory);
  transition:background .3s ease, color .3s ease;
}
.ar-btn:hover{background:var(--ar-gold);color:#0b0b0d;}
.ar-btn-solid{
  background:var(--ar-gold);
  color:#0b0b0d;
  border-color:var(--ar-gold);
}
.ar-btn-solid:hover{background:var(--ar-gold-soft);border-color:var(--ar-gold-soft);}

/* signature thread line */
.ar-thread{
  position:absolute;
  left:0;
  bottom:120px;
  height:1px;
  width:0;
  background:linear-gradient(90deg, transparent, var(--ar-gold) 20%, var(--ar-gold) 80%, transparent);
  animation:ar-draw-thread 2.6s ease forwards .4s;
  z-index:2;
}
@keyframes ar-draw-thread{
  0%{width:0;}
  100%{width:100%;}
}

/* dots */
.ar-dots{
  position:absolute;
  bottom:38px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:14px;
  z-index:5;
}
.ar-dot{
  width:11px;height:11px;
  border-radius:50%;
  border:1px solid var(--ar-gold);
  position:relative;
  transition:border-color .3s ease;
}
.ar-dot::after{
  content:'';
  position:absolute;
  inset:2.5px;
  border-radius:50%;
  background:var(--ar-gold);
  transform:scale(0);
  transition:transform .3s ease;
}
.ar-dot.ar-active::after{transform:scale(1);}

.ar-hero-scroll{
  position:absolute;
  right:48px;bottom:44px;
  writing-mode:vertical-rl;
  font-size:15px;
  font-weight: 500;
  letter-spacing:3px;
  color:var(--ar-muted);
  display:flex;
  align-items:center;
  gap:14px;
  z-index:5;
}
.ar-hero-scroll::after{
  content:'';
  width:1px;height:44px;
  background:var(--ar-gold);
}

/* ============ SERVICE TEASER (like reference layout) ============ */
.ar-teaser-wrap{
  padding:120px 48px 100px;
  display:flex;
  justify-content:flex-end;
}
.ar-teaser{
  display:flex;
  max-width:900px;
  width:100%;
  border:1px solid var(--ar-line);
}
.ar-teaser-img{
  flex:1 1 45%;
  min-height:340px;
  position:relative;
  overflow:hidden;
}
.ar-teaser-img img{
  width:100%;
  height:100%;
  min-height:340px;
  object-fit:cover;
  object-position:center;
  display:block;
}
.ar-teaser-img::after{
  content:'✂';
  position:absolute;
  bottom:22px;left:22px;
  font-size:26px;
  color:var(--ar-gold-soft);
  opacity:.85;
  z-index:2;
  text-shadow:0 2px 8px rgba(0,0,0,.6);
}
.ar-teaser-card{
  flex:1 1 55%;
  background:var(--ar-bg-card);
  padding:44px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-left:3px solid var(--ar-gold);
}
.ar-teaser-card .ar-section-num{
  font-family:var(--ar-display);
  font-size:13px;
  color:var(--ar-gold);
  letter-spacing:3px;
  margin-bottom:12px;
}
.ar-teaser-card h3{
  font-family:var(--ar-display);
  font-size:32px;
  font-weight:600;
  margin-bottom:16px;
  color:var(--ar-ivory);
}
.ar-teaser-card p{
  font-size:14px;
  line-height:1.85;
  color:var(--ar-muted);
  margin-bottom:26px;
}

/* ============ SERVICES GRID SECTION ============ */
.ar-services{
  padding:20px 48px 20px;
  background: #101010;
}
.ar-services-head{
  text-align:center;
  max-width:600px;
  margin:0 auto 56px;
}
.ar-services-head .ar-eyebrow{justify-content:center;}
.ar-services-head .ar-eyebrow::before{display:none;}
.ar-services-head h2{
  font-family: 'Jost';
    font-size: 40px;
    font-weight: 500;
  color:var(--ar-ivory);
}
.ar-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--ar-line);
  border:1px solid var(--ar-line);
}
.ar-grid-item{
  background:var(--ar-bg);
  padding:44px 28px;
  transition:background .35s ease;
}
.ar-grid-item:hover{background:var(--ar-bg-card);}
.ar-grid-item .ar-section-num{
  font-family:'Jost';
  font-size:17px;
  color:#fbdf1bde;
  letter-spacing:2px;
  margin-bottom:22px;
  display:block;
}
.ar-grid-item h4{
  font-family:'Jost';
  font-size:22px;
  font-weight:500;
  margin-bottom:10px;
  color:var(--ar-ivory);
}
.ar-grid-item p{
  font-size:17px;
  line-height:1.75;
  color:#ffe7b8;
}

/* ============ FOOTER ============ */
.ar-footer{
  padding:60px 48px 26px;
  border-top:1px solid var(--ar-line);
}
.ar-footer-top{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
  margin-bottom:50px;
}
.ar-footer-col h5{
  font-family:var(--ar-display);
  color:var(--ar-gold);
  font-size:15px;
  letter-spacing:1px;
  margin-bottom:18px;
}
.ar-footer-col ul li{margin-bottom:10px;}
.ar-footer-col ul li a{
  font-size:13px;
  color:var(--ar-muted);
  transition:color .2s ease;
}
.ar-footer-col ul li a:hover{color:var(--ar-gold-soft);}
.ar-footer-bottom{
  text-align:center;
  font-size:11.5px;
  letter-spacing:1px;
  color:var(--ar-muted);
  padding-top:24px;
  border-top:1px solid var(--ar-line);
}

/* ============ MOBILE TAP NAVIGATION BAR ============ */
.ar-tabbar{
  display:none;
  position:fixed;
  bottom:0;left:0;right:0;
  z-index:900;
  background:rgba(20,20,22,.97);
  backdrop-filter:blur(10px);
  border-top:1px solid var(--ar-line);
  justify-content:space-around;
  padding:10px 6px 8px;
}
.ar-tab{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
  font-size:10px;
  letter-spacing:.5px;
  color:var(--ar-muted);
  flex:1;
}
.ar-tab.ar-tab-active{color:var(--ar-gold);}
.ar-tab-icon{
  width:19px;height:19px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.ar-tab-icon svg{width:100%;height:100%;stroke:currentColor;fill:none;stroke-width:1.5;}

/* ============ RESPONSIVE ============ */
@media (max-width:991px){
  .ar-header{padding:18px 28px;}
  .ar-header.ar-scrolled{padding:12px 28px;}
  .ar-logo{width:150px;}
  .ar-nav{display:none;}
  .ar-mega{display:none !important;}
  .ar-hamburger{display:flex;}
  .ar-teaser{flex-direction:column;}
  .ar-teaser-wrap{padding:90px 28px 70px;justify-content:center;}
  .ar-teaser-img,.ar-teaser-img img{min-height:260px;}
  .ar-grid{grid-template-columns:repeat(2,1fr);}
  .ar-services{padding:20px 28px 90px;}
  .ar-slide{padding:0 28px;}
  .ar-hero-scroll{display:none;}
}

@media (max-width:767px){
  .ar-hero{min-height:520px;}
  .ar-slide-content h1{font-size:clamp(30px,7vw,44px);}
  .ar-slide-content p{font-size:13.5px;}
  .ar-footer-top{flex-direction:column;gap:30px;}
  .ar-tabbar{display:flex;}
  body{padding-bottom:64px;}
  .ar-dots{bottom:80px;}
}

@media (max-width:575px){
  .ar-header{padding:16px 18px;}
  .ar-header.ar-scrolled{padding:10px 18px;}
  .ar-logo{width:120px;}
  .ar-slide{padding:0 18px;}
  .ar-btn{padding:13px 24px;font-size:10.5px;}
  .ar-teaser-wrap{padding:70px 18px 50px;}
  .ar-teaser-img,.ar-teaser-img img{min-height:200px;}
  .ar-teaser-card{padding:32px 24px;}
  .ar-services{padding:10px 18px 70px;}
  .ar-grid{grid-template-columns:1fr;}
  .ar-mobile-nav{padding:100px 22px 40px;}
  .ar-footer{padding:44px 20px 20px;}
  .ar-dots{bottom:50px;}
}

/*TESTIMONIAL SECTION START*/
/* =====================================================
   SR MIRACLE SALON
   TESTIMONIAL + CONSULTATION SECTION
   BLACK & GOLD LUXURY THEME
===================================================== */

.srmc-review-section {
    width: 100%;
    padding: 15px 0 20px;

    background:#101010;

    color: #ffffff;

    overflow: hidden;
}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.srmc-review-container {
    width: 90%;
    max-width: 1180px;

    margin: auto;
}


/* =====================================================
   HEADING
===================================================== */

.srmc-review-heading {
    text-align: center;

    margin-bottom: 55px;
}

.srmc-small-title {
    display: inline-block;

    margin-bottom: 12px;

    color: #d4af37;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 4px;
}

.srmc-review-heading h2 {
    margin: 0;

    color: #f5f5f5;

    font-family: 'Jost';

    font-size: clamp(36px, 4vw, 55px);
    font-weight: 400;

    line-height: 1.1;
}

.srmc-review-heading h2 em {
    color: #d4af37;
    font-style: italic;
}

.srmc-review-heading p {
    margin: 18px 0 0;

    color: #fffefe;

    font-size: 20px;
}


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

.srmc-review-grid {
    display: grid;

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

    gap: 18px;

    align-items: start;
}


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

.srmc-review-card {
    position: relative;

    min-height: 270px;

    padding: 28px 25px 24px;

    border-radius: 9px;

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

    background:
        linear-gradient(
            145deg,
            #151515,
            #0c0c0c
        );

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.35);

    overflow: hidden;

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


/* GOLD GLOW */

.srmc-review-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -110px;
    right: -70px;

    border-radius: 50%;

    background: rgba(212, 175, 55, 0.13);

    filter: blur(35px);

    pointer-events: none;
}


.srmc-review-card:hover {
    transform: translateY(-8px);

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

    box-shadow:
        0 20px 50px
        rgba(212, 175, 55, 0.08);
}


/* =====================================================
   DIFFERENT CARD HEIGHTS
===================================================== */

.srmc-card-one {
    margin-top: 32px;
}

.srmc-card-two {
    margin-top: 0;
}

.srmc-card-three {
    margin-top: 32px;
}


/* =====================================================
   STARS
===================================================== */

.srmc-stars {
    margin-bottom: 18px;

    color: #d4af37;

    font-size: 17px;

    letter-spacing: 3px;
}


/* =====================================================
   REVIEW TITLE
===================================================== */

.srmc-review-card h3 {
    max-width: 290px;

    margin: 0 0 14px;

    color: #d4af37;

    font-family:'Jost';

    font-size: 22px;

    font-weight: 400;

    line-height: 1.35;
}


/* =====================================================
   REVIEW TEXT
===================================================== */

.srmc-review-card p {
    margin: 0;

    color: #fff;

    font-size: 18px;

    line-height: 1.75;
}


/* =====================================================
   CLIENT
===================================================== */

.srmc-client {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 22px;
}

.srmc-client-circle {
    width: 36px;
    height: 36px;

    display: flex;

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

    border-radius: 50%;

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

    color: #000000;

    font-size: 13px;
    font-weight: 700;
}

.srmc-client div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.srmc-client strong {
    color: #ffffff;

    font-size: 17px;
}

.srmc-client small {
    color: #777777;

    font-size: 10px;
}


/* =====================================================
   CONSULTATION BOX
===================================================== */

.srmc-consultation {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 300px;

    margin-top: 65px;

    padding: 55px 80px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #151515 0%,
            #101010 60%,
            #141414 100%
        );

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

    overflow: hidden;
}


/* Gold vertical accent */

.srmc-consultation::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

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


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

.srmc-consult-content {
    position: relative;

    z-index: 3;

    width: 57%;
}

.srmc-cta-label {
    display: block;

    margin-bottom: 12px;

    color: #d4af37;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;
}

.srmc-consult-content h2 {
    margin: 0 0 15px;

    color: #f5f5f5;

    font-family:
        'Jost';

    font-size: clamp(34px, 4vw, 48px);

    font-weight: 400;

    line-height: 1.1;
}

.srmc-consult-content p {
    max-width: 520px;

    margin: 0 0 25px;

    color: #888888;

    font-size: 13px;

    line-height: 1.8;
}


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

.srmc-buttons {
    display: flex;

    flex-direction: column;

    gap: 10px;

    width: 245px;
}

.srmc-gold-btn,
.srmc-dark-btn {
    height: 42px;

    display: flex;

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

    gap: 8px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    transition: .3s ease;
}


/* GOLD BUTTON */

.srmc-gold-btn {
    color: #050505;

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

    box-shadow:
        0 8px 20px
        rgba(212, 175, 55, 0.12);
}

.srmc-gold-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 28px
        rgba(212, 175, 55, 0.25);
}


/* DARK BUTTON */

.srmc-dark-btn {
    color: #dddddd;

    background: #292929;

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

.srmc-dark-btn:hover {
    color: #d4af37;

    border-color: #d4af37;

    transform: translateY(-3px);
}


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

.srmc-image-wrap {
    position: absolute;

    right: 20px;
    top: 50%;

    width: 325px;
    height: 325px;

    transform:
        translateY(-50%);

    z-index: 2;
}


/* Gold ring */

.srmc-image-ring {
    position: absolute;

    inset: -7px;

    border-radius: 50%;

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

    z-index: -1;
}


.srmc-consult-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    border: 5px solid #111111;

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

        0 20px 50px
        rgba(0,0,0,.6);
}


/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1199px) {

    .srmc-review-container {
        width: 92%;
    }

    .srmc-consultation {
        padding: 50px 55px;
    }

    .srmc-image-wrap {
        width: 285px;
        height: 285px;

        right: 25px;
    }

    .srmc-consult-content {
        width: 60%;
    }
}


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

@media (max-width: 991px) {

    .srmc-review-section {
        padding: 70px 0 80px;
    }

    .srmc-review-grid {
        grid-template-columns: 1fr 1fr;

        gap: 18px;
    }

    .srmc-card-one,
    .srmc-card-three {
        margin-top: 0;
    }

    .srmc-card-three {
        grid-column: 1 / -1;
    }

    .srmc-consultation {
        min-height: 280px;

        padding: 45px 40px;
    }

    .srmc-consult-content {
        width: 58%;
    }

    .srmc-image-wrap {
        width: 245px;
        height: 245px;

        right: 20px;
    }

    .srmc-consult-content h2 {
        font-size: 36px;
    }
}


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

@media (max-width: 767px) {

    .srmc-review-section {
        padding: 60px 0 70px;
    }

    .srmc-review-container {
        width: 90%;
    }

    .srmc-review-heading {
        margin-bottom: 35px;
    }

    .srmc-small-title {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .srmc-review-heading h2 {
        font-size: 34px;
    }

    .srmc-review-heading p {
        font-size: 12px;
    }


    /* Cards */

    .srmc-review-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .srmc-card-three {
        grid-column: auto;
    }

    .srmc-review-card {
        min-height: auto;

        padding: 24px 21px;
    }


    /* Consultation */

    .srmc-consultation {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        margin-top: 45px;

        padding: 35px 25px 0;

        overflow: hidden;
    }

    .srmc-consult-content {
        width: 100%;
    }

    .srmc-consult-content h2 {
        font-size: 34px;
    }

    .srmc-consult-content p {
        font-size: 12px;
    }

    .srmc-buttons {
        width: 100%;
    }


    /* Image */

    .srmc-image-wrap {
        position: relative;

        top: auto;
        right: auto;

        width: 235px;
        height: 235px;

        margin: 35px auto -15px;

        transform: none;

        align-self: center;
    }
}


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

@media (max-width: 400px) {

    .srmc-review-heading h2 {
        font-size: 30px;
    }

    .srmc-review-card h3 {
        font-size: 19px;
    }

    .srmc-consult-content h2 {
        font-size: 30px;
    }

    .srmc-image-wrap {
        width: 205px;
        height: 205px;
    }

    .srmc-consultation {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/*TESTIMONIAL SECTION END*/

/*FOOTER SECTION START*/
/* =========================================
   SR MIRACLE SALON
   BLACK & GOLD LUXURY FOOTER
========================================= */

.srmf-footer {
    width: 100%;
    font-family: "Poppins", Arial, sans-serif;
    color: #ffffff;
    background: #080808;
    overflow: hidden;
}


/* =========================================
   MAIN FOOTER
========================================= */

.srmf-footer-main {
    position: relative;
    padding: 65px 0 55px;

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(212, 175, 55, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(212, 175, 55, 0.07),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #050505 0%,
            #111111 48%,
            #050505 100%
        );
}


/* Decorative circles */

.srmf-footer-main::before {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 50%;

    right: -70px;
    top: -70px;
}

.srmf-footer-main::after {
    content: "";
    position: absolute;

    width: 120px;
    height: 120px;

    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 50%;

    left: -55px;
    bottom: -55px;
}


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

.srmf-footer-container {
    width: 90%;
    max-width: 1280px;
    margin: auto;

    display: grid;

    grid-template-columns:
        1.35fr
        1fr
        .8fr
        1.15fr;

    gap: 55px;

    position: relative;
    z-index: 2;
}


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

.srmf-footer-title {
    position: relative;
    display: inline-block;

    margin: 0 0 25px;
    padding-bottom: 10px;

    font-size: 22px;
    font-weight: 600;
    font-family: 'Jost';

    color: #D4AF37;

    letter-spacing: .3px;
}

.srmf-footer-title::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 42px;
    height: 3px;

    border-radius: 10px;

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


/* =========================================
   ABOUT
========================================= */

.srmf-about-text {
    max-width: 350px;

    margin: 0 0 22px;

    color: #d5d5d5;

    font-size: 18px;
    line-height: 1.9;

    text-align: justify;
}


/* =========================================
   READ MORE
========================================= */

.srmf-read-btn {
    display: inline-flex;

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

    padding: 10px 23px;

    border-radius: 4px;

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

    color: #000000;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}

.srmf-read-btn:hover {
    transform: translateY(-3px);

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


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

.srmf-socials {
    display: flex;

    gap: 12px;

    margin-top: 25px;
}

.srmf-socials a {
    width: 42px;
    height: 42px;

    display: flex;

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

    border-radius: 50%;

    color: #D4AF37;

    background: #151515;

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

    text-decoration: none;

    font-size: 17px;
    font-weight: 600;

    transition: .3s ease;
}

.srmf-socials a:hover {
    color: #000000;

    background: #D4AF37;

    border-color: #D4AF37;

    transform: translateY(-4px);

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


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

.srmf-contact-item {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 20px;
}

.srmf-contact-icon {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: flex;

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

    border-radius: 50%;

    color: #000000;

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

    font-size: 15px;
}

.srmf-contact-item p {
    margin: 5px 0 0;

    color: #d5d5d5;

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================
   QUICK LINKS
========================================= */

.srmf-links {
    margin: 0;
    padding: 0;

    list-style: none;
}

.srmf-links li {
    margin-bottom: 13px;
}

.srmf-links a {
    position: relative;

    display: inline-block;

    color: #d2d2d2;

    text-decoration: none;

    font-size: 18px;

    transition: .3s ease;
}

.srmf-links a::before {
    content: "›";

    margin-right: 8px;

    color: #D4AF37;

    font-weight: bold;
}

.srmf-links a:hover {
    color: #D4AF37;

    transform: translateX(5px);
}


/* =========================================
   SERVICES
========================================= */

.srmf-service-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}

.srmf-service-box {
    min-height: 75px;

    padding: 12px 10px;

    display: flex;

    flex-direction: column;

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

    text-align: center;

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

    border-radius: 6px;

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

    color: #ffffff;

    text-decoration: none;

    transition: .3s ease;
}

.srmf-service-box:hover {
    transform: translateY(-4px);

    border-color: #D4AF37;

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

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

.srmf-service-icon {
    display: block;

    margin-bottom: 7px;

    font-size: 21px;

    color: #D4AF37;
}

.srmf-service-box span:last-child {
    font-size: 16px;

    color: #dddddd;
}


/* =========================================
   BOTTOM FOOTER
========================================= */

.srmf-footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, .20);

    background: #030303;
}

.srmf-footer-bottom-inner {
    width: 90%;
    max-width: 1280px;

    min-height: 65px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.srmf-footer-bottom p {
    margin: 0;
    color: #d5d5d5;
    font-size: 15px;
}

.srmf-footer-bottom strong {
    color: #D4AF37;
}

.srmf-developed a {
    color: #D4AF37;

    font-weight: 600;

    text-decoration: none;

    transition: .3s ease;
}

.srmf-developed a:hover {
    color: #F5D76E;
}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1199px) {

    .srmf-footer-container {
        grid-template-columns:
            1.3fr
            1fr
            .8fr;

        gap: 40px;
    }

    .srmf-services-column {
        grid-column: 1 / -1;
    }

    .srmf-service-list {
        grid-template-columns:
            repeat(5, 1fr);
    }
}


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

@media (max-width: 991px) {

    .srmf-footer-main {
        padding: 50px 0;
    }

    .srmf-footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 40px 30px;
    }

    .srmf-services-column {
        grid-column: auto;
    }

    .srmf-service-list {
        grid-template-columns: 1fr 1fr;
    }

    .srmf-about-text {
        max-width: 100%;
    }

    .srmf-footer-bottom-inner {
        min-height: auto;

        padding: 18px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;
    }
}


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

@media (max-width: 767px) {

    .srmf-footer-main {
        padding: 45px 0 40px;
    }

    .srmf-footer-container {
        width: 88%;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .srmf-footer-title {
        font-size: 20px;

        margin-bottom: 18px;
    }

    .srmf-about-text {
        font-size: 13px;

        line-height: 1.8;
    }

    .srmf-contact-item p {
        font-size: 13px;
    }

    .srmf-links a {
        font-size: 13px;
    }

    .srmf-service-list {
        grid-template-columns: 1fr 1fr;

        gap: 9px;
    }

    .srmf-service-box {
        min-height: 70px;
    }

    .srmf-footer-bottom-inner {
        width: 88%;
    }

    .srmf-footer-bottom p {
        font-size: 11px;

        line-height: 1.7;
    }
}


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

@media (max-width: 400px) {

    .srmf-footer-container {
        width: 90%;
    }

    .srmf-service-list {
        grid-template-columns: 1fr;
    }

    .srmf-service-box {
        min-height: 60px;

        flex-direction: row;

        justify-content: flex-start;

        gap: 12px;

        padding: 10px 15px;
    }

    .srmf-service-icon {
        margin: 0;
    }

    .srmf-socials a {
        width: 38px;
        height: 38px;
    }
}
/*FOOTER SECTION END*/

/*TRANSFORMATION START*/

        /* =====================================================
           SR MIRACLE SALON
           BEFORE / AFTER TRANSFORMATION
           BLACK + GOLD LUXURY THEME
        ===================================================== */

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

        body {
            margin: 0;
            background: #070707;
            font-family: Arial, Helvetica, sans-serif;
        }


        /* =====================================================
           MAIN SECTION
        ===================================================== */

        .srmcs-transform-section {
            width: 100%;
            padding: 95px 0 100px;

            background:#101010;

            color: #ffffff;

            overflow: hidden;
        }


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

        .srmcs-transform-container {
            width: 92%;
            max-width: 1380px;
            margin: auto;
        }


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

        .srmcs-transform-head {
            display: flex;

            align-items: flex-end;
            justify-content: space-between;

            gap: 50px;

            margin-bottom: 55px;
        }


        /* LEFT HEADING */

        .srmcs-heading-left {
            flex: 1;
        }


        .srmcs-eyebrow {
            display: flex;

            align-items: center;

            gap: 16px;

            margin-bottom: 18px;

            color: #d4af37;

            font-size: 11px;

            font-weight: 600;

            letter-spacing: 4px;
        }


        .srmcs-eyebrow i {
            display: block;

            width: 55px;
            height: 1px;

            background: #d4af37;
        }


        .srmcs-heading-left h2 {
            margin: 0;

            font-family:
                Arial,
                Helvetica,
                sans-serif;

            font-size: 50px;

            line-height: .95;

            letter-spacing: -2px;

            font-weight: 800;

            color: #f4f4f4;
        }


        .srmcs-heading-left h2 span {
            display: block;

            color: #d4af37;
        }


        /* RIGHT TEXT */

        .srmcs-heading-right {
            width: 360px;

            padding-bottom: 5px;
        }


        .srmcs-heading-right p {
            margin: 0;

            color: #fff;

            font-size: 13px;

            line-height: 1.9;
        }


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

        .srmcs-transform-grid {
            display: grid;

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

            gap: 18px;
        }


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

        .srmcs-transform-card {
            position: relative;

            background: #101010;

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

            transition: .4s ease;
        }


        .srmcs-transform-card:hover {
            transform: translateY(-7px);

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

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


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

        .srmcs-image-box {
            position: relative;

            width: 100%;

            aspect-ratio: 7 / 6;

            overflow: hidden;

            background: #151515;

            cursor: ew-resize;

            user-select: none;

            -webkit-user-select: none;

            touch-action: none;
        }


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

        .srmcs-before-img {
            position: absolute;

            inset: 0;

            width: 100%;
            height: 100%;

            display: block;

            object-fit: cover;

            filter: saturate(.85);

            pointer-events: none;
        }


        /* =====================================================
           AFTER IMAGE WRAPPER
        ===================================================== */

        .srmcs-after-wrap {
            position: absolute;

            top: 0;
            left: 0;

            width: 50%;
            height: 100%;

            overflow: hidden;

            border-right: 2px solid #ffffff;

            z-index: 2;

            pointer-events: none;
        }


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

           IMPORTANT:
           Full image size is maintained inside wrapper.
        ===================================================== */

        .srmcs-after-img {
            position: absolute;

            top: 0;
            left: 0;

            width: 100%;
            height: 100%;

            max-width: none;

            object-fit: cover;

            display: block;
        }


        /* =====================================================
           SLIDER DIVIDER
        ===================================================== */

        .srmcs-divider {
            position: absolute;

            top: 50%;
            left: 50%;

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

            width: 46px;
            height: 46px;

            display: flex;

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

            gap: 2px;

            border-radius: 50%;

            background: #080808;

            border: 2px solid #d4af37;

            color: #d4af37;

            z-index: 10;

            cursor: ew-resize;

            user-select: none;

            -webkit-user-select: none;

            touch-action: none;

            box-shadow:
                0 5px 20px
                rgba(0, 0, 0, .6);
        }


        /* GOLD VERTICAL LINE */

        .srmcs-divider b {
            position: absolute;

            top: -100vh;
            left: 50%;

            width: 2px;
            height: 200vh;

            transform:
                translateX(-50%);

            background: #d4af37;

            z-index: -1;

            pointer-events: none;
        }


        .srmcs-divider span {
            font-size: 21px;

            line-height: 1;

            color: #d4af37;

            pointer-events: none;

            font-weight: 400;
        }


        /* =====================================================
           BEFORE / AFTER LABELS
        ===================================================== */

        .srmcs-before-label,
        .srmcs-after-label {
            position: absolute;

            bottom: 12px;

            z-index: 6;

            padding: 5px 9px;

            background:
                rgba(0, 0, 0, .78);

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

            color: #ffffff;

            font-size: 8px;

            letter-spacing: 1.5px;

            pointer-events: none;
        }


        .srmcs-before-label {
            left: 10px;
        }


        .srmcs-after-label {
            right: 10px;

            color: #d4af37;
        }


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

        .srmcs-card-info {
            position: relative;

            padding: 17px 16px 19px;
        }


        .srmcs-card-info > span {
            display: block;

            margin-bottom: 5px;

            color: #d4af37;

            font-size: 9px;

            letter-spacing: 2px;
        }


        .srmcs-card-info h3 {
            margin: 0 0 6px;

            color: #f4f4f4;

            font-family:'Jost';

            font-size: 19px;

            font-weight: 400;

            line-height: 1.25;
        }


        .srmcs-card-info p {
            margin: 0;

            color: #d4af37;

            font-size: 16px;

            letter-spacing: .3px;
        }


        /* =====================================================
           BOTTOM CTA
        ===================================================== */

        .srmcs-bottom {
            display: flex;

            align-items: center;

            justify-content: center;

            gap: 25px;

            margin-top: 45px;
        }


        .srmcs-bottom-line {
            width: 45px;
            height: 1px;

            background: #d4af37;
        }


        .srmcs-bottom p {
            margin: 0;

            color: #999999;

            font-size: 12px;
        }


        .srmcs-view-btn {
            display: inline-flex;

            align-items: center;

            gap: 12px;

            padding: 12px 20px;

            color: #080808;

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

            text-decoration: none;

            font-size: 10px;

            font-weight: 700;

            letter-spacing: 1px;

            transition: .3s ease;
        }


        .srmcs-view-btn span {
            font-size: 15px;
        }


        .srmcs-view-btn:hover {
            transform: translateY(-3px);

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


        /* =====================================================
           LAPTOP
        ===================================================== */

        @media (max-width: 1199px) {

            .srmcs-transform-container {
                width: 90%;
            }

            .srmcs-transform-grid {
                grid-template-columns:
                    repeat(3, 1fr);
            }

            .srmcs-heading-right {
                width: 300px;
            }
        }


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

        @media (max-width: 991px) {

            .srmcs-transform-section {
                padding: 75px 0 80px;
            }

            .srmcs-transform-head {
                align-items: flex-start;

                flex-direction: column;

                gap: 20px;

                margin-bottom: 40px;
            }

            .srmcs-heading-right {
                width: 100%;

                max-width: 600px;
            }

            .srmcs-transform-grid {
                grid-template-columns:
                    repeat(2, 1fr);

                gap: 18px;
            }

            .srmcs-image-box {
                aspect-ratio: 4 / 5;
            }

            .srmcs-bottom {
                flex-wrap: wrap;
            }
        }


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

        @media (max-width: 767px) {

            .srmcs-transform-section {
                padding: 60px 0 70px;
            }

            .srmcs-transform-container {
                width: 90%;
            }

            .srmcs-transform-head {
                margin-bottom: 32px;
            }

            .srmcs-eyebrow {
                font-size: 9px;

                letter-spacing: 2.5px;
            }

            .srmcs-eyebrow i {
                width: 35px;
            }

            .srmcs-heading-left h2 {
                font-size: 43px;

                letter-spacing: -1.5px;
            }

            .srmcs-heading-right p {
                font-size: 12px;

                line-height: 1.8;
            }


            /* MOBILE GRID */

            .srmcs-transform-grid {
                grid-template-columns: 1fr;

                gap: 22px;
            }


            /* IMAGE */

            .srmcs-image-box {
                aspect-ratio: 4 / 4.5;
            }


            /* CARD */

            .srmcs-card-info {
                padding: 16px 15px 18px;
            }

            .srmcs-card-info h3 {
                font-size: 19px;
            }

            .srmcs-card-info p {
                font-size: 10px;
            }


            /* DIVIDER */

            .srmcs-divider {
                width: 44px;
                height: 44px;
            }


            /* BOTTOM */

            .srmcs-bottom {
                flex-direction: column;

                gap: 14px;

                margin-top: 35px;

                text-align: center;
            }

            .srmcs-bottom-line {
                display: none;
            }

            .srmcs-bottom p {
                font-size: 11px;
            }
        }


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

        @media (max-width: 400px) {

            .srmcs-heading-left h2 {
                font-size: 28px;
            }

            .srmcs-transform-grid {
                gap: 18px;
            }

            .srmcs-divider {
                width: 40px;
                height: 40px;
            }

            .srmcs-divider span {
                font-size: 17px;
            }

            .srmcs-before-label,
            .srmcs-after-label {
                font-size: 7px;
            }
        }


        /*Start Product*/
        /* =====================================================
           MAIN SECTION
        ===================================================== */

        .srm-products-section {
            width: 100%;
            padding: 20px 0 25px;
            overflow: hidden;

            background:
                radial-gradient(
                    circle at 50% 0%,
                    rgba(212, 175, 55, 0.10),
                    transparent 35%
                ),
                #080808;
        }


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

        .srm-products-container {
            width: 91%;
            max-width: 1280px;
            margin: auto;
        }


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

        .srm-products-heading {
            text-align: center;
            margin-bottom: 55px;
        }


        .srm-products-mini-title {
            display: inline-block;

            margin-bottom: 13px;

            color: #d4af37;

            font-size: 11px;
            font-weight: 600;

            letter-spacing: 4px;
        }


        .srm-products-heading h2 {
            position: relative;

            display: inline-block;

            color: #f4f4f4;
            font-family: 'Jost';
            font-size: clamp(38px, 5vw, 58px);

            font-weight: 400;

            line-height: 1.1;
        }


        .srm-products-heading h2 span {
            color: #d4af37;
        }


        .srm-products-heading p {
            max-width: 560px;
            margin: 0px auto 0;
            color: #ffffff;
            font-size: 17px;
            line-height: 1.8;
        }


        /* =====================================================
           GOLD DECORATION
        ===================================================== */

        .srm-products-heading h2::before,
        .srm-products-heading h2::after {
            content: "";

            position: absolute;

            top: 50%;

            width: 55px;
            height: 1px;

            background: #d4af37;
        }


        .srm-products-heading h2::before {
            right: calc(100% + 22px);
        }


        .srm-products-heading h2::after {
            left: calc(100% + 22px);
        }


        /* =====================================================
           CAROUSEL AREA
        ===================================================== */

        .srm-products-carousel {
            position: relative;

            width: 100%;

            padding: 0 45px;
        }


        /* =====================================================
           VIEWPORT
        ===================================================== */

        .srm-products-viewport {
            width: 100%;

            overflow: hidden;
        }


        /* =====================================================
           SLIDER
        ===================================================== */

        .srm-products-track {
            display: flex;

            gap: 18px;

            width: max-content;

            will-change: transform;
        }


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

        .srm-products-card {
            position: relative;

            width: 250px;
            min-width: 250px;

            height: 375px;

            overflow: hidden;

            background:
                linear-gradient(
                    145deg,
                    #171717,
                    #0e0e0e
                );

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

            transition:
                transform .4s ease,
                border-color .4s ease,
                box-shadow .4s ease;
        }


        .srm-products-card::before {
            content: "";

            position: absolute;

            top: 0;
            left: 0;

            width: 100%;
            height: 2px;

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

            opacity: .6;
        }


        .srm-products-card:hover {
            transform: translateY(-8px);

            border-color: #d4af37;

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


        /* =====================================================
           PRODUCT IMAGE AREA
        ===================================================== */

        .srm-products-image {
            position: relative;

            width: 100%;
            height: 245px;

            display: flex;

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

            padding: 25px;

            background:
                radial-gradient(
                    circle,
                    #242424,
                    #101010 70%
                );
        }


        .srm-products-image::after {
            content: "";

            position: absolute;

            width: 150px;
            height: 150px;

            border-radius: 50%;

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

            filter: blur(20px);
        }


        .srm-products-image img {
            position: relative;

            z-index: 2;

            width: 100%;
            height: 100%;

            object-fit: contain;

            transition:
                transform .5s ease;
        }


        .srm-products-card:hover
        .srm-products-image img {
            transform: scale(1.07);
        }


        /* =====================================================
           PRODUCT NUMBER
        ===================================================== */

        .srm-products-number {
            position: absolute;

            top: 13px;
            left: 13px;

            z-index: 5;

            color: #d4af37;

            font-size: 9px;

            letter-spacing: 2px;
        }


        /* =====================================================
           PRODUCT INFO
        ===================================================== */

        .srm-products-info {
            position: relative;

            padding: 22px 20px;
        }


        .srm-products-category {
            display: block;

            margin-bottom: 8px;

            color: #d4af37;

            font-size: 8px;

            font-weight: 600;

            letter-spacing: 2px;
        }


        .srm-products-info h3 {
            margin: 0 0 9px;
            color: #f5f5f5;
            font-family:'Jost';
            font-size: 19px;
            font-weight: 400;
            line-height: 1.25;
        }


        .srm-products-info p {
            color: #777;

            font-size: 10px;

            line-height: 1.6;
        }


        /* =====================================================
           ARROWS
        ===================================================== */

        .srm-products-arrow {
            position: absolute;

            top: 50%;

            transform: translateY(-50%);

            width: 43px;
            height: 43px;

            display: flex;

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

            border-radius: 50%;

            background: #111;

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

            color: #d4af37;

            font-size: 22px;

            cursor: pointer;

            z-index: 20;

            transition: .3s ease;
        }


        .srm-products-arrow:hover {
            background: #d4af37;

            color: #080808;

            border-color: #d4af37;

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


        .srm-products-prev {
            left: 0;
        }


        .srm-products-next {
            right: 0;
        }


        /* =====================================================
           BOTTOM LINE
        ===================================================== */

        .srm-products-bottom {
            display: flex;

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

            gap: 16px;

            margin-top: 45px;
        }


        .srm-products-bottom-line {
            width: 45px;
            height: 1px;

            background: #d4af37;
        }


        .srm-products-bottom span {
            color: #777;

            font-size: 10px;

            letter-spacing: 2px;
        }


        .srm-products-bottom strong {
            color: #d4af37;
        }


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

        @media (max-width: 991px) {

            .srm-products-section {
                padding: 75px 0 80px;
            }

            .srm-products-carousel {
                padding: 0 38px;
            }

            .srm-products-card {
                width: 230px;
                min-width: 230px;

                height: 350px;
            }

            .srm-products-image {
                height: 220px;
            }

            .srm-products-heading {
                margin-bottom: 40px;
            }
        }


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

        @media (max-width: 767px) {

            .srm-products-section {
                padding: 60px 0 70px;
            }

            .srm-products-container {
                width: 92%;
            }

            .srm-products-heading {
                margin-bottom: 32px;
            }

            .srm-products-mini-title {
                font-size: 9px;
                letter-spacing: 3px;
            }

            .srm-products-heading h2 {
                font-size: 38px;
            }

            .srm-products-heading h2::before,
            .srm-products-heading h2::after {
                display: none;
            }

            .srm-products-heading p {
                font-size: 11px;

                max-width: 350px;
            }


            .srm-products-carousel {
                padding: 0 30px;
            }


            .srm-products-card {
                width: 240px;
                min-width: 240px;

                height: 350px;
            }


            .srm-products-image {
                height: 220px;
            }


            .srm-products-arrow {
                width: 38px;
                height: 38px;

                font-size: 19px;
            }


            .srm-products-prev {
                left: -2px;
            }


            .srm-products-next {
                right: -2px;
            }


            .srm-products-bottom {
                margin-top: 32px;
            }
        }


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

        @media (max-width: 420px) {

            .srm-products-heading h2 {
                font-size: 33px;
            }

            .srm-products-card {
                width: 220px;
                min-width: 220px;

                height: 335px;
            }

            .srm-products-image {
                height: 205px;
            }

            .srm-products-info h3 {
                font-size: 17px;
            }
        }

        /*End Product*/


/*About us start*/
.srrr-about {
  padding: 80px 20px;
  background: #0b0b0b; /* full black */
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.srrr-about .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT SIDE */
.srrr-about-left {
  position: relative;
  flex: 1;
}

.srrr-about-left .main-img img {
  width: 100%;
  border-radius: 20px;
  display: block;
  filter: brightness(0.85) contrast(1.05);
}

/* GOLD BORDER EFFECT */
.srrr-about-left .main-img {
  position: relative;
}

.srrr-about-left .main-img::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid #d4af37; /* gold */
  border-radius: 20px;
  z-index: -1;
}

/* SMALL IMAGE */
.srrr-about-left .small-img {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 220px;
  border-radius: 15px;
  overflow: hidden;
  border: 4px solid #d4af37;
  box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.srrr-about-left .small-img img {
  width: 100%;
  display: block;
}

/* RIGHT SIDE */
.srrr-about-right {
  flex: 1;
}

.srrr-about-right .tag {
  letter-spacing: 4px;
  color: #d4af37;
  font-size: 13px;
}

.srrr-about-right h2 {
  font-size: 38px;
  margin: 10px 0 20px;
  color: #fff;
  font-family: 'Jost';
}

/* GOLD TEXT HIGHLIGHT */
.srrr-about-right h2 span {
  color: #d4af37;
}

.srrr-about-right .desc {
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* BUTTON */
.srrr-about-right .btn {
  display: inline-block;
  background: linear-gradient(45deg, #d4af37, #f1d77a);
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(212,175,55,0.4);
}

.srrr-about-right .btn:hover {
  background: #fff;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .srrr-about .container {
    flex-direction: column;
    text-align: center;
  }

  .srrr-about-left .small-img {
    left: 20px;
    bottom: -30px;
  }
}

@media (max-width: 576px) {
  .srrr-about-right h2 {
    font-size: 26px;
  }

  .srrr-about-left .small-img {
    width: 150px;
  }
}
/*About us end*/


/*Contact CSS Start*/
/* ===== Tokens (reused from brand: dark luxury + gold) ===== */
.conatct-section {
  

  background: var(--cs-bg);
  color: var(--cs-text);
  padding: 96px 6vw;
  font-family: var(--cs-font-body);
  box-sizing: border-box;
}
.conatct-section *, .conatct-section *::before, .conatct-section *::after {
  box-sizing: border-box;
}

.conatct-section__wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  max-width: 1180px;
  margin: 0 auto;
}

/* ---- Left column ---- */
.conatct-section__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cs-gold);
  margin-bottom: 18px;
}

.conatct-section__title {
  font-family: 'Jost';
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--cs-text);
}
.conatct-section__title em {
  font-style: italic;
  color: var(--cs-gold-soft);
}

.conatct-section__desc {
  color: var(--cs-text-muted);
  line-height: 1.7;
  max-width: 40ch;
  margin: 0 0 40px;
  font-size: 15px;
}

.conatct-section__details {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.conatct-section__details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cs-border);
}
.conatct-section__details li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.conatct-section__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cs-border);
  border-radius: 50%;
  color: var(--cs-gold);
  font-size: 16px;
}
.conatct-section__details strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cs-gold-soft);
  margin-bottom: 4px;
  font-weight: 600;
}
.conatct-section__details p {
  margin: 0;
  color: var(--cs-text-muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.conatct-section__details a {
  color: var(--cs-text-muted);
  text-decoration: none;
}
.conatct-section__details a:hover,
.conatct-section__details a:focus-visible {
  color: var(--cs-gold-soft);
}

.conatct-section__social {
  display: flex;
  gap: 12px;
}
.conatct-section__social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--cs-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-gold);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}
.conatct-section__social a:hover,
.conatct-section__social a:focus-visible {
  background: var(--cs-gold);
  color: var(--cs-bg);
}

/* ---- Right column: form card ---- */
.conatct-section__form-card {
  background: var(--cs-card);
  border: 1px solid var(--cs-border);
  border-radius: var(--cs-radius);
  padding: 44px;
}

.conatct-section__form-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cs-gold);
  display: block;
  margin-bottom: 10px;
}

.conatct-section__form-title {
  font-family: 'Jost';
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 28px;
  color: var(--cs-text);
}

.conatct-section__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.conatct-section__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.conatct-section__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.conatct-section__field label {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cs-text-muted);
}
.conatct-section__field input,
.conatct-section__field select,
.conatct-section__field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--cs-border);
  color: var(--cs-text);
  font-family: var(--cs-font-body);
  font-size: 14.5px;
  padding: 10px 2px;
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
}
.conatct-section__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--cs-gold) 50%),
                     linear-gradient(135deg, var(--cs-gold) 50%, transparent 50%);
  background-position: calc(100% - 8px) 55%, calc(100% - 2px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.conatct-section__field select option {
  background: var(--cs-card);
  color: var(--cs-text);
}
.conatct-section__field textarea {
  resize: vertical;
  min-height: 90px;
}
.conatct-section__field input::placeholder,
.conatct-section__field textarea::placeholder {
  color: rgba(184, 176, 164, 0.55);
}
.conatct-section__field input:focus,
.conatct-section__field select:focus,
.conatct-section__field textarea:focus {
  border-color: var(--cs-gold);
}
.conatct-section__field input:focus-visible,
.conatct-section__field select:focus-visible,
.conatct-section__field textarea:focus-visible {
  outline: 2px solid var(--cs-gold);
  outline-offset: 2px;
}

.conatct-section__btn {
  align-self: flex-start;
  margin-top: 8px;
  background: var(--cs-gold);
  color: #1a1512;
  border: none;
  border-radius: var(--cs-radius);
  padding: 14px 34px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.conatct-section__btn:hover {
  background: var(--cs-gold-soft);
  transform: translateY(-1px);
}
.conatct-section__btn:focus-visible {
  outline: 2px solid var(--cs-gold-soft);
  outline-offset: 3px;
}

/* ---- Map ---- */
.conatct-section__map {
  max-width: 1180px;
  margin: 72px auto 0;
  border: 1px solid var(--cs-border);
  border-radius: var(--cs-radius);
  overflow: hidden;
  filter: grayscale(0.4) contrast(1.05);
}
.conatct-section__map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .conatct-section { padding: 64px 6vw; }
  .conatct-section__wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .conatct-section__form-card { padding: 30px; }
}
@media (max-width: 520px) {
  .conatct-section__row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .conatct-section__btn { transition: none; }
}
/*Contact CSS End*/

/*Banner Start*/
/* =====================================================
   SR MIRACLE CONTACT BANNER
   BLACK + GOLD LUXURY DESIGN
===================================================== */

.contact-banner {
    position: relative;

    width: 100%;
    min-height: 330px;

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

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(212, 175, 55, 0.13),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #050505 0%,
            #0c0c0c 50%,
            #050505 100%
        );
}


/* =====================================================
   GOLD GLOW
===================================================== */

.contact-banner::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -240px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

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

    box-shadow:
        0 0 80px
        rgba(212, 175, 55, 0.08);

    pointer-events: none;
}


/* =====================================================
   OVERLAY
===================================================== */

.contact-banner-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .35),
            transparent,
            rgba(0, 0, 0, .35)
        );

    pointer-events: none;
}


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

.contact-banner-content {
    position: relative;

    z-index: 2;

    text-align: center;

    padding: 40px 20px;
}


/* =====================================================
   SMALL TITLE
===================================================== */

.contact-banner-subtitle {
    display: inline-block;

    margin-bottom: 16px;

    color: #d4af37;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 5px;
}


/* =====================================================
   MAIN TITLE
===================================================== */

.contact-banner-content h1 {
    margin: 0;

    color: #ffffff;

    font-family:'Jost';

    font-size: clamp(
        48px,
        6vw,
        78px
    );

    font-weight: 400;

    line-height: 1;

    letter-spacing: -1px;
}


/* =====================================================
   DIVIDER
===================================================== */

.contact-banner-divider {
    display: flex;

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

    gap: 12px;

    margin: 22px auto 18px;
}


.contact-banner-divider span {
    width: 48px;
    height: 1px;

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


.contact-banner-divider span:last-child {
    background:
        linear-gradient(
            90deg,
            #d4af37,
            transparent
        );
}


.contact-banner-divider b {
    color: #d4af37;

    font-size: 13px;

    font-weight: 400;
}


/* =====================================================
   BREADCRUMB
===================================================== */

.contact-banner-breadcrumb {
    display: flex;

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

    gap: 8px;

    font-size: 19px;

    letter-spacing: 1px;
}


.contact-banner-breadcrumb a {
    color: #d4af37;

    text-decoration: none;

    transition: .3s ease;
}


.contact-banner-breadcrumb a:hover {
    color: #ffffff;
}


.contact-banner-breadcrumb i {
    color: #666;

    font-style: normal;
}


.contact-banner-breadcrumb span {
    color: #aaa;
}


/* =====================================================
   BOTTOM GOLD LINE
===================================================== */

.contact-banner::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 50%;

    width: 120px;
    height: 2px;

    transform: translateX(-50%);

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


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

@media (max-width: 991px) {

    .contact-banner {
        min-height: 290px;
    }

    .contact-banner-subtitle {
        letter-spacing: 4px;
    }

}


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

@media (max-width: 767px) {

    .contact-banner {
        min-height: 250px;
    }

    .contact-banner-content {
        padding: 35px 15px;
    }

    .contact-banner-subtitle {
        font-size: 8px;

        letter-spacing: 3px;

        margin-bottom: 13px;
    }

    .contact-banner-content h1 {
        font-size: 48px;
    }

    .contact-banner-divider {
        margin: 18px auto 15px;
    }

    .contact-banner-divider span {
        width: 35px;
    }

    .contact-banner-breadcrumb {
        font-size: 10px;
    }

}


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

@media (max-width: 400px) {

    .contact-banner {
        min-height: 225px;
    }

    .contact-banner-content h1 {
        font-size: 40px;
    }

    .contact-banner-subtitle {
        letter-spacing: 2.5px;
    }

}
/*Banner End*/

/*Product Start*/
 h1,h2,h3{font-family:'Cormorant Garamond', serif; font-weight:600;}
  em{
    font-family: 'Jost';
    font-style:italic; 
    color:var(--srm-gold);
}
  a{text-decoration:none; color:inherit;}

  /* ---------- PAGE HEADER ---------- */
  .products-hero{
    background:var(--srm-black);
    color:var(--srm-cream);
    padding:20px 24px 74px;
    text-align:center;
    position:relative;
  }
  .products-hero::after{
    content:"";
    position:absolute; left:50%; bottom:36px; transform:translateX(-50%);
    width:1px; height:40px; background:var(--srm-gold);
  }
  .products-hero .eyebrow{
    display:inline-block;
    letter-spacing:.28em;
    font-size:12px;
    color:var(--srm-gold-soft);
    margin-bottom:18px;
    text-transform:uppercase;
  }
  .products-hero h1{
    font-family: 'Jost';
    font-size: 45px;
    line-height:1.1;
    max-width:760px;
    margin:0 auto 16px;
  }
  .products-hero p{
    max-width:520px;
    margin:0 auto;
    color:rgb(205, 204, 204);
    font-size:15px;
    line-height:1.7;
  }

  /* ---------- PRODUCT SECTION (grid, RWD) ---------- */
  .product-section{
    max-width:1240px;
    margin:0 auto;
    padding:20px 24px 20px;
  }
  .product-section .section-head{
    text-align:center;
    margin-bottom:56px;
  }
  .product-section .section-head .eyebrow{
    display:block;
    letter-spacing:.28em;
    font-size:12px;
    color:var(--srm-gold);
    text-transform:uppercase;
    margin-bottom:14px;
  }
  .product-section .section-head h2{
    font-size:clamp(28px,4vw,40px);
    color:white;
  }

  .product-section .srm-products-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:36px 28px;
  }

  .product-section .srm-products-card{
    background:#fff;
    border:1px solid var(--srm-line);
    display:flex;
    flex-direction:column;
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  }
  .product-section .srm-products-card:hover{
    transform:translateY(-6px);
    border-color:var(--srm-gold);
    box-shadow:0 20px 40px -18px rgba(21,19,15,0.25);
  }

  .product-section .srm-products-image{
    position:relative;
    aspect-ratio:1/1;
    overflow:hidden;
    background:#eee5d3;
  }
  .product-section .srm-products-image img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
  }
  .product-section .srm-products-card:hover .srm-products-image img{
    transform:scale(1.06);
  }
  .product-section .srm-products-number{
    position:absolute;
    top:14px; left:14px;
    z-index:2;
    font-family:'Cormorant Garamond', serif;
    font-size:13px;
    letter-spacing:.05em;
    color:var(--srm-cream);
    background:rgba(21,19,15,0.65);
    border:1px solid rgba(217,198,160,0.5);
    padding:4px 10px;
  }

  .product-section .srm-products-info{
    padding:22px 20px 26px;
    flex:1;
    display:flex;
    flex-direction:column;
  }
  .product-section .srm-products-category{
    font-size:11px;
    letter-spacing:.2em;
    color:var(--srm-gold);
    text-transform:uppercase;
    margin-bottom:10px;
  }
  .product-section .srm-products-info h3{
    font-size:21px;
    color:var(--srm-black);
    margin-bottom:10px;
    line-height:1.25;
  }
  .product-section .srm-products-info p{
    font-size:13.5px;
    line-height:1.65;
    color:var(--srm-muted);
    font-weight:300;
    flex:1;
  }
  .product-section .srm-products-cta{
    margin-top:16px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:12px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--srm-black);
    border-top:1px solid var(--srm-line);
    padding-top:14px;
    width:fit-content;
  }
  .product-section .srm-products-cta::after{
    content:"→";
    transition:transform .3s ease;
  }
  .product-section .srm-products-card:hover .srm-products-cta::after{
    transform:translateX(4px);
  }

  /* ---------- RWD BREAKPOINTS ---------- */
  @media (max-width:1080px){
    .product-section .srm-products-grid{ grid-template-columns:repeat(3, 1fr); }
  }
  @media (max-width:820px){
    .product-section{ padding:70px 20px 80px; }
    .product-section .srm-products-grid{ grid-template-columns:repeat(2, 1fr); gap:26px 18px; }
    .products-hero{ padding:20px 20px 20px; }
  }
  @media (max-width:520px){
    .product-section .srm-products-grid{ grid-template-columns:1fr; }
    .product-section .srm-products-info h3{ font-size:19px; }
  }
/*Product End*/

/*About start*/
  /* ---------- PAGE HERO ---------- */
  .about-hero{
    background:var(--srm-black);
    color:var(--srm-cream);
    padding:20px 24px 80px;
    text-align:center;
    position:relative;
  }
  .about-hero::after{
    content:"";
    position:absolute; left:50%; bottom:36px; transform:translateX(-50%);
    width:1px; height:40px; background:var(--srm-gold);
  }
  .about-hero .eyebrow{
    display:inline-block;
    letter-spacing:.28em;
    font-size:12px;
    color:var(--srm-gold-soft);
    margin-bottom:18px;
    text-transform:uppercase;
  }
  .about-hero h1{
    font-size:clamp(34px,5vw,56px);
    line-height:1.1;
    max-width:760px;
    margin:0 auto 16px;
  }
  .about-hero p{
    max-width:520px;
    margin:0 auto;
    color:var(--srm-muted);
    font-size:15px;
    line-height:1.7;
  }

  /* ================= ABOUTSR SECTION ================= */
  .aboutsr-section{
    max-width:1240px;
    margin:0 auto;
    padding:90px 24px 0;
  }

  /* ---- intro block (image + content) ---- */
  .aboutsr-section .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
  }

  .aboutsr-section .srrr-about-left{
    position:relative;
    display:grid;
    grid-template-columns:1fr;
  }
  .aboutsr-section .srrr-about-left .main-img{
    aspect-ratio:4/5;
    overflow:hidden;
    border:1px solid var(--srm-line);
  }
  .aboutsr-section .srrr-about-left .small-img{
    position:absolute;
    right:-32px; bottom:-40px;
    width:46%;
    aspect-ratio:1/1;
    overflow:hidden;
    border:6px solid var(--srm-cream);
    box-shadow:0 20px 40px -18px rgba(21,19,15,0.35);
  }

  .aboutsr-section .srrr-about-right{
    padding-top:20px;
  }
  .aboutsr-section .srrr-about-right .tag{
    letter-spacing:.28em;
    font-size:12px;
    color:var(--srm-gold);
    text-transform:uppercase;
    margin-bottom:14px;
  }
  .aboutsr-section .srrr-about-right h2{
    font-size:clamp(28px,4vw,42px);
    line-height:1.15;
    margin-bottom:22px;
  }
  .aboutsr-section .srrr-about-right .desc{
    font-size:18px;
    line-height:1.8;
    color:#c3c3c3;
    font-weight:300;
    margin-bottom:16px;
  }
  .aboutsr-section .srrr-about-right .desc:last-of-type{
    margin-bottom:28px;
  }

  .aboutsr-section .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    border:1px solid var(--srm-black);
    padding:14px 30px;
    font-size:12px;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--srm-black);
    transition:background .3s ease, color .3s ease, border-color .3s ease;
  }
  .aboutsr-section .btn::after{ content:"→"; transition:transform .3s ease; }
  .aboutsr-section .btn:hover{ background:var(--srm-black); color:var(--srm-cream); }
  .aboutsr-section .btn:hover::after{ transform:translateX(4px); }

  /* ---- mini stats row ---- */
  .aboutsr-section .aboutsr-stats{
    margin-top:100px;
    padding:48px 0;
    border-top:1px solid var(--srm-line);
    border-bottom:1px solid var(--srm-line);
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    text-align:center;
  }
  .aboutsr-section .aboutsr-stats .stat{
    border-right:1px solid var(--srm-line);
  }
  .aboutsr-section .aboutsr-stats .stat:last-child{ border-right:none; }
  .aboutsr-section .aboutsr-stats h3{
    font-family: 'Jost';
    font-size: 32px;
    color: #e3be12;
    margin-bottom:6px;
  }
  .aboutsr-section .aboutsr-stats span{
    font-size:13.5px;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:#dddddd;
  }

  /* ---- our story / philosophy ---- */
  .aboutsr-section .aboutsr-story{
    margin-top:100px;
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:60px;
    align-items:start;
  }
  .aboutsr-section .aboutsr-story .eyebrow{
    letter-spacing:.28em;
    font-size: 15px;
    font-weight: 700;
    color: #e3b563;
    text-transform:uppercase;
    margin-bottom:14px;
    display:block;
  }
  .aboutsr-section .aboutsr-story h2{
    font-family: 'Jost';
    font-weight: 500;
    font-size:clamp(26px,3.4vw,36px);
    line-height:1.2;
  }
  .aboutsr-section .aboutsr-story-copy p{
    font-size:15.5px;
    line-height:1.85;
    color:#dddddddd;
    margin-bottom:16px;
  }

  /* ---- why choose us / values grid ---- */
  .aboutsr-section .aboutsr-values{
    margin-top:100px;
    text-align:center;
  }
  .aboutsr-section .aboutsr-values .section-head{ margin-bottom:52px; }
  .aboutsr-section .aboutsr-values .eyebrow{
    display:block;
    letter-spacing:.28em;
    font-size:12px;
    color:var(--srm-gold);
    text-transform:uppercase;
    margin-bottom:14px;
  }
  .aboutsr-section .aboutsr-values .section-head h2{
    font-family: 'Jost';
    font-size:clamp(28px,4vw,38px);
  }
  .aboutsr-section .aboutsr-values-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:28px;
  }
  .aboutsr-section .value-card{
    background: #ffffff00;
    border: 1px solid rgb(176 141 79);
    padding:38px 24px;
    text-align:left;
    transition:transform .35s ease, border-color .35s ease;
  }
  .aboutsr-section .value-card:hover{
    transform:translateY(-6px);
    border-color:var(--srm-gold);
  }
  .aboutsr-section .value-card .num{
    font-family:'Cormorant Garamond', serif;
    font-size:14px;
    color:var(--srm-gold);
    margin-bottom:18px;
    display:block;
  }
  .aboutsr-section .value-card h3{
    font-family: 'Jost';
    font-size:19px;
    margin-bottom:10px;
  }
  .aboutsr-section .value-card p{
    font-size:13.5px;
    line-height:1.7;
    color:var(--srm-muted);
  }

  /* ---- team preview ---- */
  .aboutsr-section .aboutsr-team{
    margin-top:100px;
    text-align:center;
  }
  .aboutsr-section .aboutsr-team .section-head{ margin-bottom:52px; }
  .aboutsr-section .aboutsr-team-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
  }
  .aboutsr-section .team-card{
    background:#fff;
    border:1px solid var(--srm-line);
    padding:44px 24px;
  }
  .aboutsr-section .team-card .avatar{
    width:64px; height:64px;
    border-radius:50%;
    background:var(--srm-black);
    color:var(--srm-gold-soft);
    font-family:'Cormorant Garamond', serif;
    font-size:24px;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 18px;
  }
  .aboutsr-section .team-card h3{ font-size:18px; margin-bottom:4px; }
  .aboutsr-section .team-card span{
    display:block;
    font-size:11.5px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--srm-gold);
    margin-bottom:14px;
  }
  .aboutsr-section .team-card p{
    font-size:13px;
    line-height:1.7;
    color:var(--srm-muted);
  }

  /* ---- closing CTA ---- */
  .aboutsr-section .aboutsr-cta{
    margin-top:100px;
    background:var(--srm-black);
    color:var(--srm-cream);
    text-align:center;
    padding:70px 24px;
  }
  .aboutsr-section .aboutsr-cta .eyebrow{
    letter-spacing:.28em;
    font-size:12px;
    color:var(--srm-gold-soft);
    text-transform:uppercase;
    margin-bottom:16px;
    display:block;
  }
  .aboutsr-section .aboutsr-cta h2{
    font-size:clamp(26px,3.6vw,38px);
    margin-bottom:26px;
  }
  .aboutsr-section .aboutsr-cta .btn{
    border-color:var(--srm-gold-soft);
    color:var(--srm-cream);
  }
  .aboutsr-section .aboutsr-cta .btn:hover{
    background:var(--srm-gold);
    border-color:var(--srm-gold);
    color:var(--srm-black);
  }

  .aboutsr-section{ padding-bottom:100px; }

  /* ================= RWD ================= */
  @media (max-width:1080px){
    .aboutsr-section .aboutsr-values-grid{ grid-template-columns:repeat(2, 1fr); }
  }
  @media (max-width:900px){
    .aboutsr-section .container{ grid-template-columns:1fr; gap:70px; }
    .aboutsr-section .srrr-about-left .small-img{ right:12px; bottom:-32px; width:42%; }
    .aboutsr-section .aboutsr-story{ grid-template-columns:1fr; gap:24px; }
    .aboutsr-section .aboutsr-team-grid{ grid-template-columns:1fr; }
  }
  @media (max-width:768px){
    .about-hero{ padding:100px 20px 64px; }
    .aboutsr-section{ padding:70px 20px 0; }
    .aboutsr-section .aboutsr-stats{ grid-template-columns:repeat(2, 1fr); row-gap:32px; }
    .aboutsr-section .aboutsr-stats .stat:nth-child(2n){ border-right:none; }
    .aboutsr-section .aboutsr-stats .stat:nth-child(-n+2){ border-bottom:1px solid var(--srm-line); padding-bottom:24px; }
  }
  @media (max-width:520px){
    .aboutsr-section .aboutsr-values-grid{ grid-template-columns:1fr; }
    .aboutsr-section .srrr-about-left .small-img{ width:52%; }
  }
/*About end*/

/*Hair Section Start*/
/* =========================================
   HAIR SERVICES
========================================= */

.hair-section {
    position: relative;
    width: 100%;
    padding: 20px 0;
    background: #080808;
    color: #fff;
    overflow: hidden;
}


/* GOLD BACKGROUND GLOW */

.hair-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    filter: blur(80px);
    pointer-events: none;
}


/* CONTAINER */

.hair-section-container {
    position: relative;
    z-index: 2;
    width: 88%;
    max-width: 1200px;
    margin: auto;
}


/* =========================================
   MAIN HEADING
========================================= */

.hair-section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}


.hair-section-heading > span {
    display: block;
    margin-bottom: 15px;

    color: #d4af37;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;
}


.hair-section-heading h2 {
    margin: 0;

    color: #f5f5f5;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 6vw, 68px);

    font-weight: 400;
    line-height: 1.1;
}


.hair-section-heading h2 strong {
    color: #d4af37;
    font-weight: 400;
}


.hair-section-heading p {
    max-width: 580px;

    margin: 20px auto 0;

    color: #dfdfdf;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   SERVICE BOX
========================================= */

.hair-service-box {
    position: relative;

    padding: 35px 40px;

    margin-bottom: 18px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    background:
        linear-gradient(
            100deg,
            rgba(212, 175, 55, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    transition:
        border-color .35s ease,
        background .35s ease,
        transform .35s ease;
}


/* GOLD TOP LINE */

.hair-service-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: #d4af37;

    transition: width .4s ease;
}


.hair-service-box:hover::before {
    width: 100%;
}


.hair-service-box:hover {
    border-color: rgba(212, 175, 55, 0.30);

    background:
        linear-gradient(
            100deg,
            rgba(212, 175, 55, 0.09),
            rgba(255, 255, 255, 0.02)
        );

    transform: translateY(-3px);
}


/* =========================================
   SERVICE HEADING
========================================= */

.hair-service-box h3 {
    margin: 0 0 12px;

    color: #f2f2f2;

    font-family: 'Jost';

    font-size: 27px;

    font-weight: 400;

    transition: color .3s ease;
}


.hair-service-box:hover h3 {
    color: #d4af37;
}


/* =========================================
   SERVICE PARAGRAPH
========================================= */

.hair-service-box p {
    /* max-width: 850px; */

    margin: 0;

    color: #c5c5c5;

    font-size: 20px;

    line-height: 1.8;
}


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

@media (max-width: 991px) {

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

    .hair-section-container {
        width: 90%;
    }

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

    .hair-service-box {
        padding: 30px;
    }

}


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

@media (max-width: 767px) {

    .hair-section {
        padding: 65px 0;
    }

    .hair-section-container {
        width: 90%;
    }

    .hair-section-heading {
        margin-bottom: 35px;
    }

    .hair-section-heading > span {
        font-size: 8px;
        letter-spacing: 3px;
    }

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

    .hair-section-heading p {
        font-size: 11px;
        line-height: 1.7;
    }

    .hair-service-box {
        padding: 25px 22px;
        margin-bottom: 14px;
    }

    .hair-service-box h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .hair-service-box p {
        font-size: 10px;
        line-height: 1.7;
    }

}


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

@media (max-width: 400px) {

    .hair-section {
        padding: 55px 0;
    }

    .hair-section-heading h2 {
        font-size: 36px;
    }

    .hair-service-box {
        padding: 22px 18px;
    }

    .hair-service-box h3 {
        font-size: 20px;
    }

}
/*Hair Section End*/

/*Beard Section Start*/
/* =========================================
   BEARD & SHAVE SECTION
   SAME DESIGN AS HAIR SECTION
========================================= */

.beard-section {
    position: relative;
    width: 100%;
    padding: 20px 0;
    background: #080808;
    color: #fff;
    overflow: hidden;
}


/* GOLD BACKGROUND GLOW */

.beard-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    filter: blur(80px);
    pointer-events: none;
}


/* CONTAINER */

.beard-section-container {
    position: relative;
    z-index: 2;
    width: 88%;
    max-width: 1200px;
    margin: auto;
}


/* =========================================
   MAIN HEADING
========================================= */

.beard-section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}


.beard-section-heading > span {
    display: block;
    margin-bottom: 15px;

    color: #d4af37;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;
}


.beard-section-heading h2 {
    margin: 0;

    color: #f5f5f5;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 6vw, 68px);

    font-weight: 400;
    line-height: 1.1;
}


.beard-section-heading h2 strong {
    color: #d4af37;
    font-weight: 400;
}


.beard-section-heading p {
    max-width: 580px;

    margin: 20px auto 0;

    color: #dfdfdf;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   SERVICE BOX
========================================= */

.beard-service-box {
    position: relative;

    padding: 35px 40px;

    margin-bottom: 18px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    background:
        linear-gradient(
            100deg,
            rgba(212, 175, 55, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    transition:
        border-color .35s ease,
        background .35s ease,
        transform .35s ease;
}


/* GOLD TOP LINE */

.beard-service-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: #d4af37;

    transition: width .4s ease;
}


.beard-service-box:hover::before {
    width: 100%;
}


.beard-service-box:hover {
    border-color: rgba(212, 175, 55, 0.30);

    background:
        linear-gradient(
            100deg,
            rgba(212, 175, 55, 0.09),
            rgba(255, 255, 255, 0.02)
        );

    transform: translateY(-3px);
}


/* =========================================
   SERVICE HEADING
========================================= */

.beard-service-box h3 {
    margin: 0 0 12px;

    color: #f2f2f2;

    font-family: 'Jost';

    font-size: 27px;

    font-weight: 400;

    transition: color .3s ease;
}


.beard-service-box:hover h3 {
    color: #d4af37;
}


/* =========================================
   SERVICE PARAGRAPH
========================================= */

.beard-service-box p {

    margin: 0;

    color: #c5c5c5;

    font-size: 20px;

    line-height: 1.8;
}


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

@media (max-width: 991px) {

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

    .beard-section-container {
        width: 90%;
    }

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

    .beard-service-box {
        padding: 30px;
    }

}


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

@media (max-width: 767px) {

    .beard-section {
        padding: 65px 0;
    }

    .beard-section-container {
        width: 90%;
    }

    .beard-section-heading {
        margin-bottom: 35px;
    }

    .beard-section-heading > span {
        font-size: 8px;
        letter-spacing: 3px;
    }

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

    .beard-section-heading p {
        font-size: 11px;
        line-height: 1.7;
    }

    .beard-service-box {
        padding: 25px 22px;
        margin-bottom: 14px;
    }

    .beard-service-box h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .beard-service-box p {
        font-size: 10px;
        line-height: 1.7;
    }

}


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

@media (max-width: 400px) {

    .beard-section {
        padding: 55px 0;
    }

    .beard-section-heading h2 {
        font-size: 36px;
    }

    .beard-service-box {
        padding: 22px 18px;
    }

    .beard-service-box h3 {
        font-size: 20px;
    }

}
/*Beard Section End*/

/*Skin Care Start*/
/* =========================================
   SKIN CARE SECTION
   SAME DESIGN
========================================= */

.skin-section {
    position: relative;
    width: 100%;
    padding: 20px 0;
    background: #080808;
    color: #fff;
    overflow: hidden;
}

.skin-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    filter: blur(80px);
    pointer-events: none;
}


/* CONTAINER */

.skin-section-container {
    position: relative;
    z-index: 2;
    width: 88%;
    max-width: 1200px;
    margin: auto;
}


/* =========================================
   MAIN HEADING
========================================= */

.skin-section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.skin-section-heading > span {
    display: block;
    margin-bottom: 15px;

    color: #d4af37;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;
}

.skin-section-heading h2 {
    margin: 0;

    color: #f5f5f5;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 6vw, 68px);

    font-weight: 400;
    line-height: 1.1;
}

.skin-section-heading h2 strong {
    color: #d4af37;
    font-weight: 400;
}

.skin-section-heading p {
    max-width: 580px;

    margin: 20px auto 0;

    color: #dfdfdf;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   SERVICE BOX
========================================= */

.skin-service-box {
    position: relative;

    padding: 35px 40px;

    margin-bottom: 18px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    background:
        linear-gradient(
            100deg,
            rgba(212, 175, 55, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    transition:
        border-color .35s ease,
        background .35s ease,
        transform .35s ease;
}


/* GOLD TOP LINE */

.skin-service-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: #d4af37;

    transition: width .4s ease;
}

.skin-service-box:hover::before {
    width: 100%;
}

.skin-service-box:hover {
    border-color: rgba(212, 175, 55, 0.30);

    background:
        linear-gradient(
            100deg,
            rgba(212, 175, 55, 0.09),
            rgba(255, 255, 255, 0.02)
        );

    transform: translateY(-3px);
}


/* =========================================
   SERVICE HEADING
========================================= */

.skin-service-box h3 {
    margin: 0 0 12px;

    color: #f2f2f2;

    font-family: 'Jost';

    font-size: 27px;

    font-weight: 400;

    transition: color .3s ease;
}

.skin-service-box:hover h3 {
    color: #d4af37;
}


/* =========================================
   SERVICE PARAGRAPH
========================================= */

.skin-service-box p {
    margin: 0;

    color: #c5c5c5;

    font-size: 20px;

    line-height: 1.8;
}


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

@media (max-width: 991px) {

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

    .skin-section-container {
        width: 90%;
    }

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

    .skin-service-box {
        padding: 30px;
    }

}


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

@media (max-width: 767px) {

    .skin-section {
        padding: 65px 0;
    }

    .skin-section-container {
        width: 90%;
    }

    .skin-section-heading {
        margin-bottom: 35px;
    }

    .skin-section-heading > span {
        font-size: 8px;
        letter-spacing: 3px;
    }

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

    .skin-section-heading p {
        font-size: 11px;
        line-height: 1.7;
    }

    .skin-service-box {
        padding: 25px 22px;
        margin-bottom: 14px;
    }

    .skin-service-box h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .skin-service-box p {
        font-size: 10px;
        line-height: 1.7;
    }

}


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

@media (max-width: 400px) {

    .skin-section {
        padding: 55px 0;
    }

    .skin-section-heading h2 {
        font-size: 36px;
    }

    .skin-service-box {
        padding: 22px 18px;
    }

    .skin-service-box h3 {
        font-size: 20px;
    }

}
/*Skin Care End*/

/*Grooming Start*/
/* =========================================
   GROOMING & SPA SECTION
========================================= */

.grooming-section {
    position: relative;
    width: 100%;
    padding: 20px 0;
    background: #080808;
    color: #fff;
    overflow: hidden;
}


/* GOLD BACKGROUND GLOW */

.grooming-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    filter: blur(80px);
    pointer-events: none;
}


/* CONTAINER */

.grooming-section-container {
    position: relative;
    z-index: 2;
    width: 88%;
    max-width: 1200px;
    margin: auto;
}


/* =========================================
   MAIN HEADING
========================================= */

.grooming-section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.grooming-section-heading > span {
    display: block;
    margin-bottom: 15px;

    color: #d4af37;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;
}

.grooming-section-heading h2 {
    margin: 0;

    color: #f5f5f5;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 6vw, 68px);

    font-weight: 400;
    line-height: 1.1;
}

.grooming-section-heading h2 strong {
    color: #d4af37;
    font-weight: 400;
}

.grooming-section-heading p {
    max-width: 580px;

    margin: 20px auto 0;

    color: #dfdfdf;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   SERVICE BOX
========================================= */

.grooming-service-box {
    position: relative;

    padding: 35px 40px;

    margin-bottom: 18px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    background:
        linear-gradient(
            100deg,
            rgba(212, 175, 55, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    transition:
        border-color .35s ease,
        background .35s ease,
        transform .35s ease;
}


/* GOLD TOP LINE */

.grooming-service-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: #d4af37;

    transition: width .4s ease;
}

.grooming-service-box:hover::before {
    width: 100%;
}

.grooming-service-box:hover {
    border-color: rgba(212, 175, 55, 0.30);

    background:
        linear-gradient(
            100deg,
            rgba(212, 175, 55, 0.09),
            rgba(255, 255, 255, 0.02)
        );

    transform: translateY(-3px);
}


/* =========================================
   SERVICE HEADING
========================================= */

.grooming-service-box h3 {
    margin: 0 0 12px;

    color: #f2f2f2;

    font-family: 'Jost';

    font-size: 27px;

    font-weight: 400;

    transition: color .3s ease;
}

.grooming-service-box:hover h3 {
    color: #d4af37;
}


/* =========================================
   SERVICE PARAGRAPH
========================================= */

.grooming-service-box p {
    margin: 0;

    color: #c5c5c5;

    font-size: 20px;

    line-height: 1.8;
}


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

@media (max-width: 991px) {

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

    .grooming-section-container {
        width: 90%;
    }

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

    .grooming-service-box {
        padding: 30px;
    }

}


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

@media (max-width: 767px) {

    .grooming-section {
        padding: 65px 0;
    }

    .grooming-section-container {
        width: 90%;
    }

    .grooming-section-heading {
        margin-bottom: 35px;
    }

    .grooming-section-heading > span {
        font-size: 8px;
        letter-spacing: 3px;
    }

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

    .grooming-section-heading p {
        font-size: 11px;
        line-height: 1.7;
    }

    .grooming-service-box {
        padding: 25px 22px;
        margin-bottom: 14px;
    }

    .grooming-service-box h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .grooming-service-box p {
        font-size: 10px;
        line-height: 1.7;
    }

}


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

@media (max-width: 400px) {

    .grooming-section {
        padding: 55px 0;
    }

    .grooming-section-heading h2 {
        font-size: 36px;
    }

    .grooming-service-box {
        padding: 22px 18px;
    }

    .grooming-service-box h3 {
        font-size: 20px;
    }

}
/*Grooming End*/

/* =========================
   GALLERY START
========================= */

.ag-gallery-container {
    width: 100%;
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 30px 20px;
    box-sizing: border-box;
}

.ag-gallery-item {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.ag-gallery-img {
    width: 100%;
    display: block;
    transition: 0.4s ease;
}

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

/* =========================
 POPUP START
========================= */

.ag-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
}

/* ACTIVE POPUP */

.ag-popup.ag-show {
    display: flex;
}

/* POPUP IMAGE */

.ag-popup-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
}

/* CLOSE BUTTON */

.ag-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

/* ARROWS */

.ag-prev,
.ag-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    padding: 10px;
}

.ag-prev {
    left: 25px;
}

.ag-next {
    right: 25px;
}

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

@media (max-width: 992px) {
    .ag-gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .ag-popup-img {
        max-width: 95%;
    }

    .ag-prev,
    .ag-next {
        font-size: 45px;
    }

    .ag-close {
        font-size: 38px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .ag-prev {
        left: 10px;
    }

    .ag-next {
        right: 10px;
    }

    .ag-prev,
    .ag-next {
        font-size: 35px;
    }

    .ag-close {
        top: 15px;
        right: 15px;
        font-size: 32px;
    }
}

/*Gallery End*/

/*Video Start*/
/* =========================
   SRRA SECTION
========================= */

.srra-section {
    width: 100%;
    min-height: 580px;
    display: flex;
    background: #000;
    overflow: hidden;
}


/* VIDEO */

.srra-video {
    width: 50%;
    min-height: 580px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.srra-video video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    border: 0;
}


/* CONTENT */

.srra-content {
    width: 50%;
    padding: 80px 5%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #000;
    box-sizing: border-box;
}

.srra-subtitle {
    color: #e8bd42;
    font-size: 16px;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.srra-content h1 {
    margin: 0 0 28px;
    font-family: 'Jost';
    color: #fff;
    font-size: clamp(32px, 3.2vw, 48px);
    line-height: 1.1;
}

.srra-content p {
    margin: 0 0 24px;

    color: #d7d7d7;
    font-size: 18px;
    line-height: 1.8;
}

.srra-btn {
    width: fit-content;

    padding: 15px 35px;

    background: #e8bd42;
    color: #000;

    border-radius: 30px;

    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
}


/* TABLET */

@media (max-width: 991px) {

    .srra-section {
        flex-direction: column;
    }

    .srra-video {
        width: 100%;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .srra-content {
        width: 100%;
        padding: 60px 7%;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .srra-video {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .srra-content {
        padding: 45px 25px;
    }

    .srra-subtitle {
        font-size: 13px;
        letter-spacing: 4px;
    }

    .srra-content h1 {
        font-size: 30px;
    }

    .srra-content p {
        font-size: 15px;
        line-height: 1.7;
    }

}

/*Video End*/

/*Start Carousel*/
/* ==========================================
   SR MIRACLE SALON - GALLERY
   CLASS NAME : srggal-section
========================================== */

.srggal-section {
    width: 100%;
    padding: 20px 0 75px;
    background: #0d0d0f;
    overflow: hidden;
}

.srggal-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* ---------- HEADING ---------- */

.srggal-heading {
    text-align: center;
    margin-bottom: 45px;
}

.srggal-heading span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #b08d57;
}

.srggal-heading h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    font-family: 'Jost';
}

.srggal-heading h2 strong {
    color: #b08d57;
}

.srggal-heading p {
    max-width: 600px;
    margin: 15px auto 0;
    color: #777777;
    font-size: 15px;
    line-height: 1.7;
}


/* ---------- CAROUSEL ---------- */

.srggal-carousel {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
}

.srggal-track-wrapper {
    width: 100%;
    overflow: hidden;
}

.srggal-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}


/* ---------- IMAGE CARD ---------- */

.srggal-item {
    flex: 0 0 35%;
    padding: 0 8px;
    box-sizing: border-box;
}

.srggal-item img {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(10%);
    transition:
        transform 0.5s ease,
        filter 0.5s ease,
        box-shadow 0.5s ease;
}

.srggal-item:hover img {
    transform: translateY(-8px);
    filter: grayscale(0%);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
}


/* ---------- ARROWS ---------- */

.srggal-arrow {
    position: relative;
    z-index: 5;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;

    border: 1px solid #b08d57;
    border-radius: 50%;

    background: #ffffff;
    color: #b08d57;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;

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

    transition: all 0.3s ease;
}

.srggal-arrow:hover {
    background: #b08d57;
    color: #ffffff;
    transform: scale(1.08);
}


/* ---------- VIEW MORE ---------- */

.srggal-viewmore {
    text-align: center;
    margin-top: 42px;
}

.srggal-viewmore a {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-width: 155px;
    padding: 13px 25px;

    border: 1px solid #b08d57;
    background: #111111;
    color: #ffffff;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    transition: all 0.35s ease;
}

.srggal-viewmore a span {
    font-size: 19px;
    transition: transform 0.3s ease;
}

.srggal-viewmore a:hover {
    background: #b08d57;
    border-color: #b08d57;
    color: #ffffff;
}

.srggal-viewmore a:hover span {
    transform: translateX(5px);
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1199px) {

    .srggal-section {
        padding: 75px 0 65px;
    }

    .srggal-heading h2 {
        font-size: 36px;
    }

    .srggal-item {
        flex: 0 0 33.333333%;
    }

    .srggal-item img {
        height: 300px;
    }

}


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

@media (max-width: 991px) {

    .srggal-section {
        padding: 65px 0 55px;
    }

    .srggal-container {
        width: 90%;
    }

    .srggal-heading {
        margin-bottom: 35px;
    }

    .srggal-heading h2 {
        font-size: 32px;
    }

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

    .srggal-carousel {
        gap: 10px;
    }

    .srggal-item {
        flex: 0 0 33.333333%;
        padding: 0 6px;
    }

    .srggal-item img {
        height: 280px;
    }

    .srggal-arrow {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

}


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

@media (max-width: 767px) {

    .srggal-section {
        padding: 55px 0 50px;
    }

    .srggal-heading span {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .srggal-heading h2 {
        font-size: 28px;
    }

    .srggal-heading p {
        font-size: 13px;
        line-height: 1.6;
    }

    .srggal-item {
        flex: 0 0 50%;
        padding: 0 5px;
    }

    .srggal-item img {
        height: 260px;
    }

    .srggal-arrow {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .srggal-viewmore {
        margin-top: 32px;
    }

}


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

@media (max-width: 575px) {

    .srggal-section {
        padding: 45px 0 45px;
    }

    .srggal-container {
        width: 92%;
    }

    .srggal-heading {
        margin-bottom: 28px;
    }

    .srggal-heading span {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .srggal-heading h2 {
        font-size: 25px;
    }

    .srggal-heading p {
        font-size: 12px;
        max-width: 330px;
    }

    .srggal-carousel {
        gap: 7px;
    }

    .srggal-item {
        flex: 0 0 100%;
        padding: 0 3px;
    }

    .srggal-item img {
        width: 100%;
        height: 340px;
    }

    .srggal-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        background: rgba(255, 255, 255, 0.92);
    }

    .srggal-arrow:hover {
        transform: translateY(-50%) scale(1.08);
    }

    .srggal-prev {
        left: 10px;
    }

    .srggal-next {
        right: 10px;
    }

    .srggal-viewmore {
        margin-top: 28px;
    }

    .srggal-viewmore a {
        min-width: 140px;
        padding: 11px 20px;
        font-size: 10px;
    }

}


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

@media (max-width: 380px) {

    .srggal-item img {
        height: 300px;
    }

    .srggal-heading h2 {
        font-size: 23px;
    }

}
/*End Carousel*/