@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ===========================
   SALON AT HOME — CUSTOM CSS
   =========================== */

:root {
   --navy:   #061A40;
  --royal:  #0B2A5B;
  --yellow: #F9C846;
  --cream:  #FFF8E7;  
  --muted:  #6b7280;
  --border: #e5e7eb;
  --gold: #C9A96E;
  --gold-dark: #A8844A;
  --gold-light: #E8D4A8;
  --cream: #FAF6F0;
  --beige: #F5EDE0;
  --nude: #E8D5C4;
  --nude-dark: #D4B99A;
  --dark: #2C1B0E;
  --dark-2: #4A3422;
 --text:   #1a1a2e;
  --text-light: #7A6055;
  --white: #FFFFFF;
  --section-pad: 80px 0;
    --transition: all .35s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
  color: var(--dark);
}

a { text-decoration: none; transition: all 0.3s ease; }

img { max-width: 100%; }

/* ── Utility ── */
.yellow-text   { color: var(--yellow); }
.section-pad   { padding: 100px 0; }
.bg-navy       { background: var(--navy); }

/* ===== BUTTONS ===== */
.btn-navy {
  background: linear-gradient(135deg, var(--navy), #4f5765);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}
.btn-navy:hover {
  background: linear-gradient(135deg, #A8844A 0%, #8A6A35 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 132, 74, 0.4);
}
.btn-gold {
  background: linear-gradient(135deg, var(--yellow), #f5a623);
  color: var(--navy);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}
.btn-gold:hover {
  background: #f5a623;
  color: var(--navy);
      transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(249, 200, 70, .5);
}

.btn-outline-gold {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}
.btn-whatsapp:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ===== SECTION HEADERS ===== */
.section-label {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--gold-light));
  margin: 20px auto;
  border-radius: 2px;
}

/* ===== NAVBAR ===== */
.navbar-brand .brand-name {
  font-size: 1.5rem;
  color: var(--dark);
  font-weight: 700;
}
.navbar-brand .brand-tag {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--yellow);
  display: block;
  text-transform: uppercase;
  line-height: 1;
}

.main-navbar {
  background:var(--white);
  backdrop-filter: blur(10px);
  padding: 7px 0;
  transition: all 0.3s ease;
  box-shadow: none;
}
/*.main-navbar.scrolled {
    box-shadow: rgba(6, 26, 64, 0.3) 0px 4px 24px;
    background: var(--navy);
    padding: 7px 0px;
}*/
.main-navbar .nav-link {
 
      font-weight: 600;
    font-size: 0.95rem;
    /*color: rgba(255, 255, 255, 0.85);*/
    color: var(--navy);
  padding: 8px 16px !important;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--yellow) !important;
}

.main-navbar .dropdown-menu {
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(44, 27, 14, 0.12);
  padding: 8px;
}
.main-navbar .dropdown-item {
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.88rem;
  color: var(--text);
}
.main-navbar .dropdown-item:hover {
  background: var(--beige);
  color: var(--yellow);
}

.nav-book-btn {
  background: linear-gradient(135deg, var(--yellow), #f5a623);
  color: var(--navy)!important;
  border-radius: 50px;
  padding: 8px 22px !important;
  font-weight: 600;
}
.main-navbar .nav-link.nav-book-btn:hover , .main-navbar .nav-link.nav-book-btn.active{ background: var(--navy)!important;  }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 60%, #1a3a70 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 80px;
}

/* BG shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(249,200,70,.06);
}
.hw-1 {
  width: 800px; height: 800px;
  right: -200px; top: -300px;
  animation: rotateSlow 30s linear infinite;
}
.hw-2 {
  width: 500px; height: 500px;
  left: -150px; bottom: -150px;
  background: rgba(249,200,70,.04);
  animation: rotateSlow 20s linear infinite reverse;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.g1 { width: 400px; height: 400px; background: rgba(249,200,70,.08); right: 10%; top: 15%; }
.g2 { width: 300px; height: 300px; background: rgba(11,42,91,.5); left: 5%; bottom: 20%; }

.sparkle {
  position: absolute;
  color: var(--yellow);
  opacity: .4;
  font-size: 1.2rem;
  animation: twinkle 3s ease-in-out infinite;
}
.s1 { top: 15%; left: 8%; animation-delay: 0s; }
.s2 { top: 30%; left: 45%; animation-delay: .8s; }
.s3 { top: 60%; left: 25%; animation-delay: 1.6s; }
.s4 { top: 20%; right: 15%; animation-delay: .4s; }
.s5 { bottom: 30%; right: 30%; animation-delay: 1.2s; }

@keyframes twinkle {
  0%, 100% { opacity: .2; transform: scale(1); }
  50% { opacity: .8; transform: scale(1.3); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Hero Layout */
.hero-container {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* Hero Left */
.hero-left { flex: 1; color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,200,70,.12);
  border: 1px solid rgba(249,200,70,.3);
  color: var(--yellow);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.badge-dot { font-size: 1rem; }

.hero-heading {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-tagline {
  display: block;
  font-size: clamp(1.4rem, 2.8vw, 1.7rem);
  font-weight: 400;
  color: rgba(255,255,255,.75);
  font-family: 'Playfair Display', serif;
  margin-top: 8px;
}

.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
.btn-hero {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 50px;
}
.btn-hero-outline {
  padding: 13px 28px;
  font-size: 1rem;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: var(--white);
  transform: translateY(-2px);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-num {
  
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-fixed { font-size: 2rem; }
.stat-plus { color: var(--yellow); font-size: 1.1rem; font-weight: 700; }
.stat-label { color: rgba(255,255,255,.65); font-size: .8rem; font-weight: 500; display: block; margin-top: 4px; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* Hero Right */
.hero-right { flex: 1; display: flex; justify-content: center; align-items: center; }

.hero-visual { position: relative; width: 100%; max-width: 500px; }

.hero-curve-bg {
  position: absolute;
  inset: -10% -5%;
  background: rgba(249,200,70,.08);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%, 100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  33%       { border-radius: 60% 40% 40% 60% / 55% 45% 55% 45%; }
  66%       { border-radius: 45% 55% 55% 45% / 60% 40% 60% 40%; }
}

.hero-img-frame {
  position: relative;
  border-radius: 30px;
  overflow: visible;
}
.hero-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
  box-shadow: 0 24px 80px rgba(6,26,64,.4);
  animation: imgZoomIn 8s ease-in-out infinite;
}
@keyframes imgZoomIn {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}

/* Floating Cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(6,26,64,.2);
}
.fc-ico {
  font-size: 1.5rem;
  background: rgba(249,200,70,.2);
  border-radius: 10px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-ico.verified { color: var(--yellow); font-weight: 900; font-size: 1.2rem; }
.fc-main { font-size: .85rem; font-weight: 700; color: var(--white); }
.fc-sub  { font-size: .72rem; color: rgba(255,255,255,.7); }

.fc-1 { top: 12%; left: -22%; }
.fc-2 { bottom: 25%; left: -25%; }
.fc-3 { bottom: 8%; right: -12%; }

/* Image sparkles */
.img-spark {
  position: absolute;
  color: var(--yellow);
  font-size: 1rem;
  animation: twinkle 2.5s ease-in-out infinite;
}
.sp1 { top: -12px; right: 30px; }
.sp2 { top: 30%; right: -14px; animation-delay: .7s; }
.sp3 { bottom: 15%; left: -20px; animation-delay: 1.4s; }

/* Card animations */
.float-anim     { animation: floatUp 4s ease-in-out infinite; }
.float-anim-alt { animation: floatUp 4s ease-in-out infinite 1.8s; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Trust Bar */
.trust-bar {
  background: rgba(249,200,70,.12);
  border-top: 1px solid rgba(249,200,70,.2);
  padding: 18px 0;
  position: relative;
  z-index: 2;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item i { color: var(--yellow); font-size: 1rem; }

/* Fade animations */
.anim-fade-left  { opacity: 0; transform: translateX(-40px); }
.anim-fade-right { opacity: 0; transform: translateX(40px); }
.anim-visible    { opacity: 1 !important; transform: none !important; transition: all .8s cubic-bezier(.4,0,.2,1); }

/* yellow gradient text */
.yellow-gradient {
  background: linear-gradient(135deg, #F9C846 0%, #f5a623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== FLOATING BUTTONS ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  transition: all 0.3s;
  animation: pulse-wa 2s infinite;
}

.floating-whatsapp:hover { transform: scale(1.1); }
.floating-whatsapp i { color: white; font-size: 1.6rem; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}


.sticky-book-btn {
  position: fixed;
  top: 46%;
  left: -80px;
  z-index: 9998;
  padding: 10px 28px;
  border-radius: 0px;
  font-weight: 700;
  font-size: 0.88rem;
  background: linear-gradient(135deg, #C9A96E, #A8844A);
  color: white;
  border: none;
   transform: rotate(90deg);
  box-shadow: 0 8px 25px rgba(168, 132, 74, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.sticky-book-btn:hover { color: white; }

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: var(--section-pad);
  background: var(--white);
}

.service-card {
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  background: white;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(44, 27, 14, 0.12);
  border-color: rgba(201, 169, 110, 0.4);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-icon {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #C9A96E, #A8844A);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(168, 132, 74, 0.4);
}
.service-card-icon i { color: white; font-size: 1.1rem; }

.service-card-body {
  padding: 32px 20px 20px;
}

.service-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card-btn {
  font-size: 0.82rem;
  padding: 8px 20px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
  height: 100%;
  display: flex;
}
.why-card:hover {
  border-color: rgba(249,200,70,.3);
  box-shadow: 0 12px 40px rgba(249,200,70,.12);
  background: var(--white);
}
.why-ico-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-ico-wrap {
  background: linear-gradient(135deg, var(--yellow), #f5a623);
  transform: scale(1.05);
}
.why-cont{
  width: calc(100% - 64px);
  padding-left: 15px;
}
.why-ico-wrap i { font-size: 1.5rem; color: var(--white); }
.why-card:hover .why-ico-wrap i { color: var(--navy); }
.why-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-desc  { color: var(--muted); font-size: .9rem; line-height: 1.65; margin-bottom: 0px; }


/* ===== HOW IT WORKS ===== */
.how-section {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.how-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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='%23C9A96E' fill-opacity='0.03'%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");
}

.how-section .section-title { color: white; }
.how-section .section-subtitle { color: rgba(255,255,255,0.6); }
.how-section .section-label { color: var(--gold-light); }

.step-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--yellow), #f5a623);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  z-index: 1;
}

.step-connector {
  position: absolute;
  top: 65px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  z-index: 0;
}

.step-title {
  font-size: 1.05rem;
  color: white;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ===== PACKAGES ===== */
.packages-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.package-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.2);
  transition: all 0.4s;
  background: white;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(44, 27, 14, 0.12);
}

.package-card.featured {
  border: 2px solid var(--yellow);
  position: relative;
}

.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 16px;
  right: -28px;
  background: linear-gradient(135deg, var(--yellow), #f5a623);
  color: white;
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  transform: rotate(45deg);
  width: 140px;
  text-align: center;
}

.package-header {
  padding: 30px 28px 24px;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.package-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--yellow), #f5a623);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.package-icon i { color: white; font-size: 1.3rem; }

.package-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.package-price {
  
  font-size: 2rem;
  color: var(--yellow);
  font-weight: 700;
}

.package-price span { font-size: 1rem; color: var(--yellow); }

.package-body { padding: 24px 28px; }

.package-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  font-size: 0.88rem;
  color: var(--text);
}

.package-feature:last-child { border-bottom: none; }
.package-feature i { color: var(--yellow); flex-shrink: 0; }

/* ===== BEAUTICIANS ===== */
.beauticians-section {
  padding: var(--section-pad);
  background: white;
}

.beautician-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(44, 27, 14, 0.08);
  transition: all 0.4s;
  background: white;
  border: 1px solid rgba(201,169,110,0.15);
}

.beautician-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(44, 27, 14, 0.15);
}

.beautician-card-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.beautician-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.beautician-card:hover .beautician-card-img img { transform: scale(1.05); }

.beautician-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(44,27,14,0.6));
  padding: 30px 20px 16px;
}

.beautician-card-body { padding: 20px 24px; }

.beautician-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.beautician-title {
  font-size: 0.85rem;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 14px;
}

.beautician-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.beautician-stat i { color: var(--yellow); width: 14px; }

.rating-stars { color: #F4B942; font-size: 0.9rem; }

/* ===== GALLERY ===== */
.gallery-section {
  padding: var(--section-pad);
  background: var(--beige);
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 27, 14, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s;
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { background: rgba(44, 27, 14, 0.4); }
.gallery-item:hover .gallery-overlay i { opacity: 1; transform: scale(1); }

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 12px;
  background: linear-gradient(transparent, rgba(44,27,14,0.7));
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-label { opacity: 1; }

.gallery-filter { margin-bottom: 32px; }
.gallery-filter .btn {
  border-radius: 50px;
  margin: 4px;
  font-size: 0.85rem;
  padding: 8px 22px;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--text-light);
  background: white;
  transition: all 0.3s;
}
.gallery-filter .btn.active,
.gallery-filter .btn:hover {
  background: var(--yellow);
  color: white;
  border-color: var(--yellow);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.testimonials-section .section-title { color: white; }
.testimonials-section .section-label { color: var(--gold-light); }

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 24px;
  padding: 36px 32px;
  margin: 10px 15px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,169,110,0.4);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
}

.testimonial-name {
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
}

.testimonial-location {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.testimonial-stars { color: #F4B942; font-size: 0.9rem; margin-bottom: 4px; }

.carousel-indicators [data-bs-target] {
  background-color: var(--yellow);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
}

/* ===== MEMBERSHIP ===== */
.membership-section {
  padding: var(--section-pad);
  background: linear-gradient(135deg, #FAF6F0, #F5EDE0);
}

.membership-card {
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  border: 2px solid rgba(201,169,110,0.2);
  background: white;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.membership-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C9A96E, #A8844A);
}

.membership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(44,27,14,0.12);
  border-color: var(--yellow);
}
.membership-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  font-size: 0.88rem;
  color:var(--text) !important;
  text-align: left;
}
.membership-card.gold-plan { background:linear-gradient(135deg, #061a40, #162039); }
.membership-card.gold-plan .membership-name,
.membership-card.gold-plan .membership-price,
.membership-card.gold-plan .membership-feature { color: white!important; }
.membership-card.gold-plan .membership-feature i { color: var(--gold-light); }

.membership-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.badge-silver { background: rgba(192,192,192,0.15); color: #888; border: 1px solid #ddd; }
.badge-gold { background: rgba(201,169,110,0.2); color: var(--gold-dark); border: 1px solid rgba(201,169,110,0.4); }
.badge-platinum { background: rgba(229,228,226,0.2); color: #aaa; border: 1px solid rgba(200,200,200,0.4); }

.membership-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.membership-price {
  font-size: 2.4rem;
  color: var(--yellow);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.membership-period { font-size: 0.85rem; color: var(--text-light); margin-bottom: 24px; }


.membership-feature:last-child { border-bottom: none; }
.membership-feature i { color: var(--yellow); flex-shrink: 0; }

/* ===== SERVICE AREAS ===== */
.areas-section {
  padding: var(--section-pad);
  background: white;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(201,169,110,0.3);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin: 6px;
  transition: all 0.3s;
  background: white;
  cursor: pointer;
}

.area-chip:hover {
  background: var(--yellow);
  color: white;
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.3);
}

.area-chip i { color: var(--yellow); font-size: 0.85rem; }
.area-chip:hover i { color: white; }

.availability-form {
  background: linear-gradient(135deg, #FAF6F0, #F5EDE0);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 20px;
  padding: 36px;
  margin-top: 40px;
}

.availability-form .form-control {
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--text);
  background: white;
}
.availability-form .form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
  outline: none;
}

/* ===== WHATSAPP CTA ===== */
.wa-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1B4332 0%, #0D3B29 50%, #0A2E20 100%);
  position: relative;
  overflow: hidden;
}

.wa-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,211,102,0.1), transparent 70%);
  border-radius: 50%;
}

.wa-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  margin-bottom: 12px;
}
.wa-benefit-item i { color: #25D366; font-size: 1rem; }

/* ===== FAQ ===== */
.faq-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.faq-accordion .accordion-item {
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  padding: 20px 24px;
  background: white;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--gold-dark);
  background: linear-gradient(135deg, #FAF6F0, #F5EDE0);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: sepia(100%) saturate(200%) hue-rotate(10deg);
}

.faq-accordion .accordion-body {
  padding: 16px 24px 24px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  background: white;
}

/* ============================================================
   POPUP
   ============================================================ */
.popup-card {
  background: var(--white);
  border-radius: 24px;
  border: none;
  overflow: hidden;
}
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  opacity: .6;
}
.popup-inner { padding: 40px 32px; }
.popup-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.popup-title { font-size: 1.8rem; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.popup-sub { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.popup-form .form-control {
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: .95rem;
}
.popup-form .form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(249,200,70,.15);
}
.popup-fine { color: var(--muted); font-size: .8rem; margin-top: 14px; margin-bottom: 0; }

/* ===== POPUP ===== */
.offer-popup .modal-content {
  border-radius: 24px;
  overflow: hidden;
  border: none;
}

.offer-popup .modal-header {
  background: linear-gradient(135deg, #2C1B0E, #4A3422);
  border: none;
  padding: 30px 32px 20px;
}

.offer-popup .modal-body { padding: 32px; }

.offer-badge {
  background: linear-gradient(135deg, #C9A96E, #A8844A);
  color: white;
  font-size: 3rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.offer-popup .form-control {
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.offer-popup .form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}

.footer-brand .brand-name { color: white; }
.footer-brand .brand-tag { color: var(--gold-light); }

.footer-about {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0 24px;
  color: rgba(255,255,255,0.6);
}

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
  font-size: 0.95rem;
}
.social-link:hover { background: var(--yellow); color: white; }

.footer-heading {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--yellow); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--yellow);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 40px 0 24px;
}

.logo-f span:first-child{
font-family:'Playfair Display',serif;font-size:1.4rem;font-weight:700;color:white;
}
.logo-f span:last-child{
  font-size:0.65rem;letter-spacing:2px;color:var(--gold-light);text-transform:uppercase;
}

.footer-bottom-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-text a{
  color:rgba(255,255,255,0.4);margin-left:16px;
}

.footer-gold-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--gold-light), var(--yellow));
  margin-bottom: 0;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 60%, #1a3a70 100%);
  position: relative;
}
.page-hero{
  background-image: url(assets/img/subpage-banner.png);
  background-size: 100%;
}

.page-hero:before{
  content: "";
  position: absolute;
  top:0px;
  left: 0px;
  background: #282621a1;
  height: 100%;
  width:100%;
  z-index: 1;
}
.page-hero .container{
  position: relative;
  z-index: 2;
}
.page-hero h1 { font-size: 2.8rem; color: var(--white); }
.page-hero .section-subtitle{font-weight: 700; color: #c7961d}

/*booking page*/
.booking-page{
 padding:var(--section-pad);background:var(--cream);
}
.booking-page .left-side{
  background:white;
  border-radius:24px;
  padding:40px;
  box-shadow:0 4px 30px rgba(44,27,14,0.08);
  border:1px solid rgba(201,169,110,0.15);
}

.booking-page .right-side-one{
  background:white;border-radius:20px;padding:28px;border:1px solid rgba(201,169,110,0.2);margin-bottom:20px;
}
.one-choose{
  display:flex;align-items:flex-start;gap:14px;margin-bottom:16px;
}
.one-choose .icon-box{
  width:42px;height:42px;background:rgba(201,169,110,0.12);border-radius:12px;display:flex;
  align-items:center;justify-content:center;flex-shrink:0;
}
.one-choose .icon-box i{
  color:var(--gold);
}
.one-choose .h6{
  font-weight:700;font-size:0.92rem;color:var(--dark);
}
.one-choose .p{
  font-size:0.83rem;color:var(--text-light);margin-top:2px;
}
.booking-page .right-side-two{
  background:linear-gradient(135deg,#2C1B0E,#4A3422);border-radius:20px;padding:28px;margin-bottom:20px;
}
.right-side-two h4{
  color:white;margin-bottom:8px;
}
.right-side-two p{
  color:rgba(255,255,255,0.7);font-size:0.88rem;margin-bottom:20px;
}
.right-side-two .btn-whatsapp{
 display:block;padding:14px;
}
.right-side-three{
  background:linear-gradient(135deg,#C9A96E,#A8844A);border-radius:20px;padding:24px;text-align:center;
}
.right-side-three .offer-t{
  font-size:1.8rem;color:white;font-weight:900;font-family:'Playfair Display',serif;
}
.right-side-three .offer-h{
  color:rgba(255,255,255,0.9);font-weight:600;margin:4px 0 8px;
}
.offer-p{
  color:rgba(255,255,255,0.8);font-size:0.83rem;
}
/* ===== FORMS ===== */
.form-control, .form-select {
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.92rem;
  color: var(--text);
  transition: all 0.3s;
}
.input-group-text{
  background:var(--beige);border-color:rgba(201,169,110,0.3);
}
.input-group-text i {
  color:var(--gold);
}
form small{
  color:var(--text-light);font-size:0.8rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
  outline: none;
}
.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark-2);
  margin-bottom: 6px;
}

/* ===== BLOG CARDS ===== */
.blog-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.15);
  background: white;
  transition: all 0.4s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44,27,14,0.1);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-img img { transform: scale(1.08); }

.blog-card-body { padding: 24px; }

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201,169,110,0.12);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.blog-excerpt {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== ABOUT ===== */
.about-img {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(44,27,14,0.15);
}

.stat-box {
  background: white;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(201,169,110,0.2);
  box-shadow: 0 4px 20px rgba(44,27,14,0.06);
}

.stat-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--yellow);
  font-weight: 700;
}

.stat-box .label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-title { font-size: 2.4rem; }
  .hero-section { padding: 100px 0 60px; }
  .section-title { font-size: 2rem; }
  .hero-float-card-1, .hero-float-card-2 { display: none; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .section-title { font-size: 1.7rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-image-container .main-img { height: 400px; margin-top: 40px; }
  :root { --section-pad: 60px 0; }
  .floating-whatsapp { bottom: 20px; right: 20px; }
  .sticky-book-btn { display: none; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 1.7rem; }
  .section-title { font-size: 1.5rem; }
  .hero-image-container .main-img { border-radius: 20px; }
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }


/*bridal page*/
.bridal-hero { min-height: 70vh; background: linear-gradient(rgba(44,27,14,0.55), rgba(44,27,14,0.55)), url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?w=1400&fit=crop') center/cover no-repeat; display:flex; align-items:center; padding:120px 0 60px; }
.bridal-hero h1 { font-size:3.5rem; color:white; }
.bridal-hero p { color:rgba(255,255,255,0.85); font-size:1.1rem; }
.bridal-package { background:white; border-radius:24px; overflow:hidden; box-shadow:0 4px 30px rgba(44,27,14,0.08); border:1px solid rgba(201,169,110,0.2); transition:all 0.4s; margin-bottom:24px; }
.bridal-package:hover { transform:translateY(-6px); box-shadow:0 20px 60px rgba(44,27,14,0.14); }
.bridal-package-img { height:200px; overflow:hidden; }
.bridal-package-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s; }
.bridal-package:hover .bridal-package-img img { transform:scale(1.06); }
.bridal-package-body { padding:10px; }
.bridal-package-body h3{font-family:'Playfair Display',serif;color:var(--dark);margin-bottom:10px;font-size: 16px}
.bridal-package-body p{color:var(--text-light);font-size:0.9rem;margin-bottom:16px;}
.bridal-package-body .price{font-size:1rem;color:var(--gold);font-weight:700;margin-bottom:16px;}
.bridal-package-body .btn-gold{padding: 7px 15px; width: 100%;font-size: 12px;text-align: center;}
.packages-section{
  padding:var(--section-pad);background:var(--dark);
}
.packages-section .packages-box{
  background:rgba(255,255,255,0.06);border:1px solid rgba(201,169,110,0.2);border-radius:20px;padding:32px;text-align:center;transition:all 0.3s;
}
.packages-section .packages-box.middile{
  background:linear-gradient(135deg,rgba(201,169,110,0.15),rgba(201,169,110,0.05));border:2px solid var(--gold);border-radius:20px;padding:32px;text-align:center;position:relative;
}
.packages-section .packages-box.middile .feature-tag{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:linear-gradient(135deg,#C9A96E,#A8844A);color:white;padding:4px 20px;border-radius:50px;font-size:0.75rem;font-weight:700;white-space:nowrap;
}
.packages-section .packages-box .h4{
  font-family:'Playfair Display',serif;font-size:1.3rem;color:white;margin-bottom:8px;
}
.price-tag{
  font-family:'Playfair Display',serif;font-size:2rem;color:var(--gold);font-weight:700;
}
.membership-feature{
  color:rgba(255,255,255,0.8);border-color:rgba(255,255,255,0.1);
}
.membership-feature i{
  color:var(--gold);
}
.bridal-categories{
  padding:50px 0px;background:var(--cream);
}

.mission-vision-section{
  padding:50px 0px;background:var(--navy);
}
.mission-box{
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px 20px;
  transition: var(--transition);
  height: 100%;
  display: flex;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(6,26,64,.05);
}
.mission-box:hover{
  box-shadow: 0 8px 32px rgba(249, 200, 70, .25), 0 0 0 2px rgba(249, 200, 70, .2);
    border-color: rgba(249, 200, 70, .4);
}
.mission-box .icon-box{
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy) 0%, #0B2A5B 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}
.mission-box:hover .icon-box{
  background: linear-gradient(135deg, var(--yellow) 0%, #f5a623 100%);
    transform: rotate(-5deg) scale(1.05);
}
.mission-box .icon-box i{color:var(--yellow);font-size:1.2rem;}
.mission-box:hover .icon-box i{
 color:var(--navy);
}
.mission-box .mission-cont{
  width:calc(100% - 60px);
  padding-left: 13px;
}
.mission-box h3{font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;}
.mission-box p{font-size: .82rem;
        color: var(--muted);
    font-size: .9rem;
    line-height: 1.65;
    margin-bottom: 0px;}

/*contact Form Div*/
.contact-form-div{
  background:white;border-radius:24px;padding:40px;box-shadow:0 4px 30px rgba(44,27,14,0.08);border:1px solid rgba(201,169,110,0.15);
}
.contact-form-div h3{
  color:var(--dark);margin-bottom:8px;
}
.contact-form-div p{
  color:var(--text-light);font-size:0.88rem;margin-bottom:28px;
}
.about-us-section ul{list-style: none; padding: 0px}
.contact-info{background:var(--cream);border-radius:20px;padding:28px;margin-bottom:16px;border:1px solid rgba(201,169,110,0.2);}
.info-box{display:flex;align-items:flex-start;gap:16px;margin-bottom:4px;}
.info-box .icon-box{width:48px;height:48px;background:linear-gradient(135deg,#C9A96E,#A8844A);border-radius:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.info-box h6{font-weight:700;color:var(--dark);margin-bottom:4px;}
.info-box a{    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
}
.info-box p{font-size:0.82rem;color:var(--text-light);margin-top:2px;}
.text-white{
  color: var(--white);
}
.google-reviews{
  background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.1);border-radius:12px;padding:16px 24px;display:flex;align-items:center;gap:12px;
}
.google-reviews i{color:#EA4335;font-size:1.5rem;}
.google-reviews  .text{color:white;font-weight:700;font-size:0.92rem;}
.google-reviews .rating{color:#F4B942;font-size:0.85rem;}
#contactForm button{
  padding:16px;font-size:1rem;
}
.whats-small-cta{
  background:linear-gradient(135deg,#1B4332,#0D3B29);border-radius:20px;padding:28px;margin-top:20px;
}
.whats-small-cta .heading{color:white;font-family:'Playfair Display',serif;font-size:1.1rem;margin-bottom:8px;}
.whats-small-cta .heading i{color:#25D366;}
.whats-small-cta p{color:rgba(255,255,255,0.7);font-size:0.88rem;margin-bottom:16px;}
.whats-small-cta a{display:inline-block;}

.wa-cta-section .section-label{
 color:rgba(37,211,102,0.8);
}
.wa-cta-section p{
  color:rgba(255,255,255,0.7);font-size:1rem;margin-bottom:24px;
}
.wa-cta-section a{
  font-size:1rem;padding:16px 40px;
}
.wa-cta-section a i{font-size:1.2rem;}

.problem-section{
    min-height:100vh;
    position:relative;
    background:linear-gradient(rgba(20,12,8,.65),rgba(20,12,8,.75)),
    url("assets/img/skin-problem-bg.png");

    background-size:cover;
    background-position:center;
    color:white;

    display:flex;
    align-items:center;
}


.problem-section:after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:#d6a22e;
}


.problem-section .container{
    position:relative;
    z-index:2;
}


/* Heading */

.problem-title{

    color:#dca52b;
    font-size:55px;
    font-weight:600;
    margin-bottom:40px;

}


.problem-heading{

    font-size:36px;
    line-height:1.2;
    color:#f3e8dc;
    max-width:600px;

}



/* Boxes */


.problem-list{

    margin-top:45px;

}


.problem-box{

    border:1px solid #dca52b;
    padding:14px 25px;
    width:320px;

    margin-bottom:18px;

    font-family:Arial;
    font-size:20px;
    color:#f5e8d6;

    background:rgba(255,255,255,.05);

}


/* Right Image */

.skin-image{

    width:100%;
    max-width:330px;

    border:8px solid rgba(255,255,255,.8);

}

@media(max-width:768px){

.problem-title{
font-size:40px;
}

.problem-heading{
font-size:28px;
}


.problem-box{
width:100%;
}


.skin-image{
margin-top:40px;
}

}


/* Section */

.solution-section{
    background:#fff;
    padding:60px 0;

}



/* Image Area */


.image-wrapper{

    position:relative;
    height:430px;

}


.img-one{

    width:270px;
    height:260px;
    object-fit:cover;
    z-index: 1;
    position:absolute;
    left:40px;
    top:40px;

}


.img-two{

    width:260px;
    height:300px;
    object-fit:cover;
    z-index: 2;
    position:absolute;
    right:40px;
    bottom:20px;

}



/* Gold Frame */

.image-frame{

    position: absolute;
    width: 280px;
    height: 280px;
    border: 2px solid #d69d20;
    left: 150px;
    top: 80px;
z-index:0;

}



/* Content */


.solution-title{

font-size:55px;
font-weight:600;
color:#d69d20;

margin-bottom:40px;

}


.solution-list{

width:350px;

}


.solution-item{

border:2px solid #d69d20;

padding:10px 15px;

font-family:Arial,sans-serif;

font-size:20px;

font-weight:600;

color:#15254d;

margin-bottom:0;

display:flex;
align-items:center;
gap:10px;

}


.check{

font-size:25px;
color:#1e2638;

}



/* Mobile */

@media(max-width:768px){

.solution-title{

font-size:40px;

}


.image-wrapper{

height:350px;

}


.solution-list{

width:100%;

}

}

/* Section */
.service-section{
  padding-bottom: 60px;
}
.service-section .service-banner{
    height:220px;
    background:linear-gradient(rgba(255,255,255,.75),rgba(255,255,255,.75)), url("assets/img/service-bg.png");

    background-size:cover;
    background-position:center;

    position:relative;

}



/* Round Image */


.service-image{

    width:190px;
    height:190px;

    object-fit:cover;

    border-radius:50%;

    border:4px solid #d59b20;

    position:absolute;

    bottom:-70px;

    left:50%;

    transform:translateX(-50%);

    background:#fff;

}



/* Content */


.service-content{

    padding-top:100px;

    text-align:center;

}


.service-title{

    font-family:Georgia,serif;

    font-size:55px;

    color:#d59b20;

    font-weight:600;

    margin-bottom:35px;

}



.service-list{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:35px;

    color:#111b55;

    font-size:28px;

    font-weight:700;

}


.service-item::before{

    content:"•";

    margin-right:12px;

    color:#111b55;

}



/* Responsive */

@media(max-width:768px){

.service-title{
    font-size:40px;
}

.service-list{

font-size:20px;
gap:15px;

}

}

.market-section{
    padding:50px 70px;
    background:#ffffff;
    position:relative;

}

.top-image{

    width:330px;
    height:220px;
    object-fit:cover;
    margin-bottom:55px;

}



.market-section h2.section-title{
    color:#c99520;

}



.hair-image{

    width:100%;
    height:250px;
    object-fit:cover;

}



.info-box-t{

    border:2px solid #d6a72c;
    padding:30px;
    margin-top:-20px;
    background:white;
    width:80%;
    margin-left:40px;
        position: relative;
}


.info-box-t h3{

    font-family:'Playfair Display',serif;
    font-size:24px;
    color:#10185a;
    font-weight:700;

}



.info-box-t ul{

    padding-left:25px;
    margin-top:20px;

}


.info-box-t li{

    font-family:'Poppins',sans-serif;
    font-size:18px;
    color:#10185a;
    margin-bottom:8px;

}

@media(max-width:992px){

.market-section{
    padding:30px;
}


.market-section h1{
    font-size:50px;
}


.market-section .info-box-t{

    width:100%;
    margin-left:0;

}

}
.vision-mission-section{
    background:var(--cream);
    padding:50px 0;
    position:relative;
}
.vision-column,
.mission-column{
    padding:20px 60px 60px;
}

.mission-column{
    border-left:1px solid #caa13b;
}

.vision-mission-section .section-title{
    color:#c89620;
}

.vision-mission-section .section-text{
    font-size:17px;
    line-height:1.7;
    color:#09135f;
}

.gallery-img{
    width:100%;
    height:190px;
    object-fit:cover;
    border:2px solid #c89620;
}

@media(max-width:991px){

    .mission-column{
        border-left:none;
        border-top:1px solid #caa13b;
        margin-top:40px;
        padding-top:40px;
    }
    .section-text{
        font-size:18px;
    }

    .gallery-img{
        height:150px;
    }
}

.why-choose-section{
    min-height:100vh;
    background:#e7d1c4;
    overflow:hidden;
}

.right-panel{
    padding:60px;
}

.main-title{
    font-size:48px;
    color:#c8921c;
    margin-bottom:10px;
}

.sub-title{
    color:#07135c;
    font-size:28px;
    font-weight:700;
    margin-bottom:40px;
}

.feature-wrapper{
    display:flex;
    align-items:flex-start;
    gap:40px;
}

.feature-table{
    width:65%;
}

.feature-row{
    display:flex;
    align-items:center;
    border:2px solid #c8921c;
    border-bottom:none;
}

.feature-row:last-child{
    border-bottom:2px solid #c8921c;
}

.feature-table .star{
    width:50px;
    text-align:center;
    color:#d7a126;
    font-size:26px;
    border-right:2px solid #c8921c;
}

.feature-table .text{
    flex:1;
    padding:7px 15px;
    font-size:16px;
    font-weight:700;
    color:#07135c;
}

.feature-table .check{
    width:60px;
    text-align:center;
    border-left:2px solid #c8921c;
    font-size:25px;
    color:#2d3642;
}

.beauty-image img{
    width:250px;
    height:290px;
    object-fit:cover;
}

@media(max-width:991px){

    .left-panel{
        min-height:auto;
        padding:30px 15px;
    }

    .right-panel{
        padding:30px 20px;
    }

    .main-title{
        font-size:45px;
    }

    .sub-title{
        font-size:20px;
    }

    .feature-wrapper{
        flex-direction:column;
    }

    .feature-table{
        width:100%;
    }

    .beauty-image{
        text-align:center;
    }

    .beauty-image img{
        display: none;
    }
    .solution-section{
      padding: 20px 0px 50px 0px;
    }
    .vision-column , .mission-column{
      padding: 0px 0px;
    }
    .mission-column{
      padding-top: 30px;
    }
    .img-one {
    width: 50%;
    height: 150px;
    left: 0px;
   }
   .img-two {
    width: 60%;
    height: 180px;
    right: 0px;
   }
   .image-frame {
    width: 280px;
    height: 170px;
    left: 40px;
  }
  .wa-cta-section a {
    padding: 13px 36px;
}
.top-image{
  margin-bottom: 20px;
}
}


.about-hero-section{
    background:#f7f7f7;
    min-height:100vh;
    overflow:hidden;
    position:relative;
    padding:40px 0;
}

.company-name{
    font-size:48px;
    color:#c7961d;
    margin-bottom:20px;
    line-height:1.1;
}


.about-hero-section .hero-text p{
    font-size:16px;
    line-height:1.9;
    color:#07145e;
}

.image-collage{
    position:relative;
    height:650px;
}

.about-hero-section .bg-grid{
    position:absolute;
    right:0;
    top:0;
    width:100%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:0;
    opacity:.18;
}

.bg-grid img{
    width:100%;
    height:215px;
    object-fit:cover;
}

.main-image{
    position:absolute;
    left:20%;
    top:110px;
    width:320px;
    z-index:10;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-hero-section .main-image img{
    width:100%;
    height:420px;
    object-fit:cover;
}

@media(max-width:991px){

    .company-name{
        font-size:34px;
    }

    .about-hero-section .hero-title{
        font-size:42px;
    }

    .about-hero-section .hero-text{
        font-size:18px;
    }

    .image-collage{
        height:500px;
        margin-top:40px;
    }

    .main-image{
        left:50%;
        transform:translateX(-50%);
        width:260px;
        top:30px;
    }
    .bg-grid img{
      height: 160px;
    }
}