/*logo */

                        .logo-brand{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo-brand img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:12px;
    margin-right:12px;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.logo-title{
    font-size:20px;
    font-weight:700;
    color:#ffffff;
    font-family:"Cormorant Garamond', serif;
}

.logo-subtitle{
    font-size:12px;
    color:#d6b36a;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-top:2px;
    font-family:"Cormorant Garamond', serif;
}

/* Mobile */

@media(max-width:991px){

.logo-brand img{
    width:70px;
    height:70px;
}

.logo-title{
    font-size:20px;
}

.logo-subtitle{
    font-size:10px;
    letter-spacing:2px;
}

}
                
                    /*logo end*/

/*footer logo */


                    .footer-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    margin-bottom:60px;
}

.footer-logo-line{
    flex:1;
    height:1px;
    background:rgba(255,255,255,0.15);
}

.footer-brand{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.footer-brand img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:15px;
    margin-right:15px;
    transition:.4s;
}

.footer-brand:hover img{
    transform:scale(1.05);
}

.footer-logo-text{
    display:flex;
    flex-direction:column;
}

.footer-logo-title{
    font-size:20px;
    font-weight:700;
    color:#ffffff;
    line-height:1;
    font-family:'Cormorant Garamond', serif;
}

.footer-logo-subtitle{
    font-size:10px;
    color:#d6b36a;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-top:6px;
}

/* Mobile */

@media(max-width:767px){

.footer-logo{
    flex-direction:column;
    gap:20px;
}

.footer-logo-line{
    width:100%;
}

.footer-brand{
    justify-content:center;
}

.footer-brand img{
    width:60px;
    height:60px;
}

.footer-logo-title{
    font-size:20px;
}

.footer-logo-subtitle{
    font-size:10px;
    letter-spacing:2px;
}

}
               

/*footer logo end*/

/* =========================
   PREMIUM SERVICES SECTION
========================= */
.hd-premium-services-wrap {
    background: #f8f4ef;
    padding: 80px 0 90px;
    overflow: hidden;
    position: relative;
}

.hd-premium-services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 18px;
}

.hd-premium-small-title {
    font-size: 13px;
    letter-spacing: 3.2px;
    color: #b58b45;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.hd-premium-main-title {
    font-size: 42px;
    margin-top: 8px;
    font-family: Georgia, "Times New Roman", serif;
    color: #221d18;
    font-weight: 500;
    line-height: 1.15;
}

.hd-view-services-btn {
    background: #0d0d0d;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.hd-view-services-btn:hover {
    background: #b58b45;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(181, 139, 69, 0.25);
}

.hd-view-services-btn span {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.hd-view-services-btn:hover span {
    transform: translateX(4px);
}

/* ===== OUTER WRAPPER (prevents half-card cut-off) ===== */
.hd-slider-outer {
    overflow: hidden;
    margin: 0 -8px;
    padding: 0 8px;
}

/* ===== SLIDER ===== */
.hd-premium-services-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 12px 4px 28px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hd-premium-services-slider::-webkit-scrollbar {
    display: none;
}

/* ===== CARDS ===== */
.hd-premium-card {
    flex: 0 0 260px;
    width: 260px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    scroll-snap-align: start;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.45s ease;
}

.hd-premium-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hd-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 22px 24px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.05) 100%
    );
    transition: background 0.4s ease;
}

.hd-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(207, 165, 92, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #cfa55c;
    margin-bottom: 14px;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    transition: all 0.35s ease;
}

.hd-card-overlay h3 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.hd-card-overlay a {
    color: #d7af65;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.1px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.hd-card-overlay a:hover {
    color: #f0d48a;
    gap: 8px;
}

/* Hover states */
.hd-premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.14);
}

.hd-premium-card:hover img {
    transform: scale(1.07);
}

.hd-premium-card:hover .hd-card-icon {
    background: rgba(181, 139, 69, 0.25);
    border-color: #cfa55c;
    transform: scale(1.08);
}

/* =========================
   RESPONSIVE
========================= */

/* Desktop – exactly 5 full cards, no half cut-off */
@media (min-width: 1200px) {
    .hd-premium-card {
        flex: 0 0 calc(20% - 16px);
        width: calc(20% - 16px);
        min-width: 0;
    }
}

/* Large tablets / small desktops */
@media (max-width: 1199px) and (min-width: 992px) {
    .hd-premium-card {
        flex: 0 0 240px;
        width: 240px;
    }
    .hd-premium-main-title {
        font-size: 38px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .hd-premium-services-wrap {
        padding: 70px 0 80px;
    }
    .hd-premium-main-title {
        font-size: 32px;
    }
    .hd-premium-services-header {
        gap: 16px;
    }
    .hd-view-services-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 28px;
    }
    .hd-premium-card {
        flex: 0 0 70%;
        width: 70%;
        max-width: 340px;
        scroll-snap-align: center;
    }
    .hd-premium-card img {
        height: 360px;
    }
    .hd-card-overlay h3 {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hd-premium-services-wrap {
        padding: 55px 0 65px;
    }
    .hd-premium-main-title {
        font-size: 26px;
    }
    .hd-premium-small-title {
        font-size: 12px;
        letter-spacing: 2.5px;
    }
    .hd-premium-card {
        flex: 0 0 85%;
        width: 85%;
        max-width: 300px;
    }
    .hd-premium-card img {
        height: 320px;
    }
    .hd-card-overlay {
        padding: 18px 18px 20px;
    }
    .hd-card-overlay h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .hd-card-icon {
        width: 46px;
        height: 46px;
        font-size: 16px;
        margin-bottom: 12px;
    }
}




/* =========================================================
   HD HERO – PREMIUM VERSION (isolated)
========================================================= */

.hd-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0b0b;
}

.hd-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hd-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(8,8,8,0.88) 0%,
      rgba(8,8,8,0.70) 38%,
      rgba(8,8,8,0.28) 72%,
      rgba(8,8,8,0.12) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.hd-hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 160px 40px 210px;
}

.hd-hero-content {
  max-width: 600px;
}

/* Subtitle */
.hd-hero-subtitle {
  display: inline-block;
  color: #c79a56;
  font-size: 13px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}

/* Title */
.hd-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.hd-hero-line {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.hd-hero-gold-line {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 62px;
  height: 3.5px;
  background: #d4a24c;
  border-radius: 20px;
}

.hd-hero-gold {
  color: #d8ae67;
}

/* Description */
.hd-hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #d0d0d0;
  max-width: 460px;
  margin-bottom: 30px;
}

/* Buttons */
.hd-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hd-hero-btn {
  height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s ease;
}

.hd-hero-btn-primary {
  background: linear-gradient(135deg, #ddb26e 0%, #c79a56 55%, #b08846 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(199,154,86,0.28);
}

.hd-hero-btn-primary:hover {
  background: linear-gradient(135deg, #e6bd7c 0%, #c79a56 55%, #a67a3d 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(199,154,86,0.38);
}

.hd-hero-btn-outline {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}

.hd-hero-btn-outline:hover {
  background: #c79a56;
  border-color: #c79a56;
  color: #fff;
}

/* ===== REVIEW ROW (Avatars left + Score right) ===== */
.hd-hero-review {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hd-hero-avatars {
  display: flex;
  align-items: center;
}

.hd-hero-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #1a1a1a;
  margin-left: -12px;
  background: #333;
}

.hd-hero-avatar:first-child {
  margin-left: 0;
}

.hd-hero-score-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hd-hero-score-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hd-hero-stars {
  display: flex;
  gap: 2px;
  color: #d4a24c;
  font-size: 13px;
}

.hd-hero-score-num {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.hd-hero-reviews {
  font-size: 14px;
  color: #c8c8c8;
}

.hd-hero-trusted {
  font-size: 13.5px;
  color: #b8b8b8;
  margin: 0;
}

/* ===== PREMIUM STATS BAR – Full Width & Bottom ===== */
.hd-hero-stats-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 0;
}

.hd-hero-stats {
  width: 100%;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  border-radius: 0;
}

.hd-hero-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.hd-hero-stat:last-child {
  border-right: none;
}

.hd-hero-stat:hover {
  background: rgba(255, 255, 255, 0.03);
}

.hd-hero-stat i {
  font-size: 22px;
  color: #d4a24c;
  flex-shrink: 0;
}

.hd-hero-stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hd-hero-stat-text strong {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.hd-hero-stat-text span {
  font-size: 13px;
  color: #b0b0b0;
  font-weight: 400;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .hd-hero-title {
    font-size: 54px;
  }
  .hd-hero-stat-text strong {
    font-size: 18px;
  }
}

/* =========================================================
   TABLET / MOBILE
   KEY FIX: .hd-hero is `display:flex` with default row direction.
   The stats bar switches from position:absolute to position:relative
   below, which makes it a real flex item that was sitting BESIDE
   .hd-hero-container (that's why it floated to the right on mobile).
   Adding flex-direction: column here stacks them properly, full width,
   exactly like the desktop layout.
========================================================= */
@media (max-width: 991px) {
  .hd-hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-bottom: 0;
  }

  .hd-hero-container {
    width: 100%;
    padding: 130px 24px 50px;
  }

  .hd-hero-content {
    max-width: 100%;
  }

  .hd-hero-title {
    font-size: 48px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  }

  .hd-hero-desc {
    max-width: 100%;
    font-size: 17px;
  }

  .hd-hero-gold-line {
    width: 52px;
    bottom: -6px;
  }

  .hd-hero-btns {
    width: 100%;
  }

  .hd-hero-btn {
    height: 46px;
    padding: 0 22px;
    font-size: 14px;
    flex: 0 1 auto;
    width: auto;
  }

  /* Review row: avatars, then rating, then trusted line — stacked, compact */
  .hd-hero-review {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hd-hero-stats-wrap {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 30px;
    flex-shrink: 0;
  }

  .hd-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hd-hero-stat {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 12px;
  }

  .hd-hero-stat:nth-child(2n) {
    border-right: none;
  }

  .hd-hero-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 575px) {
  .hd-hero-container {
    padding: 150px 28px 40px;
  }

  .hd-hero-title {
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }

  .hd-hero-gold-line {
    width: 40px;
    height: 3px;
    bottom: -5px;
  }

  .hd-hero-subtitle {
    font-size: 11px;
    letter-spacing: 2.2px;
    margin-bottom: 12px;
  }

  .hd-hero-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  /* Compact, side-by-side buttons instead of big full-width stacked ones */
  .hd-hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hd-hero-btn {
    width: auto;
    flex: 0 1 auto;
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
    border-radius: 8px;
    justify-content: center;
  }

  /* Neat stacked review block: avatars on top, rating below, trusted line last */
  .hd-hero-review {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .hd-hero-avatars {
    flex-shrink: 0;
  }

  .hd-hero-avatar {
    width: 28px;
    height: 28px;
    margin-left: -9px;
    border-width: 2px;
  }

  .hd-hero-avatar:first-child {
    margin-left: 0;
  }

  .hd-hero-score-block {
    gap: 2px;
  }

  .hd-hero-score-top {
    gap: 6px;
  }

  .hd-hero-stars {
    font-size: 11px;
  }

  .hd-hero-score-num {
    font-size: 13px;
  }

  .hd-hero-reviews {
    font-size: 11.5px;
  }

  .hd-hero-trusted {
    font-size: 11px;
    letter-spacing: 0.15px;
  }

  .hd-hero-stats-wrap {
    margin-top: 24px;
  }

  .hd-hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hd-hero-stat {
    padding: 16px 8px;
    gap: 8px;
  }

  .hd-hero-stat i {
    font-size: 16px;
  }

  .hd-hero-stat-text strong {
    font-size: 15px;
  }

  .hd-hero-stat-text span {
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .hd-hero-stats {
    grid-template-columns: 1fr;
  }

  .hd-hero-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hd-hero-stat:last-child {
    border-bottom: none;
  }
}


/*Virtual Hairstyle Try-On Section Start */


  :root{
    --gold: #c8a15a;
    --gold-light: #d9b876;
    --cream: #f6f1e7;
    --page-bg: #f2ede2;
    --dark: #141210;
    --dark-2: #1c1a17;
    --text-light: #f3ede1;
    --text-dark: #2b2620;
    --text-dark-muted: #6f6a5f;
  }

  *{ box-sizing: border-box; }
  html, body{ margin:0; padding:0; overflow-x: hidden; }

  body{
    font-family: 'Poppins', sans-serif;
    background: var(--page-bg);
  }

  /* ---------- OUTER WRAPPER ---------- */
  .ba-wrapper{
    width: 100%;
    padding: clamp(40px, 6vw, 90px) clamp(16px, 4vw, 32px);
  }

  /* ---------- CARD CONTAINER ---------- */
  .ba-section{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
    max-width: 1360px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px -25px rgba(20,18,16,0.4);
  }

  /* ---------- BEFORE & AFTER PANEL ---------- */
  .ba-panel{
    background: radial-gradient(130% 130% at 0% 0%, var(--dark-2) 0%, var(--dark) 60%);
    padding: clamp(36px, 5vw, 64px) clamp(24px, 4.5vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-width: 0;
  }

  .eyebrow{
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    font-size: 11.5px;
    letter-spacing: 2.6px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 14px;
    user-select: none;
  }

  .eyebrow::after{
    content:"";
    height: 1px;
    width: 42px;
    background: var(--gold);
    opacity: 0.6;
  }

  .ba-panel h2{
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(24px, 2.5vw, 33px);
    line-height: 1.15;
    color: var(--text-light);
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .ba-panel h2 .rule{
    height: 1px;
    width: 56px;
    background: var(--gold);
    display: inline-block;
    flex-shrink: 0;
  }

  .ba-slider-wrap{
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9.5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
  }

  .ba-slider-wrap img{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
  }

  .ba-after-wrap{
    position: absolute;
    top:0; left:0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(0 0 0 50%);
  }

  .ba-tag{
    position: absolute;
    top: 16px;
    padding: 6px 14px;
    background: rgba(15,13,12,0.8);
    backdrop-filter: blur(4px);
    color: #fdfbf6;
    font-size: 10.5px;
    letter-spacing: 1.8px;
    font-weight: 500;
    border-radius: 4px;
    z-index: 3;
    user-select: none;
    pointer-events: none;
  }
  .ba-tag.before{ left: 16px; }
  .ba-tag.after{ right: 16px; }

  .ba-handle{
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 2px;
    background: rgba(255,255,255,0.85);
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 4;
    touch-action: none;
  }

  .ba-handle-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  }

  .ba-handle-btn svg{ width: 11px; height: 11px; }

  .ba-link{
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 400;
    width: fit-content;
    transition: color .25s ease, gap .25s ease;
  }

  .ba-link svg{ width: 15px; height: 15px; stroke: var(--gold); transition: transform .25s ease; flex-shrink:0; }
  .ba-link:hover{ color: var(--gold-light); gap: 13px; }
  .ba-link:hover svg{ transform: translateX(3px); }

  /* ---------- AI HAIR STUDIO PANEL ---------- */
  .ai-panel{
    background: linear-gradient(180deg, #f9f5eb 0%, var(--cream) 100%);
    padding: clamp(36px, 5vw, 64px) clamp(24px, 4.5vw, 52px);
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
    gap: clamp(18px, 3vw, 30px);
    min-width: 0;
  }

  .ai-copy{ min-width: 0; }
  .ai-copy .eyebrow{ color: #a9853f; }
  .ai-copy .eyebrow::after{ background: #a9853f; }

  .ai-title-row{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }

  .ai-panel h2{
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(20px, 2.15vw, 29px);
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: 0.2px;
    margin: 0;
  }

  .beta-pill{
    background: var(--gold);
    color: var(--dark);
    font-size: 9.5px;
    letter-spacing: 1.2px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    white-space: nowrap;
    user-select: none;
  }

  .ai-panel p.desc{
    color: var(--text-dark-muted);
    font-size: 13.5px;
    line-height: 1.7;
    max-width: 360px;
    margin: 0 0 30px;
  }

  /* ---------- STEPS: connected-line timeline (no wrap artifacts) ---------- */
  .ai-steps{
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 32px;
  }

  .ai-steps::before{
    content: "";
    position: absolute;
    top: 24px;
    left: calc(12.5% - 2px);
    right: calc(12.5% - 2px);
    height: 1px;
    background: linear-gradient(to right, transparent, #d3c39c 12%, #d3c39c 88%, transparent);
    z-index: 0;
  }

  .ai-step{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .ai-step .icon-circle{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #d8cbaa;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfbf6;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(120,95,40,0.08);
    transition: border-color .2s ease, transform .2s ease;
  }

  .ai-step .icon-circle svg{
    width: 19px;
    height: 19px;
    stroke: var(--gold);
    fill: none;
  }

  .ai-step span{
    font-size: 11px;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.1px;
  }

  .cta-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 14px 25px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 10px 24px -10px rgba(200,161,90,0.6);
  }

  .cta-btn svg{ width: 14px; height: 14px; transition: transform .25s ease; }
  .cta-btn:hover{ background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 14px 28px -10px rgba(200,161,90,0.7); }
  .cta-btn:hover svg{ transform: translateX(3px); }

  /* ---------- PHONE MOCK ---------- */
  .phone-mock{
    width: clamp(120px, 12vw, 176px);
    aspect-ratio: 176 / 362;
    background: #0c0b0a;
    border-radius: 10%/5%;
    padding: 7px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.28);
    position: relative;
    justify-self: end;
    flex-shrink: 0;
  }

  .phone-notch{
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 34%;
    height: 4.5%;
    background: #0c0b0a;
    border-radius: 0 0 30% 30%;
    z-index: 5;
  }

  .phone-screen{
    width: 100%;
    height: 100%;
    border-radius: 8%/4%;
    overflow: hidden;
    position: relative;
  }

  .phone-screen img.main-shot{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .phone-thumbs{
    position: absolute;
    bottom: 5%;
    left: 5%;
    right: 5%;
    display: flex;
    gap: 5%;
  }

  .phone-thumbs div{
    flex: 1;
    aspect-ratio: 1;
    border-radius: 15%;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.85);
  }

  .phone-thumbs img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1024px){
    .ba-section{ grid-template-columns: 1fr; border-radius: 16px; }
    .ai-panel{ grid-template-columns: 1fr; text-align: left; }
    .phone-mock{ justify-self: center; margin: 32px auto 0; width: clamp(150px, 40vw, 190px); }
    .ai-steps{ grid-template-columns: repeat(4, minmax(0,1fr)); }
  }

  @media (max-width: 560px){
    .ba-slider-wrap{ aspect-ratio: 4/3.4; }
    .ba-section{ border-radius: 14px; }
    .ai-steps{ grid-template-columns: repeat(2, minmax(0,1fr)); row-gap: 26px; }
    .ai-steps::before{ display: none; }
  }



/*index--- maps */
 
 
  :root{
    --gold: #c8a15a;
    --gold-light: #d9b876;
    --cream: #f6f1e7;
    --page-bg: #faf7f0;
    --dark: #141210;
    --dark-2: #1c1a17;
    --text-dark: #2b2620;
    --text-muted: #726c60;
  }

  *{ box-sizing: border-box; }
  html, body{ margin:0; padding:0; overflow-x:hidden; }
  body{ font-family:'Poppins', sans-serif; background: var(--page-bg); }

  a{ text-decoration:none; }

  /* ============ HEADER BAND ============ */
  .loc-header{
    position: relative;
    background:
      linear-gradient(180deg, rgba(15,13,11,0.72) 0%, rgba(15,13,11,0.82) 100%),
      url('/images/new/maps-bg-0.png') center/cover;
    padding: clamp(56px, 8vw, 90px) 24px clamp(64px, 9vw, 96px);
    text-align: center;
    color: #f3ede1;
  }

  .loc-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .loc-eyebrow::before, .loc-eyebrow::after{
    content:"";
    height: 1px;
    width: 32px;
    background: var(--gold);
    opacity: 0.7;
  }

  .loc-header h1{
    font-family:'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(30px, 4.2vw, 48px);
    letter-spacing: 1px;
    margin: 0 0 14px;
  }

  .loc-header p{
    font-size: clamp(14px, 1.6vw, 16px);
    color: #d8d2c4;
    margin: 0 auto;
    max-width: 500px;
  }

  .loc-header .rule-dot{
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
    margin: 22px auto 0;
  }

  /* ============ MAP + GALLERY ROW ============ */
  .loc-wrapper{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
    position: relative;
    z-index: 2;
  }

  .loc-cards-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: -56px;
  }

  .card-panel{
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 55px -20px rgba(20,18,16,0.25);
    padding: 20px;
  }

  /* ---- Map card ---- */
  .map-panel{ position: relative; min-height: 380px; }

  .map-info-card{
    position: absolute;
    top: 20px; left: 20px; right: 20px;
    z-index: 3;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(20,18,16,0.15);
    padding: 18px 20px;
  }

  .map-info-top{ display:flex; align-items:flex-start; gap: 12px; }

  .map-pin-icon{
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--dark);
    display:flex; align-items:center; justify-content:center;
    flex-shrink: 0;
  }
  .map-pin-icon svg{ width:18px; height:18px; stroke:var(--gold); fill:none; }

  .map-info-top h3{
    font-family:'Playfair Display', serif;
    font-size: 16px;
    color: var(--text-dark);
    margin: 2px 0 4px;
  }

  .map-info-top .addr{
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 6px;
  }

  .map-rating{
    display:flex; align-items:center; gap:6px;
    font-size: 12.5px; color: var(--text-dark); font-weight: 500;
  }
  .map-rating .stars{ color: var(--gold); letter-spacing: 1px; }
  .map-rating .count{ color: var(--text-muted); font-weight: 400; }

  .map-btn-row{ display:flex; gap:10px; margin-top: 14px; }

  .map-btn{
    flex: 1;
    display:flex; align-items:center; justify-content:center; gap: 7px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 11px 10px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid var(--dark);
    transition: all .2s ease;
    white-space: nowrap;
  }
  .map-btn svg{ width: 12px; height: 12px; }

  .map-btn.solid{ background: var(--dark); color:#fff; }
  .map-btn.solid:hover{ background:#000; }
  .map-btn.outline{ background:#fff; color: var(--dark); }
  .map-btn.outline:hover{ background: var(--cream); }

  .map-embed{
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 10px;
    overflow: hidden;
    filter: saturate(0.55) brightness(1.04) sepia(0.12);
  }
  .map-embed iframe{ width:100%; height:100%; border:0; display:block; }

  /* ---- Exterior gallery card ---- */
  .exterior-panel h3{
    font-family:'Playfair Display', serif;
    font-size: 19px;
    color: var(--text-dark);
    margin: 4px 0 4px 6px;
  }
  .exterior-panel .mini-rule{
    width: 42px; height: 1px; background: var(--gold);
    margin: 0 0 16px 6px;
  }

  .exterior-grid{
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 10px;
    height: calc(100% - 56px);
  }

  .exterior-main img{
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display:block;
  }

  .exterior-side{ display:flex; flex-direction:column; gap:10px; }
  .exterior-side img{
    width: 100%; flex:1;
    object-fit: cover;
    border-radius: 8px;
    display:block;
    min-height: 0;
  }

  /* ============ FEATURES ROW ============ */
  .features-row{
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 40px -18px rgba(20,18,16,0.18);
    margin-top: 24px;
    padding: clamp(24px, 3vw, 34px) clamp(20px, 3vw, 40px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .feature-item{ display:flex; align-items:flex-start; gap: 14px; }

  .feature-icon{
    width: 46px; height:46px; border-radius:50%;
    border: 1.5px solid var(--gold);
    display:flex; align-items:center; justify-content:center;
    flex-shrink: 0;
  }
  .feature-icon svg{ width:19px; height:19px; stroke:var(--gold); fill:none; }

  .feature-item h4{
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 6px 0 6px;
  }
  .feature-item p{
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
  }

  /* ============ STEP INSIDE GALLERY ============ */
  .step-inside{
    text-align: center;
    padding: clamp(48px, 6vw, 72px) 0 clamp(56px, 7vw, 80px);
  }

  .step-inside h2{
    font-family:'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(24px, 2.6vw, 32px);
    color: var(--text-dark);
    margin: 0 0 28px;
  }

  .step-gallery{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .step-gallery img{
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 35px -15px rgba(20,18,16,0.25);
  }

  /* ============ MOBILE-ONLY: SCROLL GALLERY + DOTS ============ */
  .scroll-gallery{ display:none; }
  .scroll-dots{ display:none; }

  /* ============ READY TO BOOK CTA (mobile-style banner, also shown desktop) ============ */
  .book-cta{
    max-width: 1280px;
    margin: 0 auto clamp(48px, 6vw, 72px);
    padding: 0 clamp(16px, 4vw, 32px);
  }

  .book-cta-inner{
    background: var(--dark);
    border-radius: 14px;
    padding: 26px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 20px;
    flex-wrap: wrap;
  }

  .book-cta-left{ display:flex; align-items:center; gap:16px; }

  .book-cta-icon{
    width: 48px; height:48px; border-radius: 10px;
    background: rgba(200,161,90,0.15);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .book-cta-icon svg{ width:20px; height:20px; stroke:var(--gold); fill:none; }

  .book-cta-left h4{
    font-family:'Playfair Display', serif;
    font-size: 18px;
    color:#fff;
    margin: 0 0 3px;
  }
  .book-cta-left p{
    font-size: 13px;
    color: #b8b0a2;
    margin: 0;
  }

  .book-cta-btn{
    background: var(--gold);
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s ease;
  }
  .book-cta-btn:hover{ background: var(--gold-light); }

  /* ============================================================ */
  /* RESPONSIVE                                                    */
  /* ============================================================ */
  @media (max-width: 980px){
    .loc-cards-row{ grid-template-columns: 1fr; margin-top: -40px; }
    .exterior-grid{ height: 260px; }
    .features-row{ grid-template-columns: repeat(2, 1fr); }
    .step-gallery{ grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 640px){

    .loc-header{ text-align:left; padding: clamp(40px,8vw,56px) 20px clamp(70px,12vw,90px); }
    .loc-header .rule-dot{ margin-left:0; }

    .loc-cards-row{ margin-top: -48px; }
    .card-panel{ border-radius: 14px; padding: 16px; }

    .map-panel{ min-height: 300px; }
    .map-embed{ min-height: 300px; }
    .map-info-card{ padding: 14px 16px; }
    .map-btn{ font-size: 10.5px; padding: 10px 6px; }

    /* Exterior: switch static grid -> horizontal scroll-snap carousel */
    .exterior-grid{ display:none; }
    .exterior-panel .scroll-gallery{
      display:flex;
      gap: 10px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 6px;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .exterior-panel .scroll-gallery::-webkit-scrollbar{ display:none; }
    .exterior-panel .scroll-gallery img{
      scroll-snap-align: start;
      flex: 0 0 78%;
      height: 220px;
      object-fit: cover;
      border-radius: 8px;
    }
    .scroll-dots{
      display:flex;
      justify-content:center;
      gap:6px;
      margin-top: 10px;
    }
    .scroll-dots span{
      width:6px; height:6px; border-radius:50%;
      background: #ddd5c2;
    }
    .scroll-dots span:first-child{ background: var(--gold); width:16px; border-radius:4px; }

    .features-row{
      grid-template-columns: repeat(2, 1fr);
      gap: 22px 16px;
      margin-top: 18px;
      border-radius: 12px;
    }
    .feature-icon{ width:40px; height:40px; }
    .feature-item h4{ font-size: 11.5px; }
    .feature-item p{ font-size: 11.5px; }

    .step-inside{ text-align:left; padding: 40px 20px 48px; }
    .step-inside h2{ text-align:center; }
    .step-gallery{ grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .book-cta-inner{ flex-direction: column; align-items: stretch; text-align:left; }
    .book-cta-btn{ width: 100%; }
  }
  
  
  /*cancellation policy */
  
    :root{
    --gold: #c8a15a;
    --gold-light: #d9b876;
    --page-bg: #faf7f0;
    --text-dark: #2b2620;
    --text-muted: #5c574c;
  }

  *{ box-sizing: border-box; }
  html, body{ margin:0; padding:0; overflow-x:hidden; }
  body{ font-family:'Poppins', sans-serif; background: var(--page-bg); }

  .cp-wrapper{
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 40px) clamp(16px, 4vw, 32px) clamp(48px, 6vw, 72px);
  }

  /* ============ CANCELLATION POLICY CARD ============ */
  .cp-card{
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background:
      radial-gradient(ellipse 500px 300px at 8% 15%, rgba(200,161,90,0.10), transparent 60%),
      radial-gradient(ellipse 500px 350px at 95% 90%, rgba(200,161,90,0.12), transparent 60%),
      linear-gradient(135deg, #f4ecdd 0%, #efe4cf 55%, #f2e9d8 100%);
    box-shadow: 0 25px 55px -22px rgba(60,45,20,0.25);
    padding: clamp(48px, 7vw, 76px) clamp(28px, 6vw, 60px);
    text-align: center;
  }

  .cp-card .corner-art{
    position: absolute;
    width: 260px;
    height: 260px;
    opacity: 0.55;
    stroke: #b9945f;
    fill: none;
    stroke-width: 1;
    pointer-events: none;
  }
  .cp-card .corner-art.top-left{ top: -20px; left: -20px; }
  .cp-card .corner-art.bottom-right{
    bottom: -20px; right: -20px;
    transform: rotate(180deg);
  }

  .cp-content{ position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }

  .cp-badge{
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(155deg, var(--gold-light), var(--gold));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 18px -6px rgba(200,161,90,0.6);
  }
  .cp-badge svg{ width: 19px; height: 19px; stroke:#3a2c12; fill:none; }

  .cp-eyebrow{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--gold);
    font-size: 11.5px;
    letter-spacing: 2.8px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .cp-eyebrow::before, .cp-eyebrow::after{
    content:"";
    height: 1px;
    width: 34px;
    background: var(--gold);
    opacity: 0.7;
  }

  .cp-content h2{
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--text-dark);
    margin: 0 0 18px;
  }

  .cp-divider{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 26px;
    width: 160px;
  }
  .cp-divider .line{ flex:1; height:1px; background: var(--gold); opacity:0.6; }
  .cp-divider .diamond{
    width: 7px; height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  .cp-content p{
    font-size: clamp(14px, 1.6vw, 15.5px);
    line-height: 1.85;
    color: var(--text-muted);
    margin: 0 0 14px;
  }
  .cp-content p:last-child{ margin-bottom: 0; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 640px){
    .cp-card{ border-radius: 14px; padding: 44px 22px 48px; }
    .cp-card .corner-art{ width: 180px; height: 180px; opacity: 0.4; }
    .cp-content p{ text-align:left; }
    .cp-content{ text-align: center; }
  }
  
  
 
    
  
  