@font-face {
  font-family: 'QatarArabic';
  src: url('../fonts/qatar-arabic/Qatar2022Arabic-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'QatarArabic';
  src: url('../fonts/qatar-arabic/Qatar2022Arabic-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'QatarArabic';
  src: url('../fonts/qatar-arabic/Qatar2022Arabic-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'QatarArabic';
  src: url('../fonts/qatar-arabic/Qatar2022Arabic-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'QatarArabic';
  src: url('../fonts/qatar-arabic/Qatar2022Arabic-Heavy.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


:root {
    --primary-color: #b5824e;
    --primary-light: #d4a574;
    --light-bg: #f9f7f4;
    --dark-text: #333;
    --light-text: #777;
    --white-color: #fff;
    --black-color: #000;
    --font-family: 'QatarArabic', 'Tajawal', sans-serif;

}

/* Navbar Styles */


html {
  scroll-behavior: smooth;
}

body {
  top: 0px !important;
  font-family: var(--font-family);
}

.bg-touchlight{
  background-color: var(--light-bg);
}

.py-15 {
  padding-top: 80px;
  padding-bottom: 60px;
}

img{
  max-width: 100%;
  height: auto;
}

.skiptranslate {
  display: none !important;
}

/* ===== VISIBILITY CLASSES ===== */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--black-color);
  padding: 20px 0;
  color: #fff;
  font-family: var(--font-family);
}

.top-logo img {
  max-height: 60px;
  width: 100%;
}



/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #b58a5d;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons i {
  color: #fff;
  font-size: 14px;
}

/* ===== LANGUAGE DROPDOWN ===== */
.language-dropdown {
  position: relative;
}

.language-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  font-family: var(--font-family);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.language-btn:hover,
.language-btn:focus {
  color: #fff;
  outline: none;
}

.language-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.language-btn::after {
  display: none !important;
}

.language-dropdown.show .language-btn i {
  transform: rotate(180deg);
}

.language-dropdown .dropdown-menu {
  background: #fff;
  border: none;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  right: -0px;
}

.language-dropdown .dropdown-item {
  color: #333;
  padding: 10px 15px;
  font-family: var(--font-family);
  transition: all 0.3s ease;
}

.language-dropdown .dropdown-item:hover {
  background: #b58a5d;
  color: #fff;
}

/* ===== MAIN NAVBAR ===== */
.navbar {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0;
  padding-right: 0;
  min-height: 60px;
}

.main-navbar {
  background: #b58a5d;
  font-family: var(--font-family);
  position: relative;
}

.mobile-menu-header {
  display: none;
}

.mobile-menu-logo {
  display: none;
}

.mobile-menu-logo img {
  max-height: 60px;
}

.mobile-lang-inside {
  display: none;
}

.mobile-navbar-logo {
  display: none;
}

.mobile-navbar-logo img {
  max-height: 50px;
}

.mobile-menu-close {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.mobile-menu-close:hover {
  color: #fff;
  opacity: 0.8;
}

/* Increased gap between nav items */
.nav-gap {
  gap: 90px;
}

.main-navbar .nav-link {
  color: #fff;
  font-weight: 500;
  position: relative;
}

/* Remove underline & hover underline */
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: #fff;
  text-decoration: none;
}

/* Dropdown icon */
.nav-link .dropdown-icon {
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate icon when dropdown is shown */
.nav-item.show .dropdown-icon {
  transform: rotate(180deg);
}

/* ===== MEGA MENU (3 COLUMNS) ===== */
.mega-dropdown .mega-menu {
  border-radius: 8px;
  border: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  padding: 20px;
  min-width: 600px;
  left: 50%;
  transform: translateX(-50%);
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu .dropdown-item {
  padding: 10px 15px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.mega-menu .dropdown-item:hover {
  background: #b58a5d;
  color: #fff;
}

/* Navbar toggler */
.navbar-toggler {
  border: none;
  position: relative;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  display: block;
}

.navbar-close-icon {
  display: none;
  color: #fff;
  font-size: 24px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  display: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-close-icon {
  display: block;
}

/* ===== OVERLAY FOR MOBILE MENU ===== */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

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

/* Tablet and Mobile */
@media (max-width: 991px) {
  /* Hide desktop top bar */
  .desktop-only {
    display: none !important;
  }

  /* Show mobile elements */
  .mobile-only {
    display: block !important;
  }

  /* Mobile navbar - change background to black */
  .main-navbar {
    background: var(--black-color) !important;
    min-height: 80px;
  }

  .navbar {
    min-height: 80px;
  }

  /* Hide language inside menu initially */
  .mobile-lang-inside {
    display: none !important;
  }

  /* Mobile navbar layout - center logo between language and hamburger */
  .main-navbar .container {
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
  }

  .main-navbar .language-dropdown {
    order: 1;
    flex: 0 0 auto;
  }

  /* Mobile logo centered */
  .mobile-navbar-logo {
    order: 2;
    flex: 1;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .mobile-navbar-logo img {
    max-height: 50px;
    width: 100%;
  }

  .main-navbar .navbar-toggler {
    order: 3;
    flex: 0 0 auto;
    margin-left: 0;
    border: none !important;
  }

  .mobile-only.language-dropdown .language-btn {
    font-size: 16px;
  }

  /* Mobile Menu Header */
  .mobile-menu-header {
    display: block !important;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
  }

  .mobile-menu-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .mobile-menu-logo {
    display: block !important;
    flex-shrink: 0;
  }

  .mobile-menu-logo img {
    max-height: 50px;
  }

  /* HIDE language toggle inside menu - NOT NEEDED */
  .navbar-collapse.show .mobile-lang-inside,
  .navbar-collapse.collapsing .mobile-lang-inside {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .mobile-menu-close {
    display: block !important;
    margin-left: auto;
    margin-right: 0;
  }

  /* Ensure close button is properly aligned to the right */
  .mobile-menu-header-content {
    justify-content: space-between;
  }

  .mobile-menu-header-content .mobile-menu-close {
    order: 3;
  }

  .mobile-menu-header-content .mobile-menu-logo {
    order: 1;
  }

  .mobile-menu-header-content .mobile-lang-inside {
    order: 2;
  }

  /* ===== RIGHT SIDE SLIDING MENU ===== */
  .nav-gap {
    gap: 0;
  }

  /* Prevent navbar from collapsing */
  .navbar-collapse:not(.show):not(.collapsing) {
    display: block !important;
  }

  /* Sliding menu from right */
  .navbar-collapse {
    position: fixed !important;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 85%;
    max-width: 400px;
    background: var(--black-color);
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 20px;
    transition: right 0.25s ease-out;
    margin-top: 0;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    visibility: visible !important;
  }

  .navbar-collapse.show {
    right: 0 !important;
  }

  .navbar-collapse.collapsing {
    right: -100% !important;
    transition: right 0.25s ease-out !important;
    height: 100vh !important;
    display: block !important;
    visibility: visible !important;
  }

  /* Show overlay when menu is open */
  .menu-overlay.active {
    display: block;
  }

  .main-navbar .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Make dropdown toggle text golden when opened */
  .nav-item.show .nav-link,
  .nav-item .nav-link[aria-expanded="true"] {
    color: #b58a5d !important;
  }

  /* Mobile mega menu - single column */
  .mega-dropdown .mega-menu {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    margin-left: 15px;
    min-width: auto;
    padding: 10px;
    box-shadow: none;
    position: static;
    transform: none;
  }

  .mega-menu-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mega-menu .dropdown-item {
    color: #fff;
    padding: 10px 15px;
  }

  .mega-menu .dropdown-item:hover {
    background: rgba(0, 0, 0, 0.3);
  }

  /* Language dropdown mobile styling */
  .mobile-only .dropdown-menu {
    left: 0 !important;
    right: auto !important;
  }

  /* ===== CRITICAL FIX: Hide hamburger & outside language when menu is open ===== */
  /* When menu is fully open */
  .navbar-collapse.show ~ .navbar-toggler,
  .navbar-collapse.show ~ .mobile-lang-outside,
  .navbar-collapse.show ~ .mobile-navbar-logo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* During opening/closing animation */
  .navbar-collapse.collapsing ~ .navbar-toggler,
  .navbar-collapse.collapsing ~ .mobile-lang-outside,
  .navbar-collapse.collapsing ~ .mobile-navbar-logo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Alternative approach using body class (if JavaScript adds a class) */
  body.mobile-menu-open .navbar-toggler,
  body.mobile-menu-open .mobile-lang-outside,
  body.mobile-menu-open .mobile-navbar-logo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Ensure container doesn't show these elements when menu is active */
  .main-navbar .container:has(.navbar-collapse.show) .navbar-toggler,
  .main-navbar .container:has(.navbar-collapse.show) .mobile-lang-outside,
  .main-navbar .container:has(.navbar-collapse.show) .mobile-navbar-logo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .main-navbar .container:has(.navbar-collapse.collapsing) .navbar-toggler,
  .main-navbar .container:has(.navbar-collapse.collapsing) .mobile-lang-outside,
  .main-navbar .container:has(.navbar-collapse.collapsing) .mobile-navbar-logo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* Mobile devices */
@media (max-width: 576px) {
  .main-navbar {
    min-height: 70px !important;
  }

  .navbar {
    min-height: 70px !important;
  }

  .main-navbar .container {
    padding-top: 12px;
    padding-bottom: 12px;
    min-height: 70px !important;
  }

  .mobile-only.language-dropdown .language-btn {
    font-size: 14px;
  }

  .mobile-navbar-logo img {
    max-height: 45px;
  }

  .nav-gap {
    gap: 0;
  }

  .main-navbar .nav-link {
    padding: 12px 0;
  }

  .mobile-menu-header {
    padding: 15px 0;
  }

  .mobile-menu-logo img {
    max-height: 45px;
    width: 100%;
  }

  .mobile-menu-close {
    font-size: 24px;
  }

  /* Adjust menu width for smaller screens */
  .navbar-collapse {
    width: 90%;
    max-width: 350px;
  }

  /* Reinforce hiding on smaller screens */
  .navbar-collapse.show ~ .navbar-toggler,
  .navbar-collapse.show ~ .mobile-lang-outside,
  .navbar-collapse.show ~ .mobile-navbar-logo,
  .navbar-collapse.collapsing ~ .navbar-toggler,
  .navbar-collapse.collapsing ~ .mobile-lang-outside,
  .navbar-collapse.collapsing ~ .mobile-navbar-logo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

/* Desktop - fine tune spacing */
@media (min-width: 992px) and (max-width: 1199px) {
  .nav-gap {
    gap: 40px;
  }

  .mega-dropdown .mega-menu {
    min-width: 500px;
  }
}

/* Hover dropdown only on desktop */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar .dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
  }

  .language-dropdown:hover > .dropdown-menu {
    display: block;
  }

  .language-dropdown:hover .language-btn i {
    transform: rotate(180deg);
  }
}

/* Large desktop - wider mega menu */
@media (min-width: 1400px) {
  .mega-dropdown .mega-menu {
    min-width: 700px;
  }
}

/* ===== HERO SECTION STYLES ===== */
/* =======================================================
   HERO SECTION STYLES – FULL (SCOPED TO .myHeroSwiper)
   ======================================================= */

.carousel-container {
  width: 100%;
  margin: 0 auto;
}

/* ===== SWIPER WRAPPER ===== */
.myHeroSwiper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

/* Slides container */
.myHeroSwiper .swiper-wrapper {
  display: flex;
}

/* Individual slide */
.myHeroSwiper .swiper-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  width: 100%;
}

/* ===== IMAGE HANDLING ===== */
.myHeroSwiper .swiper-slide {
  width: 100%;
  height: auto;
}

.myHeroSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;   
}


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

.myHeroSwiper .nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;

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

  z-index: 10;
  transition: background-color 200ms;
}

.myHeroSwiper .nav-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Hide default Swiper arrows */
.myHeroSwiper .swiper-button-prev::after,
.myHeroSwiper .swiper-button-next::after {
  display: none !important;
}

/* Arrow positions */
.myHeroSwiper .swiper-button-prev {
  left: 8px;
}

.myHeroSwiper .swiper-button-next {
  right: 8px;
}

/* Arrow icon */
.myHeroSwiper .nav-button svg {
  width: 20px;
  height: 20px;
  color: white;
}

/* ---- Bigger arrows on tablet+ ---- */
@media (max-width: 767px) {

  .myHeroSwiper .swiper-button-prev,
   .myHeroSwiper .swiper-button-next {
     display: none;
  }
}

/* ===== DOTS / PAGINATION ===== */

.myHeroSwiper .hero-pagination {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 6px 12px;
  border-radius: 9999px;
  z-index: 10;
  width: auto !important;
}

/* Dots */
.myHeroSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;

  border-radius: 50%;
  border: none;
  cursor: pointer;

  background-color: rgba(255, 255, 255, 0.5);

  opacity: 1 !important;
  transition: background-color 300ms;
}

.myHeroSwiper .swiper-pagination-bullet-active {
  background-color: white !important;
}

.myHeroSwiper .swiper-pagination-bullet:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* ---- Bigger dots on desktop ---- */
@media (min-width: 768px) {

  .myHeroSwiper .hero-pagination {
    bottom: 20px;
    gap: 10px;
    padding: 8px 16px;
  }

  .myHeroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

/* ===== RTL SUPPORT (HERO ONLY) ===== */

html[dir="rtl"] .myHeroSwiper .swiper-button-prev {
  right: 8px;
  left: auto;
}

html[dir="rtl"] .myHeroSwiper .swiper-button-next {
  left: 8px;
  right: auto;
}

/* Tablet RTL */
@media (min-width: 768px) {
  html[dir="rtl"] .myHeroSwiper .swiper-button-prev {
    right: 16px;
  }

  html[dir="rtl"] .myHeroSwiper .swiper-button-next {
    left: 16px;
  }
}


/* Title */
.section-title {
  font-size: 36px;
  letter-spacing: 2px;
  color: #c79a6a;
  margin-bottom: 40px;
  text-align: center;


}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--black-color);
  padding: 60px 0;
  color: #fff;
  font-family: var(--font-family);
}


/* Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
    justify-content: center;   
}

.services-grid > a {
    width: calc(16.66% - 30px);   
    text-align: center;
    text-decoration: none;
}


/* Item */
.service-item img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item h6 {
  margin-top: 12px;
  font-size: 18px;
  color: #fff;
}

.service-item:hover img {
  transform: scale(1.05);
}
/* Hover effect */
.service-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-item:hover p {
  color: #c79a6a;
  transition: color 0.3s ease;
}

/* Button */
.appointment-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background: #b58a5d;
  color: #fff;
  font-size: 18px;
  border-radius: 20px;
  text-decoration: none;
}

.appointment-btn:hover {
  background: #a3774f;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .services-grid > a {
        width: calc(33.33% - 20px);
    }
}

@media (max-width: 576px) {
    .services-grid {
        gap: 25px 15px;
    }

    .services-grid > a {
        width: calc(33.33% - 10px);
    }

    .service-item img {
      width: 100px;
      height: 100px;
    }


    .service-item h6 {
        font-size: 13px;
    }

    .appointment-btn {
      font-size: 12px;
    }
}



/* ===== BANNER ===== */
.innerbanner-image{
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../img/contact-banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  text-align: center;
}

.innerbanner-image h1{
  color:#fff;
  font-size:42px;
  letter-spacing:2px;
  font-weight:400;
}

.innerbanner-image h1 span{
  color:var(--primary-light);
}

.innerbanner-image .page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white-color);
}


/* ===== ABOUT SALON STYLES ===== */
.salon-section {
  padding: 40px 0;
  font-family: var(--font-family);
  background-color: #fff;
}

.salon-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.salon-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
}

.leaf-icon {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  opacity: 0.15;
}

.leaf-icon svg {
  width: 100%;
  height: 100%;
}

.salon-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.salon-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--black-color);
}

.salon-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #212020;
  margin-bottom: 25px;
}

.salon-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.salon-content ul li {
  font-size: 1rem;
  color: #212020;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.salon-content ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #212020;
  font-size: 1.5rem;
  line-height: 1.2;
}

.read-more-btn {
  background-color: #c9a875;
  color: white;
  border: none;
  padding: 12px 35px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.read-more-btn:hover {
  background-color: #b8976a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 168, 117, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .salon-content {
    padding: 30px 20px;
  }

  .salon-content h2 {
    font-size: 2rem;
  }

  .salon-image {
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .salon-section {
    padding: 50px 0;
  }

  .salon-image-wrapper {
    margin-bottom: 30px;
  }

  .salon-content h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .salon-content p {
    font-size: 0.95rem;
  }

  .salon-content ul li {
    font-size: 0.95rem;
  }

  .leaf-icon {
    width: 80px;
    height: 80px;
    right: 5%;
  }
}

@media (max-width: 576px) {
  .salon-content {
    padding: 20px 15px;
  }

  .salon-content h2 {
    font-size: 1.5rem;
  }

  .read-more-btn {
    padding: 10px 30px;
    font-size: 0.85rem;
  }
}

/* === FEATURED SERVICES STYLE === */
/* Section */
.featured-services {
  background: #f1efef;
  padding: 40px 0;
  font-family: var(--font-family);
}


/* Card */
.service-card {
  background: #f9f6f3;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Card Hover Effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background: #fff;
}

/* Image */
.service-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Image Hover Effect */
.service-card:hover img {
  transform: scale(1.05);
}

/* Info */
.service-info {
  flex: 1;
}

.service-info h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
  transition: color 0.3s ease;
  margin-bottom: 15px;
}

.service-info h4 a{
  color: var(--black-color);
}

.service-card:hover .service-info h4 {
  color: #b58a5d;
}

.duration {
  display: inline-block;
  font-size: 14px;
  padding: 4px 10px;
  background: #efe5da;
  color: #7a5a3a;
  border-radius: 12px;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.service-card:hover .duration {
  background: #e6d5c3;
}

.price {
  font-size: 18px;
  margin: 6px 0 10px;
  color: #333;
  font-weight: bold;
}

.price small {
    font-size: 15px;
    font-weight: normal;
}

/* Button */
.btn-book {
  display: inline-block;
  font-size: 16px;
  padding: 6px 14px;
  background: #b58a5d;
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: #a3774f;
  transform: scale(1.05);
  color: #fff;
}

/* Responsive - SAME LAYOUT FOR ALL DEVICES */
@media (max-width: 991px) {
  .section-title {
    font-size: 26px;
  }
}


@media (max-width: 576px) {
 
  .service-card {
    padding: 16px;
  }

  .service-card img {
    width: 100px;
    height: 100px;
  }

  .service-info h4 {
    font-size: 18px;
  }

  .duration {
    font-size: 13px;
  }

  .price {
    font-size: 16px;
  }

  .btn-book {
    font-size: 14px;
  }
}

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

.testimonials-section {
  padding: 40px 0;
  background: radial-gradient(circle at top, #222 0%, var(--black-color) 70%);
  color: #fff;
  font-family: var(--font-family);
  overflow: hidden; /* allows arrows outside container */
}

/* ===========================
   SECTION TITLES
=========================== */

.section-small-title {
  font-size: 28px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 8px;
}


/* ===========================
   SWIPER
=========================== */

.testimonial-swiper {
  padding-bottom: 70px;
}

/* Ensure dynamic height */
.testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* ===========================
   CARD WITH LIQUID FILL
=========================== */

.testimonial-card {
  background: #1a1a1a;
  border: 1px solid #c79a6a;
  border-radius: 16px;
  padding: 30px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Liquid Fill Background */
.liquid-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, #c79a6a 0%, #a87d52 100%);
  border-radius: 16px;
  transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* Wave effect using pseudo-elements */
.liquid-fill::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -50%;
  width: 200%;
  height: 20px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  animation: wave 3s linear infinite;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.liquid-fill::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -50%;
  width: 200%;
  height: 20px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  animation: wave 3s linear infinite;
  animation-delay: -1.5s;
  opacity: 0;
  transition: opacity 0.8s ease;
}

@keyframes wave {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(50%) translateY(0);
  }
}

/* Hover Effect */
.testimonial-card:hover .liquid-fill {
  height: 100%;
}

.testimonial-card:hover .liquid-fill::before,
.testimonial-card:hover .liquid-fill::after {
  opacity: 1;
}

/* Card Content */
.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: color 0.3s ease;
}

/* Quote Icon */
.quote-icon {
  font-size: 36px;
  color: #c79a6a;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.testimonial-card:hover .quote-icon {
  color: #fff;
}

/* Text */
.testimonial-text {
  font-size: 13px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 20px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
  color: #fff;
}

/* Stars */
.stars {
  color: #c79a6a;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.testimonial-card:hover .stars {
  color: #fff;
}

/* Name */
.client-name {
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  margin: 0;
  transition: color 0.3s ease;
}

.testimonial-card:hover .client-name {
  color: var(--black-color);
  font-weight: 600;
}

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

.swiper-button-prev,
.swiper-button-next {
  width: 46px;
  height: 46px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(199, 154, 106, 0.6);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  color: #c79a6a;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

/* Extreme positioning */
.swiper-button-prev {
  left: -60px;
}

.swiper-button-next {
  right: -60px;
}

/* Arrow icon */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

/* Hover effect */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #c79a6a;
  color: var(--black-color);
}

/* ===========================
   PAGINATION DOTS
=========================== */

.swiper-pagination {
  bottom: 20px;
}

.swiper-pagination-bullet {
  background: #666;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #c79a6a;
}

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

@media (max-width: 992px) {
  .swiper-button-prev {
    left: -35px;
  }

  .swiper-button-next {
    right: -35px;
  }
}

@media (max-width: 768px) {
  .section-small-title {
    font-size: 18px;
  }

  .section-title {
    font-size: 24px;
  }

  .client-name {
    font-size: 14px;
  }

  .swiper-button-prev {
    left: -15px;
  }

  .swiper-button-next {
    right: -15px;
  }

  .py-15 {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

/* ===========================
   FOOTER STYLES
=========================== */
/* Footer main */
.footer {
  background: radial-gradient(circle at top, #222 0%, var(--black-color) 70%);
  color: #fff;
  padding: 70px 0 0;
  font-family: var(--font-family);
}

/* Logo */
.footer-logo img {
  max-width: 160px;
  margin-bottom: 18px;
}

/* Social icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #b58a5d;
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
  font-size: 14px;
  text-decoration: none;
}

.footer a {
  text-decoration: none;
  color: #fff;
}

/* Titles */
.footer-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: #fff;
}

/* Text */
.footer p,
.footer-links li a {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a:hover {
  color: #b58a5d;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 50px;
  background: #1a1919;
  text-align: center;
  padding: 14px 10px;
  font-size: 14px;
  color: #fff;
}



/* Responsive */
@media (max-width: 768px) {
  .footer-title {
    font-size: 16px;
  }
  .footer {
    text-align: center;
  }
  .footer p,
  .footer-links li a {
    font-size: 14px;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    font-size: 12px;
  }

  .innerbanner-image{
    padding:60px 0;
  }

  .innerbanner-image h1{
    font-size:32px;
  }

}


.section-title2{
    text-align:center;
    color:var(--primary-color);
    margin-bottom:60px;
    position:relative;
}
.section-title2:after{
    content:'';
    width:70px;
    height:3px;
    background:var(--primary-color);
    position:absolute;
    bottom:-8px;
    left:50%;
    transform:translateX(-50%);
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;            /* English default */
    background: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    line-height: 55px;
    z-index: 9999;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all .3s ease;
}

.whatsapp-float:hover {
    background: #20b358;
    color: #fff;
    transform: scale(1.05);
}

/* RTL – Arabic */
html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 25px;
}

