

:root {
  --gold: #966812;
  --gold-light: #d8b77a;
  --gold-soft: #f3e7cf;
  --dark: #0f0f0f;
  --text: #2c2c2c;
  --light-bg: #faf7f2;
}
/* ================= GLOBAL RESET ================= */

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

/* ================= BASE TYPOGRAPHY ================= */

html {
  font-size: 16px; /* stable base */
}

body {
  width: 100%;
  overflow-x: hidden;

  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;          /* 16px */
  line-height: 1.6;
  letter-spacing: 0;
  word-spacing: 0;

  background-color: #fff;
  color: #000;

  -webkit-text-size-adjust: 100%; /* Safari fix */
}

/* Dark mode */
.dark-mode {
  background-color: #000;
  color: #fff;
}

/* ================= SECTIONS ================= */

section {
  margin: 0;
  padding: 0;
}

/* ================= LOADER ================= */

#loader {
  height: 100%;
  width: 100%;
  background-color: #000;
  position: fixed;
  z-index: 999;
  inset: 0;
  transition: all ease 0.7s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader h1 {
  font-size: 4vw;
  color: transparent;
  background: rgb(150, 104, 18);
  -webkit-background-clip: text;
  background-clip: text;
  position: absolute;
  opacity: 0;
  animation: load 1s linear forwards;
}

#loader h1:nth-child(2) { animation-delay: 2s; }
#loader h1:nth-child(3) { animation-delay: 3s; }

@keyframes load {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; }
}

@media (max-width: 600px) {
  #loader h1 {
    font-size: 9vw;
  }
}

/* header */

  /* header end */
/* ===== FLOATING WHATSAPP BUTTON ===== */

/* ===== FLOATING CALL BUTTON ===== */
/* ===== FLOATING CALL BUTTON (GOLD THEME) ===== */
.gmp-call-float {
  position: fixed;
  bottom: 120px;          /* WhatsApp ke upar */
  right: 25px;
  width: 55px;
  height: 55px;

  /* 🔥 GOLD GRADIENT (LOGO MATCH) */
  background: linear-gradient(
    135deg,
    #cfa24d,   /* rich gold */
    #966812    /* logo gold */
  );

  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  z-index: 9999;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.35),
    0 0 0 0 rgba(207,162,77,0.6);

  animation: gmpRing 1.6s infinite;
  transition: transform 0.25s ease;
}

.gmp-call-float:hover {
  transform: scale(1.12);
}

/* Ring Animation (unchanged, luxury feel) */
@keyframes gmpRing {
  0%   { transform: rotate(0); }
  5%   { transform: rotate(15deg); }
  10%  { transform: rotate(-15deg); }
  15%  { transform: rotate(10deg); }
  20%  { transform: rotate(-10deg); }
  25%  { transform: rotate(0); }
  100% { transform: rotate(0); }
}


/* ===== FLOATING WHATSAPP BUTTON ===== */
.gmp-whatsapp-float {
  position: fixed;
  bottom: 35px;
  right: 25px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 32px;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  animation: gmpPulse 1.8s infinite;
}

.gmp-whatsapp-float:hover {
  transform: scale(1.08);
}

/* Pulse Animation */
@keyframes gmpPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Hover Text */
.gmp-wa-text {
  position: absolute;
  right: 70px;
  background: #25d366;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.gmp-whatsapp-float:hover .gmp-wa-text {
  opacity: 1;
}

.gmp-whatsapp-float i {
  font-size: 36px;   /* 🔥 icon bada */
  line-height: 1;
}


/* Mobile */
@media (max-width: 768px) {
  .gmp-wa-text {
    display: none;
  }
}
/* navbar finnaly */


/* =====================================================
   NAVBAR (COMPACT + LUXURY)
===================================================== */
.transparent-navbar {
  position: fixed;
  width: 100%;
  padding: 6px 0;
  background: transparent;
  backdrop-filter: blur(6px);
  transition: 0.35s ease;
  z-index: 9999;
}

.transparent-navbar.scrolled {
  background: rgba(0,0,0,0.95);
}

/* Brand */
.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
}

.logo {
  height: 64px;
  width: auto;
}

@media (max-width: 991px) {
  .logo {
    height: 52px;
  }
}

/* Links */
.transparent-navbar .nav-link {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}

.transparent-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

.transparent-navbar .nav-link:hover::after {
  width: 100%;
}

.transparent-navbar.scrolled .nav-link {
  color: var(--gold-light);
}

/* Toggler */
.navbar-toggler {
  padding: 4px 8px;
  border-radius: 6px;
  background: #fff;
  border: none;
}

.navbar-toggler-icon {
  width: 20px;
  height: 20px;
}

/* =====================================================
   SERVICES MULTI LEVEL DROPDOWN
===================================================== */
.dropdown-menu {
  border-radius: 16px;
  border: none;
  padding: 10px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-menu,
.service-submenu {
  list-style: none;
  background: #fff;
  border-radius: 14px;
}

.service-item {
  position: relative;
}

.service-link {
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.service-link:hover {
  background: rgba(150,104,18,0.12);
  color: var(--gold);
}

.service-submenu a {
  padding: 8px 16px;
  display: block;
  color: #333;
  text-decoration: none;
}

.service-submenu a:hover {
  background: rgba(150,104,18,0.12);
  color: var(--gold);
}

/* Desktop hover */
@media (min-width: 992px) {
  .service-dropdown:hover > .dropdown-menu {
    display: block;
  }

  .service-submenu {
    position: absolute;
    top: 0;
    right: 100%;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: 0.25s;
  }

  .service-item:hover > .service-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

/* Mobile accordion */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    margin-top: 10px;
    border-radius: 16px;
    padding: 14px;
  }

  .navbar-collapse .nav-link {
    color: var(--gold);
    font-weight: 600;
  }
  
/* Bigger dropdown width */
.dropdown-menu.service-menu {
  min-width: 300px;
}

.service-submenu {
  min-width: 260px;
}

/* Better spacing */
.service-link {
  padding: 12px 22px;
  font-size: 0.95rem;
}


  .service-item.active > .service-submenu {
    display: block;
  }
}


/* ================= END ================= */


/* ================= FULL SCREEN CAROUSEL ================= */

.carousel,
.carousel-inner,
.carousel-item {
  width: 100%;
  height: 100vh;
}

/* ================= SLIDE BACKGROUND ================= */

.carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* Smooth zoom animation */
.carousel-item.active {
  animation: zoomSlide 8s ease-in-out forwards;
}

@keyframes zoomSlide {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

/* Slides */
.slide-1 {
  background-image: url("../image/beautiful-woman-has-cutting-hair-hairdresser.jpg");
}

.slide-2 {
  background-image: url("../image/spa-service-1.jpg");
}

.slide-3 {
  background-image: url("../image/fixed-image.jpeg");
}

.slide-4 {
  background-image: url("../image/IV-Therapy-in-dubai.jpg");
}

.slide-5 {
  background-image: url("../image/fitness-training-in-dubai-uae.jpg");
}

.slide-6 {
  background-image: url("../image/Physiotherapy-in-dubai\ \(1\).jpg");
}
/* ================= LUXURY OVERLAY ================= */

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.35)
  );
  z-index: 1;
}

/* ================= CAPTION ================= */

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: left;
  max-width: 620px;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

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

.carousel-caption h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 1.5px;
  color: #ffffff;

  font-family: 'Playfair Display', serif;
  text-transform: capitalize;

  background: linear-gradient(90deg, #f5e6c8, #d4af37, #fff1c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.45);
}

.carousel-caption p {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #f3f3f3;

  letter-spacing: 0.6px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}
.carousel-caption h1::after {
  content: '';
  display: block;
  width: 90px;
  height: 3px;
  margin-top: 14px;

  background: linear-gradient(90deg, #d4af37, transparent);
  border-radius: 10px;
}
@media (max-width: 768px) {
  .carousel-caption {
    text-align: center;
    padding: 0 16px;
  }

  .carousel-caption h1 {
    font-size: 1.95rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
    font-weight: 700;

    background: linear-gradient(90deg, #ffffff, #f1d27a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 3px 10px rgba(0,0,0,0.45);
  }

  .carousel-caption p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 14px 0 22px;
    color: #f0f0f0;
  }
}


/* ================= CTA BUTTON ================= */
/* ================= CTA BUTTON – SOFT & PREMIUM ================= */

.btn-solid {
  background: rgba(200, 155, 60, 0.18);   /* soft gold */
  color: #f5f5f5;
  padding: 10px 26px;                     /* 👈 smaller */
  font-size: 0.9rem;
  border-radius: 40px;
  letter-spacing: 0.6px;
  box-shadow: none;                       /* 👈 heavy shadow removed */
  border: 1px solid rgba(200, 155, 60, 0.35);
  transition: all 0.3s ease;
}

.btn-solid:hover {
  background: rgba(200, 155, 60, 0.28);
  transform: translateY(-1px);            /* very subtle */
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}


/* ================= BOTTOM INDICATORS – CLEAN & MINIMAL ================= */

.carousel-indicators {
  bottom: 26px;
  gap: 14px;
}

.carousel-indicators button {
  width: 38px !important;                 /* 👈 slim lines */
  height: 3px;
  padding: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.35);
  border: none;
  opacity: 1;
  transition: all 0.35s ease;
}

.carousel-indicators .active {
  width: 55px !important;                 /* active slightly longer */
  background: #c89b3c;                    /* gold highlight */
}

/* remove thumbnail images effect */
.carousel-indicators img {
  display: none;
}


/* ================= MOBILE VIEW – EVEN MORE SUBTLE ================= */

@media (max-width: 768px) {

  .btn-solid {
    padding: 9px 24px;
    font-size: 0.85rem;
  }

  .carousel-indicators {
    bottom: 18px;
  }

  .carousel-indicators button {
    width: 30px !important;
    height: 3px;
  }

  .carousel-indicators .active {
    width: 42px !important;
  }
}


/* ================= INDICATORS ================= */

.carousel-indicators {
  bottom: 24px;
  gap: 10px;
}

.carousel-indicators button {
  width: 70px !important;
  height: 45px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: 0.3s ease;
}

.carousel-indicators .active {
  border-color: #c89b3c;
  transform: scale(1.05);
  opacity: 1;
}

.carousel-indicators img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= CONTROLS ================= */

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  transform: scale(1.15);
}

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

@media (max-width: 768px) {

  .carousel-caption {
    text-align: center;
    padding: 0 18px;
    max-width: 100%;
  }

  .carousel-caption h1 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }

  .btn-solid {
    padding: 12px 34px;
    font-size: 0.95rem;
  }

  .carousel-indicators {
    bottom: 16px;
    gap: 8px;
  }

  .carousel-indicators button {
    width: 55px !important;
    height: 36px;
    border-radius: 6px;
  }
}


/* ================= ABOUT SECTION ================= */
/* ================= OFFERS ================= */
/* ===== HERO / LUX SLIDE TEXT FIX ===== */
/* ================= LUX OFFERS ================= */
.package-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
  max-width:1200px;
  margin:auto;
}

.package-card{
  background:#fff;
  border-radius:22px;
  padding:22px;
  position:relative;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.35s;
}

.package-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(0,0,0,.15);
}

.package-card.highlight{
  border:2px solid #966812;
}

.price{
  background:#966812;
  color:#fff;
  padding:6px 16px;
  border-radius:18px;
  font-size:.85rem;
  position:absolute;
  top:16px;
  right:16px;
}

.package-card h3{
  margin-top:30px;
  color:#966812;
}

.package-card ul{
  padding-left:18px;
  margin:14px 0;
}

.package-card li{
  font-size:.9rem;
  margin-bottom:6px;
}

.pkg-btns{
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;   /* 🔥 ek hi line */
}

.pkg-btns a,
.pkg-btns button{
  flex: 1;
  padding: 8px 14px;   /* 🔥 size chhota */
  border-radius: 18px;
  font-size: 0.85rem;
  white-space: nowrap; /* text break nahi hoga */
}


.pkg-btns .outline{
  background:#fff;
  border:2px solid #966812;
  color:#966812;
}

.lux-offers {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5e6c8, #fafafa);
}

.lux-offer-head {
  text-align: center;
  margin-bottom: 50px;
}

.lux-offer-head h2 {
  font-size: 2.4rem;
  color: #966812;
}

.lux-offer-head p {
  color: #555;
}

/* GRID */
.package-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.package-card{
  background:#fff;
  border-radius:24px;
  padding:30px;
  position:relative;
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
  transition:0.4s;

  display:flex;              /* 🔥 */
  flex-direction:column;     /* 🔥 */
}


.package-card:hover {
  transform: translateY(-6px);
}

.package-card .price {
  position: absolute;
  top: -14px;
  right: 20px;
  background: #966812;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
}

.package-card h3 {
  margin-bottom: 12px;
  color: #333;
}

.package-card ul{
  list-style:none;
  padding:0;
  margin:16px 0 24px;

  flex-grow:1;   /* 🔥 ye buttons ko niche push karega */
}


.package-card ul li {
  padding-left: 18px;
  margin-bottom: 8px;
  position: relative;
  color: #555;
}

.package-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #966812;
  font-weight: bold;
}

/* BUTTONS */
.pkg-btns {
  display: flex;
  gap: 12px;
}

.pkg-btns a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  background: #966812;
  color: #fff;
  font-weight: 500;
  padding:10px 0;
  border-radius:22px;
  font-size:0.9rem;
  font-weight:500;
  white-space:nowrap;
}

.pkg-btns a.outline {
  background: transparent;
  border: 2px solid #966812;
  color: #966812;
}

/* FEATURED */
.package-card.highlight {
  border: 2px solid #966812;
}

/* MOBILE */
/* ===== MOBILE BUTTON SIZE FIX ===== */


@media (max-width: 768px) {
  .lux-offer-head h2 {
    font-size: 1.9rem;
  }

  .package-card {
    padding: 24px;
  }

  .pkg-btns {
    flex-direction: column;
  }
}
@media(max-width:768px){
  .package-card{
    padding: 22px;
  }

  .pkg-btns{
    gap: 8px;
  }

  .pkg-btns a{
    font-size: 0.8rem;
    padding: 8px 10px;
  }
}
/* ===== FINAL MOBILE BUTTON UX FIX ===== */
@media (max-width: 480px) {

  .pkg-btns{
    display: flex;
    gap: 8px;
    margin-top: 14px;
  }

  .pkg-btns a,
  .pkg-btns button{
    flex: 1;
    padding: 6px 0;          /* 🔥 height kam */
    font-size: 0.75rem;     /* 🔥 text compact */
    border-radius: 14px;    /* 🔥 chip style */
    min-height: 32px;       /* 🔥 fixed neat height */
    line-height: 1;
  }

}

/* ===== TEAM SECTION ===== */
.team-section{
  padding: 90px 20px;
  background: #faf7f2;
  text-align: center;
}

.team-head span{
  font-size: 0.9rem;
  color: #9c7c3a;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.team-head h2{
  font-size: 2.4rem;
  margin: 12px 0;
  color: #2b2b2b;
}

.team-head p{
  color: #666;
  max-width: 520px;
  margin: auto;
}

/* GRID */
.team-grid{
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* CARD */
.team-card{
  background: #fff;
  padding: 32px 20px;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.team-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

/* IMAGE */
.team-img{
  width: 140px;
  height: 140px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #f0e4c8;
}

.team-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.team-card h3{
  margin-top: 18px;
  font-size: 1.2rem;
  color: #2b2b2b;
}

.team-card p{
  font-size: 0.9rem;
  color: #966812;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media(max-width:768px){

  .team-head h2{
    font-size: 1.9rem;
  }

  .team-img{
    width: 120px;
    height: 120px;
  }

  .team-card{
    padding: 26px 18px;
  }
}

/* ===== SCROLL POPUP – BLACK & GOLD LUXURY ===== */
.gmp-scroll-popup {
  position: fixed;
  top: 90px;
  right: 20px;
  width: 300px;

  background: #000;                /* Pure black */
  color: #d4af37;                  /* Gold text */

  padding: 22px 20px;
  border-radius: 22px;

  box-shadow: 0 25px 50px rgba(0,0,0,0.65);
  display: none;
  z-index: 9999;

  animation: gmpSlideIn 0.6s ease;
}

/* ===== CLOSE BUTTON ===== */
.gmp-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;

  font-size: 22px;
  line-height: 1;
  color: #d4af37;
  cursor: pointer;

  transition: opacity 0.3s ease;
}

.gmp-popup-close:hover {
  opacity: 0.7;
}

/* ===== HEADINGS ===== */
.gmp-scroll-popup h3 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 4px;

  color: #f5d77a;                  /* Rich gold */
}

.gmp-scroll-popup h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;

  color: #ffffff;                  /* Contrast */
}

/* ===== TEXT ===== */
.gmp-scroll-popup p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;

  color: #f3e5b5;                  /* Soft gold */
}

/* ===== TIMER ===== */
.gmp-popup-timer {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 14px;

  color: #fff4d6;
}

/* ===== BUTTONS ===== */
.gmp-popup-btns {
  display: flex;
  gap: 10px;
}

.gmp-popup-btns a {
  flex: 1;
  text-align: center;

  padding: 9px 0;
  border-radius: 25px;

  background: linear-gradient(135deg, #f0cf87, #cfa24d);
  color: #111;

  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;

  transition: all 0.3s ease;
}

.gmp-popup-btns a:hover {
  background: linear-gradient(135deg, #ffd980, #e0b85c);
  transform: translateY(-2px);
}

/* ===== SLIDE IN ANIMATION ===== */
@keyframes gmpSlideIn {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .gmp-scroll-popup {
    width: 280px;
    top: 80px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .gmp-scroll-popup {
    left: 12px;
    right: 12px;
    width: auto;
    top: auto;
    bottom: 90px;                  /* Mobile-friendly */
  }

  .gmp-scroll-popup h3 {
    font-size: 1.6rem;
  }

  .gmp-scroll-popup h4 {
    font-size: 1.05rem;
  }

  .gmp-scroll-popup p {
    font-size: 0.9rem;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .gmp-scroll-popup {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .gmp-popup-btns a {
    font-size: 0.85rem;
    padding: 8px 0;
  }
}


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

.about-sanctuary {
  background: var(--light-bg);
  padding: 100px 20px;
}

.about-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* VIDEO */
.about-video {
  border-radius: 20px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.about-info {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
}

.section-tag {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 5px;
}

.about-info h2 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.about-info p {
  margin-bottom: 10px;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: white;
  padding: 15px 18px;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  margin: 18px 0;
}

.highlight-box.warning {
  background: #fff7f7;
  border-left-color: #d9534f;
}

/* BUTTONS */
.about-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn-outline {
  padding: 12px 28px;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-solid {
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-solid:hover {
  background: #966812;
}

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

@media (max-width: 991px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-video {
    height: 360px;
  }

  .about-info h2 {
    font-size: 2rem;
  }

  .about-actions {
    flex-direction: column;
  }
  
}
/* ===== ABOUT SECTION MOBILE BUTTON FIX ===== */
@media (max-width: 768px) {

  .about-actions {
    gap: 10px;               /* buttons ke beech space kam */
    margin-top: 18px;
  }

  .btn-outline,
  .btn-solid {
    padding: 9px 20px;       /* 🔥 size reduced */
    font-size: 0.85rem;      /* 🔥 text chhota */
    border-radius: 22px;
    width: auto;             /* full width hata diya */
    max-width: fit-content;  /* compact look */
  }

}



/* product card */

/* ================= SERVICES SECTION ================= */
/* ================= SERVICES HEADING ================= */

/* ================= MODERN SERVICES HEADING ================= */
.services-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 8px 0 12px;
  font-family: 'Playfair Display', serif;

  /* Luxury gold gradient */
  background: linear-gradient(135deg, #d4af37, #9c7a2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Smooth look */
  letter-spacing: 0.5px;
  position: relative;
}

/* Subtle underline – premium */
.services-header h1::after {
  content: "";
  display: block;
  width: 55px;
  height: 2px;
  background: linear-gradient(to right, #d4af37, #9c7a2f);
  margin: 8px auto 0;
  border-radius: 10px;
}

/* Hover glow (desktop only) */
@media (hover: hover) {
  .services-header h1:hover {
    filter: drop-shadow(0 6px 16px rgba(212,175,55,0.35));
    transition: 0.3s ease;
  }
}

/* 📱 Mobile View – smaller & clean */
@media (max-width: 768px) {
  .services-header h1 {
    font-size: 2.1rem;
    line-height: 1.15;
    letter-spacing: 0.3px;
  }

  .services-header h1::after {
    width: 40px;
  }
}

/* 📱 Extra small devices */
@media (max-width: 480px) {
  .services-header h1 {
    font-size: 1.85rem;
  }
}

.services-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 30px;
  padding: 0 16px;
}

/* Tag */
.services-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;
  color: rgb(150, 104, 18);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  font-size: 1.05rem;        /* 👈 desktop & base size bigger */
  line-height: 1;
  position: relative;
}

/* Laptop / large screens */
@media (min-width: 1200px) {
  .services-tag {
    font-size: 1.15rem;      /* 👈 thoda aur premium */
  }
}

/* Tablets */
@media (max-width: 991px) {
  .services-tag {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-tag {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
  }
}

/* Small decorative line */
.services-tag::before,
.services-tag::after {
  content: "";
  width: 28px;
  height: 2px;
  background: rgba(155, 75, 184, 0.35);
}

/* Heading */
.services-heading h2 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
  line-height: 1.2;
}

/* Description */
.services-heading p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

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

/* Tablets */
@media (max-width: 992px) {
  .services-heading h2 {
    font-size: 2.2rem;
  }

  .services-heading p {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-heading {
    margin-bottom: 50px;
  }

  .services-tag {
    font-size: 0.75rem;
    letter-spacing: 1.4px;
  }

  .services-tag::before,
  .services-tag::after {
    width: 18px;
  }

  .services-heading h2 {
    font-size: 1.9rem;
  }

  .services-heading p {
    font-size: 0.95rem;
  }
}

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

.services-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 50px 40px;
  background: #fff;
}

/* Tablet */
@media (max-width: 992px) {
  .services-section {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-section {
    grid-template-columns: 1fr;
    padding: 50px 18px;
  }
}


/* Card */
.service-card {
  height: 420px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

/* Overlay */
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.2)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
  color: #fff;
  text-align: center;
}

/* Text */
.service-overlay h2 {
  font-size: 2.4rem;
  letter-spacing: 3px;
}

.service-overlay h3 {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 20px;
}
.starts-price {
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 600;
  color:#966812;
}

.starts-price span {
  font-weight: 700;
}

.price-ar {
  font-size: 0.9rem;
  color: #777;
  margin-left: 6px;
  direction: rtl;
}
.service-name {
  font-weight: 600;
  font-size: 1rem;
  color: #222;
}

.service-name-ar {
  font-weight: 500;
  font-size: 0.9rem;
  color: #666;
  margin-left: 6px;
  direction: rtl;
}

/* Button */
.service-btn {
  background: rgb(150, 104, 18);
  color: #fff;
  padding: 8px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.service-btn:hover {
  background: #d8b77a;;
  transform: scale(1.08);
}

/* Background Images */
.service-card.hair {
  background-image: url("../image/dee-tissue-massage-in-dubai.jpg");
}

.service-card.spa {
  background-image: url("../image/hot-stone-massage-in-uae.jpg");
}

.service-card.beauty {
  background-image: url("../image/haircut-beard-in-uae.jpg");
}
.service-card.aromatherapy {
  background-image: url("../image/hairspa-in-uae.jpg");
}

.service-card.haircutting {
  background-image: url("../image/fullbody-waxing-in-uae.jpg");
}

.service-card.makeup {
  background-image: url("../image/beauty-in-uae-dubai.jpg");
}
/* Wrapper */
.service-wrapper {
  display: flex;
  flex-direction: column;
}

/* Price strip */
.service-price {
  background: #faf7fc;
  border-radius: 0 0 14px 14px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* Text */
.service-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.service-amount {
  font-size: 1rem;
  font-weight: 600;
  color: rgb(150, 104, 18); /* brand purple */
}

/* Mobile */
@media (max-width: 768px) {
  .service-price {
    padding: 12px 14px;
  }

  .service-name {
    font-size: 0.9rem;
  }

  .service-amount {
    font-size: 0.95rem;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .services-section {
    grid-template-columns: 1fr;
    padding: 50px 20px;
  }

  .service-card {
    height: 360px;
  }
}


/* Product card end  */
/* 3 product cards */

.card {
    box-shadow: 5px 5px 20px #121619;
    height: auto;
    margin-bottom: auto;
  }

  .card-bottom {
    margin-top: 20px;
    height: 420px!important;
    box-shadow: 8px 8px 16px #5a5a5a,
      -8px -8px 16px #000;
  }

  .card-body button {
    height: 40px;
    width: 120px;
  }

  .card-body button:hover {
    height: 40px;
    width: 150px;
  }

  .card img {
    height: 200px;
    object-fit: cover;
  }

  .box {
    margin-top: 70px;
    height: 600px;
    width: 95%;
    background-color: rgb(150, 104, 18);
    opacity: 0.9;
  }

  .images {
    background-image: url(../image/b94b3f81-58a2-4620-88b5-c86bd096b516.jpeg);
    height: 700px;
    width: 100%;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-content: center;
    margin-top: 100px;
    background-attachment: fixed;
  }

  /* For screens smaller than 768px */
  @media (max-width: 1000px) {
    .box {
      height: auto;
    }

    .card {
      margin-top: 10px;
      margin-bottom: 10px;
    }   
    .images {
      height: auto;
    }
    .card-bottom{
        height: auto;
    }
  }
/* 3 product cards end */
  /* image-slider */
  .container {
    max-width: 1200px;
    width: 95%;
  }

  .slider-wrapper {
    position: relative;
  }

  .slider-wrapper .slide-button {
    position: absolute;
    top: 50%;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    z-index: 5;
    color: #fff;
    display: flex;
    cursor: pointer;
    font-size: 2.2rem;
    background: #000;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .slider-wrapper .slide-button:hover {
    background: #404040;
  }

  .slider-wrapper .slide-button#prev-slide {
    left: 25px;
    display: none;
  }

  .slider-wrapper .slide-button#next-slide {
    right: 30px;
  }

  .slider-wrapper .image-list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 18px;
    font-size: 0;
    list-style: none;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .slider-wrapper .image-list::-webkit-scrollbar {
    display: none;
  }

  .slider-wrapper .image-list .image-item {
    width: 325px;
    height: 400px;
    object-fit: cover;
  }

  .container .slider-scrollbar {
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
  }

  .slider-scrollbar .scrollbar-track {
    background: #ccc;
    width: 100%;
    height: 2px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    position: relative;
  }

  .slider-scrollbar:hover .scrollbar-track {
    height: 4px;
  }

  .slider-scrollbar .scrollbar-thumb {
    position: absolute;
    background: #000;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    cursor: grab;
    border-radius: inherit;
  }

  .slider-scrollbar .scrollbar-thumb:active {
    cursor: grabbing;
    height: 8px;
    top: -2px;
  }

  .slider-scrollbar .scrollbar-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
  }

  /* Styles for mobile and tablets */
  @media only screen and (max-width: 1023px) {
    .slider-wrapper .slide-button {
      display: none !important;
    }

    .slider-wrapper .image-list {
      gap: 10px;
      margin-bottom: 15px;
      scroll-snap-type: x mandatory;
    }

    .slider-wrapper .image-list .image-item {
      width: 280px;
      height: 380px;
    }

    .slider-scrollbar .scrollbar-thumb {
      width: 20%;
    }
  }
  

  /* auto slider */
  .slick-slide {
    margin: 0 20px;
  }

  .slick-slide img {
    width: 100%;
  }

  .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
  }

  .slick-list {
    position: relative;
    display: block;
    overflow: hidden;

  }

  .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block
  }

  .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
  }

  .slick-slide img {
    display: block;
  }

  .slick-initialized .slick-slide {
    display: block;
  }


/* ===== MOBILE UX FIX ===== */
@media (max-width: 768px) {

  .poster-slider-section {
    padding: 25px 0 20px;       /* ⬅ bottom space FIXED */
  }


  .poster-arrow {
    display: none;
  }
}


/* Testimonial */


/* ================= TESTIMONIALS ================= */

.testimonials-section {
  padding: 80px 20px;
 background: linear-gradient(
  135deg,
  #f5e6c8,   /* soft champagne gold */
  #fafafa    /* luxury off-white */
);

}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-tag {
  display: inline-block;
  background: #e9d9f4;
  color: #966812;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}

.testimonials-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonials-header p {
  color: #666;
  font-size: 1rem;
}

/* Grid */
.testimonials-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* Highlighted middle card */
.testimonial-card.featured {
  background: #966812;;
  color: #fff;
}

.testimonial-card.featured p,
.testimonial-card.featured span {
  color: #f2e9f7;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.testimonial-user img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h4 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-user span {
  font-size: 0.85rem;
  color: #888;
}

/* Stars */
.testimonial-stars {
  color: #f5b50a;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* Text */
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

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

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

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-header h2 {
    font-size: 1.8rem;
  }
}

/* contact section */
/* ================= CONTACT US ================= */

.blossom-findus-section {
  padding: 90px 20px;
  background: #fff;
}

/* Header */
.findus-header {
  text-align: center;
  margin-bottom: 60px;
}

.findus-header h2 {
  font-size: 2.6rem;
  color: rgb(150, 104, 18);
  margin-bottom: 8px;
}

.findus-header p {
  color: #555;
  font-size: 1rem;
}

/* Layout */
.findus-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* Info section */
.findus-info {
  font-size: 0.95rem;
}

.info-block {
  margin-bottom: 22px;
}

.info-block h4 {
  color: rgb(150, 104, 18);
  margin-bottom: 6px;
  font-weight: 600;
}

.info-block p {
  color: #333;
  line-height: 1.6;
}

/* Links */
.contact-link {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.contact-link:hover {
  color: rgb(150, 104, 18);
  text-decoration: underline;
}

/* Social icons */
.findus-socials {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.findus-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgb(150, 104, 18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.findus-socials a:hover {
  background: #d8b77a;
  transform: translateY(-4px);
}

/* Map */
.findus-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 991px) {
  .findus-wrapper {
    grid-template-columns: 1fr;
  }

  .findus-map iframe {
    height: 320px;
  }

  .findus-header h2 {
    font-size: 2rem;
  }
}


/* Testimonial end */


/* ================= COMPACT FOOTER STRIP ================= */

.footer-bottom {
  background: #f3e9f8;        /* light purple */
  height: 48px;               /* fixed slim height */
  display: flex;
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */
  padding: 0 12px;            /* no extra height */
}

.footer-bottom .copyright {
  margin: 0;
  font-size: 0.85rem;
  color: #966812;
  line-height: 1;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-bottom {
    height: auto;
    padding: 10px 8px;
  }

  .footer-bottom .copyright {
    font-size: 0.75rem;
    white-space: normal;
    text-align: center;
  }
}

/* footer end */
/* ================= CONTACT US – MOBILE SIZE FIX ================= */

@media (max-width: 768px) {

  /* Section padding reduce */
  .blossom-findus-section {
    padding: 60px 16px;
  }

  /* Header */
  .findus-header {
    margin-bottom: 40px;
  }

  .findus-header h2 {
    font-size: 1.8rem;     /* 👈 smaller */
    margin-bottom: 6px;
  }

  .findus-header p {
    font-size: 0.9rem;
  }

  /* Info text */
  .findus-info {
    font-size: 0.9rem;
  }

  .info-block {
    margin-bottom: 16px;
  }

  .info-block h4 {
    font-size: 1rem;       /* 👈 reduce heading */
    margin-bottom: 4px;
  }

  .info-block p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Social icons – smaller & neat */
  .findus-socials {
    gap: 12px;
    margin-top: 14px;
  }

  .findus-socials a {
    width: 36px;           /* 👈 smaller icons */
    height: 36px;
    font-size: 15px;
  }

  /* Map */
  .findus-map iframe {
    height: 260px;         /* 👈 not too big */
    border-radius: 14px;
  }
}



/* ================= LUXURY FOOTER ================= */

.luxury-footer {
 background: rgba(0,0,0,0.95);
  color: #cfcfcf;
  padding: 70px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

/* LOGO */
.footer-logo {
  max-width: 180px;
  margin-bottom: 18px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b5b5b5;
}

/* HEADINGS */
.footer-col h4 {
  color: #d4a64a;
  font-size: 1.1rem;
  margin-bottom: 18px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #d4a64a;
  display: block;
  margin-top: 6px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #d4a64a;
  padding-left: 6px;
}

/* CONTACT */
.footer-col p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a64a, #966812);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,166,74,0.4);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}

/* MOBILE */
@media (max-width: 600px) {
  .footer-logo {
    max-width: 150px;
  }
}
