/* ============================================================
   Jawed Habib Hair & Beauty Salon — style.css
   Color Palette:
     Deep Charcoal  : #1a1a1a
     Rich Gold      : #c9a84c
     Gold Light     : #e3c070
     Champagne      : #f5e6c8
     Off White      : #fdf8f0
     Warm Ivory     : #fefcf7
     Soft Brown     : #8b6914
   Fonts: Cormorant Garamond (headings) + Jost (body)
============================================================ */

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --gold:         #df324d;
  --gold-light:   #df324d;
  --gold-dark:    #dd1d3b;
  --champagne:    #f5e6c8;
  --charcoal:     #1a1a1a;
  --charcoal-2:   #2d2d2d;
  --charcoal-3:   #3f3f3f;
  --off-white:    #fdf8f0;
  --ivory:        #fefcf7;
  --text-dark:    #1a1a1a;
  --text-mid:     #4a4a4a;
  --text-light:   #7a7a7a;
  --border:       #e8dcc8;
  --shadow-sm:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.18);
  --shadow-gold:  0 8px 32px rgba(201,168,76,0.22);
  --radius:       12px;
  --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   GLOBAL RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--ivory);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--charcoal);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.section-padding { padding: 90px 0; }

/* ============================================================
   UTILITY
============================================================ */
.text-gold { color: var(--gold) !important; }

.section-label {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.section-subtitle, .section-desc {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.85;
}
.section-desc { margin: 0 0 16px; max-width: 100%; }

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary-custom {
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff !important;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}
.btn-primary-custom::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transition: left 0.4s ease;
}
.btn-primary-custom:hover::after { left: 0; }
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.35);
  color: #fff !important;
}

.btn-outline-custom {
  display: inline-block;
  padding: 13px 34px;
  background: transparent;
  color: #fff !important;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 0;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-book {
  display: inline-block;
  padding: 10px 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.35); }

/* ============================================================
   TOP BAR
============================================================ */
.topbar {
  background: #dd1d3b;
  padding: 9px 0;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--charcoal-2);
}
.topbar-link {
  color: rgba(255,255,255,0.78);
  transition: var(--transition);
  white-space: nowrap;
}
.topbar-link:hover { color: var(--gold); }
.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--charcoal-2);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  transition: var(--transition);
}
.topbar-social:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

/* ============================================================
   HEADER / NAVBAR
============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  z-index: 1050;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
}

.navbar { padding: 14px 0; }

.brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.5px;
}
.brand-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-link {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--charcoal-3) !important;
  padding: 8px 12px !important;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 24px); }
.nav-link:hover { color: var(--gold) !important; }

/* Custom Toggler */
.navbar-toggler {
  border: none;
  background: none;
  padding: 6px;
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer;
}
.toggler-bar {
  display: block;
  width: 26px; height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.navbar-toggler:focus { box-shadow: none; }

/* ============================================================
   HERO CAROUSEL
============================================================ */
.hero-section { position: relative; }

.hero-img {
  height: 100vh;
  min-height: 580px;
  max-height: 820px;
  object-fit: cover;
  width: 100%;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.78) 0%,
    rgba(26,26,26,0.48) 50%,
    rgba(201,168,76,0.18) 100%
  );
}

.carousel-caption {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  text-align: center;
  z-index: 10;
  padding: 0;
  bottom: auto;
}

.hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  animation: fadeInDown 0.9s both;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  animation: fadeInUp 0.9s 0.2s both;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  animation: fadeIn 0.9s 0.4s both;
}

.hero-btns { animation: fadeInUp 0.9s 0.5s both; }

/* Carousel Controls */
.carousel-control-prev, .carousel-control-next {
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  opacity: 1;
  transition: var(--transition);
}
.carousel-control-prev:hover, .carousel-control-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.carousel-indicators [data-bs-target] {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.5);
  border: none;
  transition: var(--transition);
}
.carousel-indicators .active { background: var(--gold); width: 44px; }

/* ============================================================
   ABOUT
============================================================ */
.about-section { background: var(--ivory); }

.about-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-img {
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.badge-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.about-pattern {
  position: absolute;
  top: -18px; left: -18px;
  width: 80px; height: 80px;
  border-top: 4px solid var(--gold);
  border-left: 4px solid var(--gold);
  z-index: -1;
}
.about-feature {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  display: flex;
  align-items: center;
}

/* ============================================================
   SERVICES
============================================================ */
.services-section { background: var(--off-white); }

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-card:hover .service-img { transform: scale(1.08); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.45), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-overlay { opacity: 1; }

.service-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.service-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}
.btn-service {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 2px solid var(--gold);
  padding: 9px 20px;
  border-radius: 0;
  transition: var(--transition);
  align-self: flex-start;
}
.btn-service:hover {
  background: var(--gold);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-section { background: var(--ivory); }

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.4s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::before { width: 100%; }

.why-icon {
  width: 52px; height: 52px;
  background: var(--champagne);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); color: #fff; }
.why-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.why-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin: 0; }

/* ============================================================
   COUNTER
============================================================ */
.counter-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-box {
  position: relative;
  padding: 10px;
}
.counter-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.85;
}
.counter-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: inline;
}
.counter-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  display: inline;
}
.counter-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-section { background: var(--off-white); }

.how-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.how-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.how-step {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--champagne);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  user-select: none;
}
.how-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}
.how-card:hover .how-icon { transform: rotate(10deg) scale(1.08); }
.how-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.how-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin: 0; }

.how-connector {
  position: absolute;
  top: 50%; right: -28px;
  width: 28px; height: 2px;
  background: var(--gold);
  z-index: 1;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery-section { background: var(--ivory); }

.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-btn {
  padding: 9px 24px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  height: 240px;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-card:hover .gallery-img { transform: scale(1.1); }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.52);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  opacity: 0;
  transition: var(--transition);
}
.gallery-card:hover .gallery-hover { opacity: 1; }

/* Gallery item hidden state */
.gallery-item.hidden { display: none; }

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 3px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(201,168,76,0.3);
  animation: lightboxIn 0.35s ease;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: var(--gold);
  color: #fff;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold-dark); transform: rotate(90deg); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonial-section { background: var(--charcoal); }
.testimonial-section .section-label { color: var(--gold-light); }
.testimonial-section .section-label::before { background: var(--gold-light); }
.testimonial-section .section-title { color: #fff; }
.testimonial-section .section-subtitle { color: rgba(255,255,255,0.6); }

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}

.stars { font-size: 1rem; color: var(--gold); letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; color: #fff; font-size: 0.95rem; margin-bottom: 2px; }
.author-loc { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.testimonial-prev, .testimonial-next {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  opacity: 1;
  position: relative;
  margin-top: 36px;
  color: #fff;
  font-size: 1.2rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testimonial-prev:hover, .testimonial-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.testimonial-prev { left: auto; right: auto; }
.testimonial-next { left: auto; right: auto; }

/* ============================================================
   FAQ
============================================================ */
.faq-section { background: var(--off-white); }

.faq-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--gold) !important; box-shadow: var(--shadow-sm); }

.faq-btn {
  background: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 18px 22px;
  box-shadow: none !important;
  border: none;
}
.faq-btn:not(.collapsed) {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-2));
  color: #fff;
}
.faq-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a84c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.faq-body {
  background: #fff;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 16px 22px 20px;
}

/* ============================================================
   CONTACT
============================================================ */
.contact-section { background: var(--ivory); }

.contact-info-box {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 40px 36px;
  height: 100%;
}
.contact-info-title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-item:last-of-type { margin-bottom: 0; }
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong { color: rgba(255,255,255,0.9); display: block; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-item p { color: rgba(255,255,255,0.62); font-size: 0.9rem; line-height: 1.65; margin: 0; }
.contact-info-item a { color: rgba(255,255,255,0.62); }
.contact-info-item a:hover { color: var(--gold); }

.contact-socials { display: flex; gap: 10px; }
.contact-social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.contact-social-btn:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }

.contact-form { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.form-label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-mid); margin-bottom: 6px; }
.contact-input {
  border-radius: 0;
  border: 1.5px solid var(--border);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--ivory);
  transition: var(--transition);
}
.contact-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: #fff;
  outline: none;
}

.map-wrapper { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.salon-map { display: block; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--charcoal-2);    overflow-x: hidden; }

.footer-top { padding: 70px 0 40px; }

.brand-icon-sm {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand-tagline { font-size: 0.65rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.75; }

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.52);
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px;
  line-height: 1.65;
}
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--gold); }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   FLOATING ICONS
============================================================ */
.floating-icons {
  position: fixed;
  bottom: 28px; left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9000;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px 0 0;
  height: 50px;
  border-radius: 50px;
  color: #fff !important;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.float-btn i {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}
.float-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.4s ease, opacity 0.4s ease;
}
.float-btn:hover .float-label { max-width: 120px; opacity: 1; }
.float-btn:hover { transform: scale(1.06); }

.float-call { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.float-whatsapp { background: linear-gradient(135deg, #25D366, #1da851); }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 20px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9000;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px) scale(1.08); }

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991.98px) {
  .section-padding { padding: 70px 0; }
  .hero-img { height: 75vh; min-height: 460px; }
  .about-img { height: 380px; }
  .about-badge { bottom: -14px; right: -10px; }
  .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 16px 20px 20px;
    margin-top: 8px;
    box-shadow: var(--shadow-md);
  }
  .nav-link::after { display: none; }
  .btn-book { display: inline-block; margin-top: 10px; }
}
#callme1 {
    position: fixed;
    right: 7px;
    bottom: 248px;
    width: 63px;
    height: 70px;
    cursor: pointer;
    z-index: 99990;
}

#callme1 img {
    width: 57px;
}

.whatsup img {
    width: 50px;
}

.whatsup {
    position: fixed;
    right: 10px;
    width: 50px;
    bottom: 180px;
    z-index: 9999;
}
.cu-lg-wdth{
	width:220px;
}
.cu-wh-bn{
	Color:#fff!important
}
@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
  .section-padding { padding: 56px 0; 
  overflow-x: hidden;

  
  }
  .hero-img { height: 65vh; min-height: 380px; }
  .hero-title { font-size: 2.1rem; }
  .hero-desc { font-size: 0.9rem; }
  .hero-btns .btn-primary-custom, .hero-btns .btn-outline-custom { padding: 11px 22px; font-size: 0.78rem; }
  .about-img { height: 280px; }
  .about-badge { padding: 14px 18px; }
  .badge-number { font-size: 2rem; }
  .counter-number { font-size: 2.5rem; }
  .gallery-card { height: 180px; }
  .contact-form { padding: 24px; }
  .contact-info-box { padding: 28px 22px; }
  .footer-top { padding: 50px 0 30px; }
  .section-title { font-size: 1.9rem; }
  .how-connector { display: none !important; }
}

@media (max-width: 575.98px) {
  .topbar-info { flex-direction: column; gap: 4px !important; align-items: center; }
  .carousel-control-prev, .carousel-control-next { width: 40px; height: 40px; margin: 0 8px; }
  .hero-btns { display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .hero-btns .btn-outline-custom { margin-left: 0 !important; }
  .gallery-card { height: 150px; }
  .float-btn i { width: 44px; height: 44px; }
  .float-btn { height: 44px; }
}

/* Smooth section scroll highlight nav */
.nav-link.active-section { color: var(--gold) !important; }
#enu-st{
	display:block;
	width:100%;
	background-color:#dd1d3b;
	Color:#fff;
}