@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oranienbaum&display=swap');


.sticky-top {
  background-color: #ffffff !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}


.sticky-top.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar styles */
.navbar-nav .nav-item {
  position: relative;
  margin-right: 25px;
}

.navbar-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  color: #1b1f25;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 1rem 0;
  letter-spacing: 0.18em;
  transition: color 0.3s ease;
  font-weight: 500;
  margin-right: 20px;
  text-align: left;
}


.navbar-nav .nav-link:hover {
  color: #0a7261 !important;
}


.navbar-nav .nav-item.home-link {
  color: black !important;
}


.navbar-nav .dropdown-toggle::after {
  margin-left: 0.35rem;
  font-size: 1.1rem;
}

.dropdown-menu {
  display: none;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  padding: 10px 15px;
}

.dropdown-item:hover {
  background-color: #005851;
  color: white;
}


.navbar-brand {
  background: none !important;
  padding: 0;
}

.navbar-brand img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}


.btn-primary {
  background-color: #005851;
  border: none;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background-color: #00463f;
  transform: translateY(-2px);
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 88, 81, 0.6);
}

/* Mobile responsiveness */
@media (max-width: 992px) {
  .navbar-nav .nav-link {
    margin: 10px 0;
    font-size: 0.85rem;
  }

  .navbar-nav .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    display: none;
  }

  .navbar-nav .dropdown-menu.show {
    display: block;
  }

  .navbar-nav .dropdown-item {
    width: 100%;
  }


  .navbar-collapse {
    display: flex;
    flex-direction: column;
  }


  .navbar-nav {
    text-align: left;
    width: 100%;
  }


  .dropdown-toggle::after {
    margin-left: 0.5rem;
  }


  .navbar-nav .nav-item.home-link {
    color: black !important;
  }
}


@media (min-width: 993px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu {
    display: none;
  }
}





.hero-copy {
  z-index: 1;
  width: 100%;
  padding: 0 50px;
}


.hero-welcome {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 15px;
  padding-left: 0 !important;
  color: #005851;
  text-align: left !important;
}


.hero-main-heading {
  font-size: 46px;
  color: #000000dc;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: left;
}


.hero-header .col-lg-6 h1,
.hero-header .col-lg-6 h2 {
  text-align: left !important;
}

.hero-header .col-lg-6 h1 {
  font-family: "Oranienbaum", serif;
  font-size: 52px;
  margin: 0 0 20px 0;
}

.hero-header .col-lg-6 h2 {
  margin-top: 5px;
}

/* mobile responsiveness */
@media (max-width: 768px) {

  .hero-welcome,
  .hero-main-heading {
    text-align: left !important;
    margin-left: 0;
  }


  .hero-copy {
    padding-left: 20px;
    padding-right: 20px;
  }


  .d-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }


  .hero-welcome {
    font-size: 36px;
  }

  .hero-main-heading {
    font-size: 32px;
  }
}


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


@media (max-width: 768px) {
  .carousel-inner img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.carousel-item {
  height: auto !important;
}

.carousel-inner img {
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
}







/* ABOUT SECTION */
.about-title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #005851;
  margin-bottom: 10px;
}

.about-subtitle {
  font-family: "Oranienbaum", serif !important;
  font-size: 42px;
  color: #222;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  color: #555;
  line-height: 1.7;
  max-width: 90%;
}


.col-lg-6 .about-title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  color: #005851 !important;
  margin-bottom: 10px !important;
}

.col-lg-6 .about-subtitle {
  font-family: "Oranienbaum", serif !important;
  font-size: 40px !important;
  color: #222 !important;
  margin-bottom: 20px !important;
}

.col-lg-6 .about-text,
.col-lg-6 p {
  font-size: 16px !important;
  font-family: "Montserrat", sans-serif !important;
  color: #555 !important;
  line-height: 1.7 !important;
}

@media (max-width: 768px) {

  .hero-copy>.d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    margin-bottom: 30px !important;
    margin-left: -20px !important;
  }

  .hero-copy>.d-flex>a {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px !important;
    width: 100%;
  }

  .hero-copy>.d-flex>a .ps-3 {
    display: flex !important;
    flex-direction: column !important;
    padding-left: 0 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }

  .hero-copy .btn-square {
    width: 38px !important;
    height: 38px !important;
  }

  .hero-copy h5 {
    margin: 0 !important;
    font-size: 17px !important;
  }

  .hero-copy p {
    margin: 0 !important;
    font-size: 15px !important;
  }

  .hero-main-heading {
    margin-top: 25px !important;
  }
}










/* Hero section background */
.hero-header {
  background-color: #f9f9f9;

}


.hero-header-text h1 {
  color: #005851;

}


.hero-header-text .btn-square {
  width: 45px;
  height: 45px;
  border-radius: 8px;
}

.hero-header-text .btn-square i {
  font-size: 18px;
}

/* SERVICES SECTION */
.services-section {
  background-color: #fffdf9;
  padding: 80px 0;
  text-align: center;
}

/* Small title */
.services-mini-title {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #005851 !important;
  margin-bottom: 20px;
  margin-top: 0;
}


.services-main-title {
  font-family: "Oranienbaum", serif;
  font-size: 48px;
  font-weight: 400;
  color: #000 !important;
  margin-bottom: 60px;
  line-height: 1.2;
}


.service-box {
  text-align: center;
  padding: 20px;
}

.service-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.service-box:hover .service-icon {
  transform: scale(1.1);
}

.service-box h4 {
  color: #004b47;
  font-family: "Oranienbaum", serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .services-main-title {
    font-size: 34px;
    line-height: 1.25;
    text-align: center;
    margin: 0 auto 30px;
    max-width: 90%;
  }

  .services-mini-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .service-icon {
    width: 130px;
    height: 130px;
  }

  .service-box {
    margin-bottom: 40px;
  }
}

.relaxation-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
  font-family: "Oranienbaum", serif;
  color: #3a3a3a;
}


.relaxation-content {
  display: flex;
  flex-wrap: nowrap;

  align-items: flex-start;
  gap: 50px;
}


.image-container {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-image {
  width: 100%;
  max-width: 420px;
  border-radius: 50% / 40%;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-container:hover .service-image {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.services-container {
  flex: 0 0 50%;
}


.sub-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  color: #3b8c7a;
  margin-bottom: 8px;
}


.section-title h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #1f1f1f;
}


.service {
  margin-bottom: 35px;
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.service-header h3 {
  font-size: 18px;
  font-weight: 500;
  color: #2a2a2a;
  margin: 0;
  white-space: nowrap;
  background-color: #fff;
  z-index: 1;
  padding-right: 6px;
}

.service-header .dots {
  flex-grow: 1;
  border-bottom: 1px dotted #ccc;
  margin: 0 10px;
  height: 1px;
}

.service-header .price {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  white-space: nowrap;
  background-color: #fff;
  padding-left: 6px;
  z-index: 1;
}

.sub-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #005851;
  text-align: left;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}




.section-title h2 {
  font-weight: 500 !important;
}

.service p {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}


.small-text {
  font-size: 13px;
}


@media (max-width: 992px) {
  .relaxation-content {
    flex-direction: column;
    align-items: center;
  }

  .image-container,
  .services-container {
    flex: 1 1 100%;
  }

  .image-container {
    margin-bottom: 40px;
  }
}



/* relaxation */
.image-border {
  border: 2px solid #3b8c7a;

  border-radius: 50% / 40%;

  padding: 5px;

  display: inline-block;

}

.service-image {
  width: 100%;
  max-width: 420px;
  border-radius: 50% / 40%;

  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-border:hover .service-image {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;

  background: url('../image/banner.webp') left center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}



.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.55);
  z-index: 1;
}

/* Text container */
.hero-content {
  position: relative;
  z-index: 2;
  padding-right: 9%;
  text-align: right;
  max-width: 600px;
  margin-top: 60px !important;
}

/* Subheading */
.subheading {
  font-family: "Montserrat", sans-serif !important;
  color: #00796b;
  letter-spacing: 2.5px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 50px important !;
}


.hero-title {
  font-family: "Oranienbaum", serif !important;
  color: #111;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.15;
  margin-top: 50px;

  margin-bottom: 60px !important;
}

.hero-section .hero-title {
  font-size: 2.6rem !important;
  line-height: 1.1 !important;
}



.hero-title span {
  display: block;
  margin: 0 auto 0 0;
}

.hero-btn {
  margin-top: 25px !important;
}


.hero-content {
  padding-right: 5% !important;

  text-align: right;
}


.subheading {
  margin-bottom: 10px !important;

}


.hero-title {
  font-size: 3.3rem !important;

  line-height: 1.08 !important;

  margin-bottom: 20px !important;
  margin-top: 20px;

}


.hero-btn {
  margin-top: 30px !important;
}




/* Main heading */
.hero-title {
  font-family: "Oranienbaum", serif;
  color: #111;
  font-size: clamp(2.8rem, 4vw, 3.4rem);

  font-weight: 400;
  line-height: 1.08;

  margin-bottom: 22px;

}

/* Button */
.hero-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 13px 32px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  border: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #00796b;
  color: #fff;
}


.services-banner {
  position: relative;
  width: 100%;
  height: 62vh;
  margin-top: 5rem;
  background-image: url("../image/image2.webp");

  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5.5rem;
  text-align: center;
  overflow: hidden;
  font-family: "Montserrat", sans-serif !important;
}

.hero-section .hero-content {
  padding-right: 6%;

  text-align: right;
}


.hero-section .subheading {
  margin-bottom: 18px;
}




/* --------------------------------------------------
   HERO V2 BASE
-------------------------------------------------- */
.hero--v2 {
  margin-top: 4rem;
  background:
    radial-gradient(1200px 600px at 85% 12%, rgba(255, 255, 255, .5), transparent 60%),
    linear-gradient(135deg, #e8eff6 10%, #cfdde9 85%);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  color: #1b2430;
}

/* Main 2-column layout */
.hero--v2 .hero__wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  min-height: 75vh;
}

/* Copy area */
.hero--v2 .hero__copy {
  text-align: center;
  margin: 0 auto;
}

/* Eyebrow */
.hero--v2 .hero__eyebrow {
  color: #0f6b6b;
  letter-spacing: 0.28em;
  font-weight: 550;
  font-size: 0.75rem;
  margin-bottom: 1.6rem;
}

/* Headline */
.hero--v2 .hero__title {
  font-family: "Oranienbaum", serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 25px 0 30px;
}

.hero--v2 .hero__title span {
  display: block;
  white-space: nowrap;
}

/* Middle line smaller */
.hero--v2 .hero__title .center-line {
  font-size: 0.8em;
  margin: 0.15em 0;
}

/* Sub text */
.hero--v2 .hero__sub {
  color: #555b67;
  max-width: 58ch;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
}

/* CTA button */
.hero--v2 .hero__btn {
  display: inline-block;
  background: #1a1818;
  color: #fff;
  text-decoration: none;
  padding: .95rem 2.2rem;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: .96rem;
  transition: background .25s ease, transform .18s ease;
}

.hero--v2 .hero__btn:hover {
  background: #0f6b6b;
  transform: translateY(-2px);
}

/* IMAGE */
.hero--v2 .hero__image {
  display: flex;
  justify-content: flex-end;
}

.hero--v2 .hero__arch {
  width: min(500px, 92%);
  aspect-ratio: 4/5;
  overflow: hidden;
  border-top-left-radius: 50% 35%;
  border-top-right-radius: 50% 35%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
  transform: translateX(2vw);
}

.hero--v2 .hero__arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* --------------------------------------------------
   TABLET RESPONSIVE (under 980px)
-------------------------------------------------- */
@media (max-width: 980px) {
  .hero--v2 .hero__wrap {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .hero--v2 .hero__arch {
    transform: none;
    width: min(480px, 85vw);
    margin: 2rem auto 0;
  }
}


@media (max-width: 600px) {

  /* Hero section padding */
  .hero--v2 {
    padding: 5.5rem 0 4.5rem;
    text-align: center;
  }


  .hero--v2 .hero__wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto !important;
  }

  .hero--v2 .hero__copy {
    margin: 0 auto;
  }

  .hero--v2 .hero__eyebrow {
    margin-bottom: 2rem !important;
    display: block;
  }


  .hero--v2 .hero__title {
    font-size: 1.7rem;
    line-height: 1.15;
    max-width: 22ch;
    margin: 0 auto 1rem;
  }

  .hero--v2 .hero__title span {
    white-space: nowrap;
    display: block;
  }

  .hero--v2 .hero__title .center-line {
    font-size: 0.85em;
    line-height: 1;
    margin: 0.15em 0;
  }

  /* Subtitle */
  .hero--v2 .hero__sub {
    max-width: 45ch;
    margin: 0 auto 1.5rem;
    font-size: 0.95rem;
  }

  /* Button */
  .hero--v2 .hero__btn {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }

  /* Image */
  .hero--v2 .hero__arch {
    transform: none !important;
    width: 78vw;
    margin: 2rem auto 0;
  }

  .hero--v2 .hero__image {
    justify-content: center;
  }
}


/* ===========================
   HOME STATS SECTION (Responsive)
=========================== */


.home-stats {
  background-color: #ffffff;
  padding: 80px 0;
}


.home-stats .stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* Each counter */
.home-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Wrap number + plus sign on same line */
.home-stats .stat-number-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Number */
.home-stats .stat-number {
  font-family: "Oranienbaum", serif;
  font-size: 130px;
  line-height: 1;
  margin: 0;
  color: #000;
}


.home-stats .stat-plus,
.home-stats .stat-plus-small {
  font-family: "Oranienbaum", serif;
  font-size: 130px;
  line-height: 1;
  margin: 0;
  position: relative;
  transform: translateY(0.08em);
  color: #000;
}


.home-stats .stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin-top: 12px;
  line-height: 1.3;
  text-align: center;
  color: #221D1A;
}

/* ----------------------
   TABLET: medium screens
------------------------ */
@media (max-width: 1024px) {

  .home-stats .stat-number,
  .home-stats .stat-plus,
  .home-stats .stat-plus-small {
    font-size: 100px;
  }

  .home-stats .stats-inner {
    gap: 30px;
  }
}

/* ----------------------
   SMALL TABLET / LARGE PHONE
------------------------ */
@media (max-width: 768px) {
  .home-stats {
    padding: 60px 0;
  }

  .home-stats .stats-inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .home-stats .stat-number,
  .home-stats .stat-plus,
  .home-stats .stat-plus-small {
    font-size: 90px;
  }

  .home-stats .stat-label {
    font-size: 16px;
  }
}

/* ----------------------
   MOBILE
------------------------ */
@media (max-width: 480px) {
  .home-stats {
    padding: 50px 0;
  }

  .home-stats .stat-number,
  .home-stats .stat-plus,
  .home-stats .stat-plus-small {
    font-size: 60px;
  }

  .home-stats .stat-label {
    font-size: 14px;
    margin-top: 10px;
  }

  .home-stats .stat-number-wrap {
    gap: 4px;
  }
}



/*  */


.services-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.65) 18%,
      rgba(255, 255, 255, 0.28) 48%,
      rgba(255, 255, 255, 0.1) 70%);
  z-index: 1;
  pointer-events: none;
}

.services-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to top,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0));
  z-index: 1;
  pointer-events: none;
}

/* ===== Content Layer ===== */
.services-banner .overlay {
  position: relative;
  z-index: 2;
  color: #221D1A;

}


.services-banner .subheading {
  color: #0f6b6b;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
}

/* ===== Main Heading (Oranienbaum) ===== */
.services-banner h2 {
  font-family: "Oranienbaum", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem);
  /* slightly smaller per your style */
  line-height: 1.25;
  color: #221D1A;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .services-banner {
    height: 55vh;
    padding-top: 4rem;
    background-position: center 40%;
    margin-top: 3.5rem;
  }

  .services-banner h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
}

@media (max-width: 768px) {

  .services-banner {
    height: 55vh;
    padding-top: 4rem;
    background-position: center 40%;
    margin-top: 3.5rem;
    text-align: center;
  }

  /* Subheading adjustments */
  .services-banner .subheading {
    font-size: 0.7rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1.5px;
  }


  .services-banner h2 {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
    line-height: 1.3;
    max-width: 90%;
    margin: 0 auto;
  }

  /* Overlay content */
  .services-banner .overlay {
    padding: 0 1rem;
  }
}


/* ===== Testimonials Section ===== */
.testimonials {
  text-align: center;
  padding: 6rem 2rem 5rem;
  background-color: #fff;
  color: #221D1A;
  font-family: "Montserrat", sans-serif;
}

/* OUR HAPPY CLIENTS */
.testimonials .subheading {
  font-family: "Montserrat", sans-serif;
  color: #0f6b6b;
  /* teal */
  letter-spacing: 0.25em;
  /* wide spacing */
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

/* Main heading */
.testimonials h2 {
  font-family: "Oranienbaum", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: #221D1A;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}


/* Star rating */
.testimonials .stars {
  color: #ff9800;
  font-size: 1.8rem;
  letter-spacing: 6px;
  margin-bottom: 2.5rem;
}

/* Review text */
.testimonials .review {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  max-width: 850px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  color: #221D1A;
  font-weight: 400;
  text-align: center;

}

/* Client name */
.testimonials .client-name {
  font-family: "Oranienbaum", serif;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  color: #221D1A;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials {
    padding: 4rem 1.5rem;
  }

  .testimonials h2 {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .testimonials .review {
    font-size: 1rem;
    max-width: 100%;
  }
}


.footer-block.v2 {
  width: 100%;
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  font-family: 'Montserrat', sans-serif;
  color: #221D1A;
}

/* Layout */
.footer-block.v2 .fb-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4.5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 4rem;
  position: relative;
}

/* Vertical Dividers */
.footer-block.v2 .fb-divider {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.12);
}

.footer-block.v2 .fb-divider.one {
  left: 33.33%;
}

.footer-block.v2 .fb-divider.two {
  left: 66.66%;
}


.footer-block.v2 .fb-col {
  position: relative;
  z-index: 3;
}


.footer-block.v2 .fb-left .fb-eyebrow,
.footer-block.v2 .fb-right .fb-eyebrow {
  font-family: "Oranienbaum", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #221D1A;
  text-transform: none;
  margin-bottom: 1.5rem;
}


.footer-block.v2 .fb-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-block.v2 .fb-links a {
  font-family: "Oranienbaum", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #221D1A;
  text-decoration: none;
  line-height: 1.3;
  transition: color .25s ease;
}

.footer-block.v2 .fb-links a:hover,
.footer-block.v2 .fb-links a.active {
  color: #0f6b6b;
}

/* Floral */
.footer-block.v2 .fb-floral-left,
.footer-block.v2 .fb-floral-right {
  position: absolute;
  bottom: -20px;
  width: 400px;
  height: auto;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.footer-block.v2 .fb-floral-left {
  left: 0;
}

.footer-block.v2 .fb-floral-right {
  right: 0;
}

/* ==========================
   CENTER COLUMN
   ========================== */
.footer-block.v2 .fb-logo {
  width: 180px;
  margin: 0 auto 1.5rem;
  display: block;
}

/* BODY TEXT — MONTSERRAT */
.footer-block.v2 .fb-copy {
  font-family: "Montserrat", sans-serif;
  text-align: justify;
  max-width: 500px;
  margin: 0 auto 1.2rem;
  font-size: 1rem;
  line-height: 1.9;
}

/* PHONE NUMBER — MONTSERRAT */
.footer-block.v2 .fb-phone {
  display: block;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0f6b6b;
  text-decoration: none;
  margin-bottom: 2rem;
}

/* Social */
.footer-block.v2 .fb-socials {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.footer-block.v2 .fb-socials .ico {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: #fff;
  color: #221D1A;
  transition: all 0.25s ease;
}

.footer-block.v2 .fb-socials .ico:hover {
  border-color: #0f6b6b;
  color: #0f6b6b;
}

.footer-block.v2 .fb-socials .ico svg {
  width: 20px;
  height: 20px;
}


.footer-block.v2 .fb-contact a {
  font-family: "Montserrat", sans-serif;
  color: #221D1A;
  font-size: 1.1rem;
  text-decoration: none;
}

.footer-block.v2 .fb-contact a:hover {
  color: #0f6b6b;
}

.footer-block.v2 .fb-hours {
  font-family: "Montserrat", sans-serif;
  margin-top: 0.5rem;
  list-style: none;
  padding: 0;
  font-size: 1rem;
  line-height: 1.8;
}



.footer-services-list {
  margin-top: 6px;
}

.footer-services-list a {
  display: block;
  font-size: 14px;
  margin: 2px 0;
  padding-left: 10px;
  text-decoration: none;
  color: #000 !important;
  transition: color 0.2s ease-in-out;
}

footer .footer-services-list a:hover {
  color: #0A7261 !important;
}

.footer-services-toggle .chevron {
  font-size: 100x;
  line-height: 1;
  margin-left: 4px;
  transition: transform 0.3s ease;
}


/* Rotate arrow when expanded */
.footer-services-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

footer .footer-services-list a {
  font-size: 20px !important;
  line-height: 1.3 !important;
  display: block !important;
  margin: 3px 0 !important;
  color: #000 !important;
}






/* ==========================
   COPYRIGHT BAR
   ========================== */
.footer-block.v2 .fb-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.4rem;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
}

.footer-block.v2 .fb-bottom .brand,
.footer-block.v2 .fb-bottom .dev {
  color: #bd7655 !important;
  font-weight: 600;
}

.footer-block.v2 .fb-bottom a.dev {
  text-decoration: none !important;
}

.footer-block.v2 .fb-bottom a.dev:hover {
  text-decoration: underline !important;
}


.footer-block.v2 .fb-left .fb-eyebrow,
.footer-block.v2 .fb-right .fb-eyebrow {
  font-family: "Oranienbaum", serif;
  font-size: 2.1rem;
  /* ≈ 24px – medium */
  font-weight: 400;
  letter-spacing: 0;
  color: #221D1A;
  text-transform: none;
  margin-bottom: 1.5rem;
}


.footer-block.v2 .fb-links a {
  font-family: "Oranienbaum", serif;
  font-size: 2.7rem;

  font-weight: 400;
  color: #221D1A;
  text-decoration: none;
  line-height: 1.25;
  transition: color .25s ease;
}


.footer-block.v2 .fb-copy {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  /* 16px – normal text */
  line-height: 1.9;
}

/* PHONE NUMBER */
.footer-block.v2 .fb-phone {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  /* a little larger than body */
  font-weight: 600;
}

/* CONTACT TEXT & HOURS */
.footer-block.v2 .fb-contact a,
.footer-block.v2 .fb-hours {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  /* 16px */
  line-height: 1.8;
}

.footer-block.v2 .fb-logo {
  width: 160px;

  margin: 0 auto 1.2rem;

  display: block;
}


.footer-block.v2 .fb-copy {
  font-size: 0.9rem;

  line-height: 1.8;
  max-width: 300px;

  margin: 0 auto 1.2rem;
  color: #221D1A;
}


.footer-block.v2 .fb-phone {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;

  font-weight: 400;

  color: #0f6b6b;
  text-align: center;
  margin-top: 1rem;
}


.footer-block.v2 .fb-left .fb-eyebrow,
.footer-block.v2 .fb-right .fb-eyebrow {
  font-size: 1.0rem;

}


.footer-block.v2 .fb-links a {
  font-size: 2.3rem;

  line-height: 1.2;
}


.footer-block.v2 .fb-contact a,
.footer-block.v2 .fb-hours {
  font-size: 0.95rem;
  margin-top: 50;
}


.footer-block.v2 {
  position: relative;
  overflow: visible;
}

.footer-block.v2 .fb-floral-left,
.footer-block.v2 .fb-floral-right {
  position: absolute;
  bottom: -20px;

  width: 400px;
  height: auto;
  opacity: 0.7;

  filter: contrast(1.2);

  pointer-events: none;
  z-index: 0;

}

.footer-block.v2 .fb-floral-left {
  left: 0;
}

.footer-block.v2 .fb-floral-right {
  right: 0;
}



.footer-block.v2 .fb-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 4rem;
  align-items: start;

}


.footer-block.v2 .fb-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.footer-block.v2 .fb-center {
  align-items: center;
  text-align: center;
}

.footer-block.v2 .fb-center .fb-copy {
  text-align: justify;
}


.footer-block.v2 .fb-right {
  align-items: flex-start;
  text-align: left;
}


.footer-block.v2 .fb-divider {
  height: 100%;
  top: 0;
}



.footer-block.v2 .fb-eyebrow {
  font-family: "Oranienbaum", serif !important;
  font-size: 1.5rem !important;

  font-weight: 400;
  color: #221D1A;
  margin-bottom: 1.8rem;

}


.footer-block.v2 .fb-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.footer-block.v2 .fb-left,
.footer-block.v2 .fb-center,
.footer-block.v2 .fb-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 40px;

}


.footer-block.v2 .fb-left .fb-eyebrow,
.footer-block.v2 .fb-right .fb-eyebrow,
.footer-block.v2 .fb-logo {
  margin-top: 0;
}

.footer-block.v2 .fb-center {
  align-items: center;
  text-align: center;
}

.footer-block.v2 .fb-center .fb-copy {
  text-align: justify;
}


.footer-block.v2 .fb-left .fb-eyebrow,
.footer-block.v2 .fb-right .fb-eyebrow {
  font-family: "Oranienbaum", serif;
  font-size: 1.8rem;
  /* a bit bigger */
  font-weight: 400;
  color: #221D1A;
  margin-bottom: 1.8rem;
}

/* Contact Us spacing */
.footer-block.v2 .fb-right .fb-contact a {
  display: block;

  margin-bottom: 0.8rem;

  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #221D1A;
}


.footer-block.v2 .fb-right .fb-eyebrow {
  margin-bottom: 1.8rem !important;
}


.footer-block.v2 .fb-right .fb-hours {
  margin-top: 1.2rem;
}


.footer-block.v2 .fb-right .fb-contact+.fb-eyebrow {
  margin-top: 2rem !important;

}

@media (max-width: 768px) {

  .footer-block.v2 .fb-wrap {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }

  /* Columns: full width */
  .footer-block.v2 .fb-left,
  .footer-block.v2 .fb-center,
  .footer-block.v2 .fb-right {
    width: 100%;
    padding-top: 0;
    align-items: center;
    text-align: center;
  }

  /* Center column text */
  .footer-block.v2 .fb-center .fb-copy {
    max-width: 100%;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Left & Right column headings */
  .footer-block.v2 .fb-left .fb-eyebrow,
  .footer-block.v2 .fb-right .fb-eyebrow {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }

  /* Links (Quick links / Our Services) */
  .footer-block.v2 .fb-links a {
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 3px 0;
  }

  /* Contact text & hours */
  .footer-block.v2 .fb-right .fb-contact a,
  .footer-block.v2 .fb-right .fb-hours {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
  }

  /* Footer phone number */
  .footer-block.v2 .fb-phone {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0.8rem;
  }

  /* Footer logo */
  .footer-block.v2 .fb-logo {
    width: 140px;
    margin-bottom: 1rem;
  }

  /* Vertical dividers: hide on mobile */
  .footer-block.v2 .fb-divider {
    display: none;
  }

  /* Floral vectors: smaller & adjusted */
  .footer-block.v2 .fb-floral-left,
  .footer-block.v2 .fb-floral-right {
    width: 250px;
    bottom: -10px;
    opacity: 0.5;
  }

  /* Footer bottom bar */
  .footer-block.v2 .fb-bottom {
    font-size: 0.85rem;
    padding: 1rem 0;
  }


  .footer-block.v2 .fb-right .fb-contact+.fb-eyebrow {
    margin-top: 1.2rem !important;
  }
}





/* ===== ABOUT PAGE HERO ===== */

/* ABOUT HERO BANNER */
.about-hero {
  width: 100%;
  height: 400px;
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../image/bg.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  box-sizing: border-box;
}

/* MAIN TITLE (Oranienbaum) */
.about-hero h1 {
  font-family: "Oranienbaum", serif;
  font-size: 58px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: #ffffff;
}

/* BREADCRUMB TEXT (Montserrat) */
.about-hero .breadcrumb-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* BREADCRUMB LINKS */
.about-hero .breadcrumb-text a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s ease;
}

.about-hero .breadcrumb-text a:hover {
  color: #e4e4e4;
}

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

/* Tablet: max-width 992px */
@media (max-width: 992px) {
  .about-hero {
    height: 320px;
    padding: 0 15px;
  }

  .about-hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .about-hero .breadcrumb-text {
    font-size: 15px;
  }
}

/* Mobile: max-width 768px */
@media (max-width: 768px) {
  .about-hero {
    height: 280px;
    padding: 0 15px;
  }

  .about-hero h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .about-hero .breadcrumb-text {
    font-size: 14px;
  }
}

/* Small Mobile: max-width 480px */
@media (max-width: 480px) {
  .about-hero {
    height: 240px;
    padding: 0 12px;
  }

  .about-hero h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .about-hero .breadcrumb-text {
    font-size: 13px;
  }
}



/* ABOUT SECTION WRAPPER */
.about-section {
  width: 100%;
  padding: 80px 7vw;
}

/* FLEX ROW */
.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}

/* LEFT SIDE CONTENT — ALWAYS LEFT ALIGNED */
.about-left {
  flex: 1;
  text-align: left !important;
}

/* SUBTITLE (ABOUT OUR SALON) */

.about-subtitle {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #005851 !important;

  margin-top: 40px !important;

  margin-bottom: 25px !important;


  display: block;
}


.about-section .about-subtitle {
  margin-bottom: 6px !important;

}


.about-section .about-title {
  margin-top: 15px !important;

  margin-bottom: 25px;

}



/* ABOUT – main heading */


.about-title {
  font-family: 'Oranienbaum', serif !important;
  font-size: 48px !important;
  /* was 56px – a bit smaller */
  font-weight: 400 !important;
  line-height: 1.15 !important;
  color: #221D1A !important;
  margin-bottom: 25px !important;
  padding-left: 0px !important;
  max-width: 700px;

  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* RIGHT SIDE IMAGE */
.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.about-image img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: cover;
}

/* TABLET (max-width: 768px) */
@media (max-width: 768px) {

  .about-section {
    padding: 60px 6vw;
  }

  .about-row {
    flex-direction: column;
    gap: 40px;
  }

  .about-title {
    font-size: 38px !important;
    max-width: 100%;
  }

  .about-subtitle {
    font-size: 11px !important;
    margin-top: 25px !important;
  }

  .about-image img {
    max-width: 500px;
    width: 100%;
  }
}

/* MOBILE (max-width: 480px) */
@media (max-width: 480px) {

  .about-section {
    padding: 45px 5vw;
  }

  .about-title {
    font-size: 30px !important;
    line-height: 1.2 !important;
    margin-bottom: 18px !important;
  }

  .about-subtitle {
    font-size: 10px !important;
    letter-spacing: 2px !important;
    margin-top: 15px !important;
  }

  .about-row {
    gap: 30px;
  }

  .about-image img {
    max-width: 100%;
  }
}


/* end */













/* ====== SECTION LAYOUT ====== */
.service-section {
  width: 100%;
  padding: 80px 7vw;
  display: flex;
  align-items: flex-start;

  justify-content: space-between;
  gap: 80px;
}


/* ====== LEFT IMAGE STACK ====== */
.image-stack {
  position: relative;
  width: 420px;

  height: 650px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  align-items: flex-start;

  margin-left: 0;

}

/* BIG OVAL BACK IMAGE */
.image-oval {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 30% 30%;

  display: block;
  top: 0;
  left: -85px;
  z-index: 1;

}


.image-rect {
  position: absolute;
  bottom: 0;

  width: 290px;

  height: 415px;

  overflow: hidden;

  border-bottom-right-radius: 80%;

  position: relative;
  left: 250px;

  top: -30px;
  z-index: 2;


}




.service-content {
  max-width: 550px;
  text-align: left;

  margin-right: -150px;

  margin-top: 80px;

}

.service-title {
  font-family: "Oranienbaum", serif;
  font-size: 22px;

  line-height: 1.2;

  color: #221D1A;
  margin-bottom: 20px;

}

.service-text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;

  color: #58524E;
  line-height: 1.6;

  margin-bottom: 30px;

}




/* ====== STATS ====== */
.service-stats {
  display: flex;
  gap: 120px;
  align-items: center;
}

.stat-number {
  font-family: "Oranienbaum", serif;
  font-size: 54px;
  color: #005851;
}

.stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #221D1A;
  margin-top: 5px;
}

/* ======================================
   📱 TABLET — 768px and below
====================================== */
@media (max-width: 768px) {


  .service-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .image-stack {
    width: 100%;
    max-width: 420px;
    height: auto;
    position: relative;
    margin: 0 auto;
  }


  .image-oval {
    position: relative;
    width: 100%;
    height: auto;
    left: 0 !important;
    top: 0;
    border-radius: 0 0 30% 30%;
    object-fit: cover;
  }


  .image-rect {
    position: relative;
    width: 65%;
    height: auto;
    left: 0;
    top: -20px;
    margin: 0 auto;
    border-bottom-right-radius: 50%;
    z-index: 2;
  }


  .service-content {
    margin: 40px 0 0;
    max-width: 100%;
    text-align: center;
  }

  /* Stats */
  .service-stats {
    justify-content: center;
    gap: 40px;
  }
}

/* ======================================
   TABLET — max 768px
====================================== */
@media (max-width: 768px) {

  .service-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px 5vw;
  }

  .image-stack {
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: 0 auto;
    position: relative;
  }


  .image-oval {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    top: 0 !important;
    left: 0 !important;
    border-radius: 0 0 25% 25% !important;
  }


  .image-rect {
    position: relative !important;
    width: 65% !important;
    height: auto !important;
    top: -20px !important;
    left: 0 !important;
    margin: 0 auto !important;
    border-bottom-right-radius: 60% !important;
    z-index: 2 !important;
  }

  .service-content {
    text-align: center !important;
    max-width: 90% !important;
    margin: 20px auto 0 !important;
  }

  .service-stats {
    justify-content: center !important;
    gap: 40px !important;
  }
}

/* ======================================
   MOBILE — max 480px
====================================== */
@media (max-width: 480px) {

  .image-stack {
    max-width: 300px !important;
  }

  .image-rect {
    width: 75% !important;
    top: -25px !important;
    left: 15% !important;
  }

  .service-title {
    font-size: 18px !important;
  }

  .service-text {
    font-size: 13px !important;
  }

  .service-stats {
    flex-direction: column !important;
    gap: 18px !important;
  }

  .stat-number {
    font-size: 32px !important;
  }
}



/* ========= LAYOUT ========= */
.client-section {
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 550px 550px;
  column-gap: 100px;
  align-items: start;
}

/* ========= LEFT COLUMN ========= */

.client-content {
  max-width: 520px;
}


.clients-header {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0c6a63;
  margin-bottom: 10px;
}


.client-title {
  font-family: "Oranienbaum", serif;
  font-size: 52px;
  line-height: 1.15;
  font-weight: 400;
  color: #221D1A;
  margin: 10px 0 30px 0;
  max-width: 800px;

}


/* client content */
.client-content {
  grid-column: 1 !important;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* quote */
.client-quote {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;

  color: #575351;
  line-height: 1.8;
  padding-left: 60px;

  position: relative;
  margin-top: 30px;
}

.client-quote .quote-icon {
  position: absolute;
  left: -20px;

  top: -5px;

  width: 80px;

  height: auto;
  margin-top: -25px;
}

.client-author {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-left: 50px;

  margin-top: 5px;
}

.client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-family: "Oranienbaum", serif;
  font-size: 18px;

  color: #221D1A;
}



/* ========= IMAGE COLLAGE ========= */
.image-wrapper {
  position: relative;
  width: 600px;
  height: 720px;

  margin-top: -260px;

  margin-left: 80px;
}


.service-image {
  display: block;
  object-fit: cover;
}

.first-image {
  position: absolute;
  top: -60px;
  left: -80px;

  width: 300px;
  height: 460px;

  border-radius: 260px 0 0 0;
  object-fit: cover;
  z-index: 2;
}


.second-image {
  position: absolute;
  top: 180px;
  left: 160px;

  width: 340px;
  height: 480px;

  border-radius: 0 0 65% 0;
  object-fit: cover;
  z-index: 1;
}

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

@media (max-width: 768px) {

  .client-section {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 40px;
    padding: 40px 20px;
  }

  .client-content {
    max-width: 100%;
  }

  .client-title {
    font-size: 40px;
    line-height: 1.2;
  }

  .client-quote {
    font-size: 14px;
    padding-left: 40px;
  }

  .client-quote .quote-icon {
    width: 60px;
    left: -10px;
  }

  .client-author {
    margin-left: 30px;
  }


  .image-wrapper {
    width: 100%;
    height: 600px;
    margin: 0 auto;
    position: relative;
    margin-top: -80px;
  }


  .first-image {
    width: 220px;
    height: 330px;
    top: -30px;
    left: 260px;
  }

  .second-image {
    width: 250px;
    height: 350px;
    top: 200px;
    left: 360px;
  }
}



@media (max-width: 480px) {

  .image-wrapper {
    width: 100%;
    margin: 40px auto 0 auto;
    position: relative;
    height: 500px;
  }


  .first-image {
    width: 200px;
    height: 300px;
    top: 0;
    left: -20px;
  }

  .second-image {
    width: 220px;
    height: 310px;
    top: 180px;
    left: 85px;
  }
}












/* ===== FACE  HERO ===== */

.face-hero {
  width: 100%;
  height: 400px;
  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../image/bg.webp") center/cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: #fff;
  padding: 0 20px;
}

/* MAIN TITLE (Oranienbaum) */
.face-hero h1 {
  font-family: "Oranienbaum", serif;
  font-size: 58px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: #ffffff;
}


/* BREADCRUMB TEXT (Montserrat) */
.about-hero .breadcrumb-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* BREADCRUMB LINKS */
.about-hero .breadcrumb-text a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s ease;
}

.breadcrumb-text a {
  color: #ffffff !important;

  text-decoration: none;

  font-weight: 300;
}

.breadcrumb-text a:hover {
  color: #e5e5e5;

}

/* end */




/* LEFT IMAGE STACK */

.image-stack {
  position: relative;
  width: 420px;

  height: 650px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  align-items: flex-start;

  margin-left: 50px;

  margin-bottom: 80px;
}

/* BIG OVAL BACK IMAGE */
.image-oval {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 30% 30%;
  /* Slightly less curved */
  display: block;
  top: 0;
  left: -85px;
  z-index: 1;

}


.image-rect {
  position: absolute;
  bottom: 0;

  width: 290px;

  height: 415px;

  overflow: hidden;

  border-bottom-right-radius: 80%;

  position: relative;
  left: 200px;

  top: -30px;
  z-index: 2;


}

/*  */

/* ================= FACE CONTENT SECTION ================= */


.face-content {
  max-width: 550px;
  margin-left: auto;
  margin-right: 60px;
  margin-top: -750px;
  padding: 60px 0;
  font-family: "Montserrat", sans-serif;
}


/* Heading */
.face-title {
  font-family: "Oranienbaum", serif;
  font-size: 40px;

  font-weight: 400;
  color: #221D1A;
  margin-bottom: 28px;
}


.face-text {
  font-size: 15.5px;
  /* smaller text */
  line-height: 1.65;
  /* slight spacing */
  color: #444;
  margin-bottom: 22px;
}

.face-text strong {
  font-weight: 700;
  color: #221D1A;
}

/*  */








/* ============= FACE TREATMENT LIST – FIXED ============= */

.treatment-list {
  width: 100%;
  max-width: 1300px;
  padding: 0 40px;

  margin: 0 auto;

}





.treatment-list .treatment-item {
  margin-bottom: 32px;
}

.treatment-list .treatment-header {
  display: flex;
  align-items: center;
}


.treatment-list .treatment-name {
  order: 0;

  font-family: "Oranienbaum", serif;
  font-size: 20px;

  font-weight: 400;
  color: #2E2A27;
  margin: 0;
  white-space: nowrap;
}


.treatment-list .treatment-header::before {
  content: "";
  order: 1;
  /* SECOND */
  flex: 1;
  border-bottom: 1px dotted #cfc4b8;
  margin: 0 18px;
}


.treatment-list .treatment-price {
  order: 2;
  /* THIRD */
  font-family: "Oranienbaum", serif;
  font-size: 15px;
  /* small */
  color: #2E2A27;
  white-space: nowrap;
}


.treatment-list .treatment-desc,
.treatment-list .treatment-note {
  margin: 8px 0 0 0;
  font-size: 14px;
  font-weight: 400;
  color: #575351;

  line-height: 1.6;
}

.treatment-list .treatment-note {
  font-style: italic;
}


.treatment-list .treatment-item .treatment-header::before {
  margin-left: 10px;

  margin-right: 2px;

}


.treatment-item .treatment-header {
  position: relative;
}

.treatment-item .treatment-header::before {
  border-bottom: 1px dotted #cfc4b8 !important;
}

.treatment-item .treatment-note+.treatment-header::before {
  border-bottom: none !important;
}

.treatment-divider {
  border-bottom: 1px dotted #cfc4b8;
  margin: 20px 0 18px;
  width: 100%;
}


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

/* Tablet (≤768px) */
@media (max-width: 768px) {

  /* Hero */
  .face-hero {
    height: 320px;
    padding: 0 15px;
  }

  .face-hero h1 {
    font-size: 42px;
    text-align: center;
  }


  .face-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Image stack adjustments */
  .image-stack {
    width: 280px;
    height: 450px;
    margin: 0 auto 40px auto;
    left: 0 !important;
    top: 0 !important;
  }

  .image-oval {
    left: -30px;
    width: 100%;
    height: 100%;
  }

  .image-rect {
    width: 200px;
    height: 280px;
    left: 50px;
    top: -20px;
  }

  /* Content */
  .face-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px 15px 40px;
    text-align: center;
  }

  .face-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .face-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .treatment-list {
    padding: 0 20px;
    margin-top: 40px;
  }

  .treatment-name {
    font-size: 18px;
  }

  .treatment-price {
    font-size: 14px;
  }

  .treatment-desc,
  .treatment-note {
    font-size: 13px;
  }

  .treatment-header::before {
    margin-left: 8px;
    margin-right: 2px;
  }
}


/* Mobile (≤480px) */
@media (max-width: 480px) {

  .face-hero {
    height: 260px;
    padding: 0 12px;
  }

  .face-hero h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
  }

  .image-stack {
    width: 240px;
    height: 400px;
    margin-left: 15px;
    margin-bottom: 40px;
  }

  .image-oval {
    left: -30px;
    width: 100%;
    height: 100%;
  }

  .image-rect {
    width: 180px;
    height: 260px;
    left: 100px;
    top: -15px;
  }

  /* FACE CONTENT */
  .face-content {
    max-width: 95%;
    margin: -40px auto 0 auto;
    padding: 30px 12px;
    text-align: center;
  }

  .face-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .face-text {
    font-size: 13px;
    line-height: 1.5;
  }

  /* TREATMENT LIST */
  .treatment-list {
    padding: 0 15px;
  }

  .treatment-list .treatment-name {
    font-size: 16px;
  }

  .treatment-list .treatment-price {
    font-size: 13px;
  }

  .treatment-list .treatment-desc,
  .treatment-list .treatment-note {
    font-size: 12px;
  }


  .treatment-list .treatment-header::before {
    margin-left: 8px;
    margin-right: 2px;
  }
}


/* end */






/* =========================================
   WAXING HERO BANNER
========================================= */

.waxing-hero {
  width: 100%;
  height: 400px;
  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../image/bg.webp") center/cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: #fff;
  padding: 0 20px;
}

/* Title */
.waxing-hero h1 {
  font-family: "Oranienbaum", serif;
  font-size: 58px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: #ffffff;
}

/* BREADCRUMB LINKS */
.waxing-hero .breadcrumb-text a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s ease;
}

.breadcrumb-text a {
  color: #ffffff !important;

  text-decoration: none;

  font-weight: 300;
}

.breadcrumb-text a:hover {
  color: #e5e5e5;

}


/* ====== LEFT IMAGE STACK ====== */
.image-stack {
  position: relative;
  width: 420px;

  height: 650px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  align-items: flex-start;

  margin-left: 50px;

}

/* BIG OVAL BACK IMAGE */
.image-oval {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 30% 30%;

  display: block;
  top: 0;
  left: -85px;
  z-index: 1;

}


.image-rect {
  position: absolute;
  bottom: 0;

  width: 290px;

  height: 415px;

  overflow: hidden;

  border-bottom-right-radius: 80%;

  position: relative;
  left: 200px;

  top: -30px;
  z-index: 2;


}

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

.wax-content {
  max-width: 550px;
  font-family: "Montserrat", sans-serif;
  padding: 40px 0 60px;
}

.wax-title {
  font-family: "Oranienbaum", serif;
  font-size: 48px;
  font-weight: 400;
  color: #221D1A;
  margin-bottom: 28px;
}

.wax-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 22px;
}

.wax-text strong {
  font-weight: 700;
  color: #221D1A;
}

/*  */

/* ============= WAXING TREATMENT LIST – FIXED ============= */

.treatment-list {
  width: 100%;
  max-width: 1300px;

  padding: 0 40px;

  margin: 0 auto;

  margin-top: 80px;

}


.treatment-item {
  margin-bottom: 32px;
}


.treatment-header {
  display: flex;
  align-items: center;
  position: relative;

}


.treatment-name {
  order: 0;
  font-family: "Oranienbaum", serif;
  font-size: 20px;
  /* smaller heading */
  font-weight: 400;
  color: #2E2A27;
  margin: 0;
  white-space: nowrap;

}


.treatment-header::before {
  content: "";
  order: 1;
  flex: 1;
  border-bottom: 1px dotted #cfc4b8;
  margin: 0 18px;
}

/* price on RIGHT */
.treatment-price {
  order: 2;
  font-family: "Oranienbaum", serif;
  font-size: 15px;

  color: #2E2A27;
  white-space: nowrap;
}

/* descriptions */
.treatment-desc,
.treatment-note {
  margin: 8px 0 0 0;
  font-size: 14px;
  font-weight: 400;
  color: #575351;

  line-height: 1.6;
}

.treatment-note {
  font-style: italic;
}


.treatment-item .treatment-header::before {
  margin-left: 10px;

  margin-right: 2px;

}


.treatment-item .treatment-header:has(.treatment-price:empty)::before,
.treatment-item .treatment-header:not(:has(.treatment-price))::before {
  border-bottom: none !important;
}


.treatment-divider {
  border-bottom: 1px dotted #cfc4b8;
  margin: 20px 0 18px;
  width: 100%;
}


.men-section .treatment-header {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

.men-section .treatment-header::before {
  content: "" !important;
  flex: 1 !important;
  border-bottom: 1px dotted #cfc4b8 !important;
  margin: 0 12px !important;
  display: block !important;
}

.men-section .treatment-price {
  display: none !important;

}

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

/* Tablet (≤768px) */
@media (max-width: 768px) {

  /* Hero adjustments */
  .waxing-hero {
    height: 320px;
    padding: 0 15px;
  }

  .waxing-hero h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
  }

  /* Center Waxing section */
  .waxing-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Image stack adjustments */
  .image-stack {
    width: 280px;
    height: 450px;
    margin: 0 auto 40px auto;
    left: 0 !important;
    top: 0 !important;
  }

  .image-oval {
    left: -30px;
    top: -20px;
    /* move up slightly */
    width: 100%;
    height: 100%;
  }

  .image-rect {
    width: 200px;
    height: 280px;
    left: 50px;
    top: -15px;
  }

  /* Content */
  .wax-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px 15px 40px;
    text-align: center;
  }

  .wax-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .wax-text {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Treatment list adjustments */
  .treatment-list {
    padding: 0 20px;
    margin-top: 40px;
  }

  .treatment-name {
    font-size: 18px;
  }

  .treatment-price {
    font-size: 14px;
  }

  .treatment-desc,
  .treatment-note {
    font-size: 13px;
  }

  .treatment-header::before {
    margin-left: 8px;
    margin-right: 2px;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {

  /* Hero adjustments */
  .waxing-hero {
    height: 260px;
    padding: 0 12px;
  }

  .waxing-hero h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 8px;
  }

  /* Center Waxing section */
  .waxing-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Image stack adjustments */
  .image-stack {
    width: 220px;
    height: 350px;
    margin: 0 auto 30px auto;
    left: 0 !important;
    top: 0 !important;
  }

  .image-oval {
    left: -20px;
    top: -15px;
    width: 100%;
    height: 100%;
  }

  .image-rect {
    width: 160px;
    height: 220px;
    left: 40px;
    top: -10px;
  }

  /* Content */
  .wax-content {
    max-width: 95%;
    margin: 0 auto;
    padding: 15px 12px 30px;
    text-align: center;
  }

  .wax-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .wax-text {
    font-size: 13px;
    line-height: 1.5;
  }


  .treatment-list {
    padding: 0 15px;
    margin-top: 30px;
  }

  .treatment-name {
    font-size: 16px;
  }

  .treatment-price {
    font-size: 13px;
  }

  .treatment-desc,
  .treatment-note {
    font-size: 12px;
  }

  /* Ensure dotted line shows properly */
  .treatment-header::before {
    margin-left: 6px;
    margin-right: 2px;
  }
}

/*  */


/*Massage  */
/*HERO BANNER */
.massage-hero {
  width: 100%;
  height: 400px;
  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../image/bg.webp") center/cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: #fff;
  padding: 0 20px;
}

/* MAIN TITLE (Oranienbaum) */
.massage-hero h1 {
  font-family: "Oranienbaum", serif;
  font-size: 58px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: #ffffff;
}


/* BREADCRUMB TEXT (Montserrat) */
.massage-hero .breadcrumb-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* BREADCRUMB LINKS */
.massage-hero .breadcrumb-text a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s ease;
}

.breadcrumb-text a {
  color: #ffffff !important;

  text-decoration: none;

  font-weight: 300;
}

.breadcrumb-text a:hover {
  color: #e5e5e5;

}

/* end */


/* ====== LEFT IMAGE STACK ====== */
.image-stack {
  position: relative;
  width: 420px;

  height: 650px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  align-items: flex-start;

  margin-left: 50px;

}


.image-oval {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 30% 30%;
  /* Slightly less curved */
  display: block;
  top: 0;
  left: -85px;
  z-index: 1;

}


.image-rect {
  position: absolute;
  bottom: 0;

  width: 290px;

  height: 415px;

  overflow: hidden;

  border-bottom-right-radius: 80%;

  position: relative;
  left: 200px;

  top: -30px;
  z-index: 2;


}

/*  */
/* ============= UNIVERSAL TREATMENT LIST ============= */

.treatment-list {
  width: 100%;
  max-width: 1300px;
  padding: 0 40px;
  margin: 150px auto 0;
  font-family: "Montserrat", sans-serif;
  margin-top: 10px;
}


/* ============= EACH ITEM ============= */
.treatment-item {
  margin-bottom: 28px;
  /* slightly tighter spacing */
}


/* ============= TITLE + LINE + PRICE (ONE ROW) ============= */
.treatment-header {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}


/* TITLE (SMALLER) */
.treatment-name {
  order: 0;
  font-family: "Oranienbaum", serif;
  font-size: 18px;
  /* was 22px */
  font-weight: 400;
  margin: 0;
  color: #2E2A27;
  white-space: nowrap;
}


/* DOTTED LINE */
.treatment-header::before {
  content: "";
  flex: 1;
  border-bottom: 1px dotted #cfc4b8;
  margin: 0 12px;
}


/* PRICE (SMALLER) */
.treatment-price {
  order: 2;
  font-family: "Oranienbaum", serif;
  font-size: 15px;
  /* was 16px */
  color: #2E2A27;
  white-space: nowrap;
}



.treatment-desc {
  margin-top: 6px;
  font-size: 14px;
  /* was 15px */
  color: #575351;
  line-height: 1.55;
}

/* ================== MASSAGE HERO RESPONSIVE ================== */

/* Tablet (≤768px) */
@media (max-width: 768px) {

  /* Hero adjustments */
  .massage-hero {
    height: 320px;
    padding: 0 15px;
  }

  .massage-hero h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
  }

  .massage-hero .breadcrumb-text {
    font-size: 14px;
  }

  /* Center section */
  .massage-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Image stack */
  .image-stack {
    width: 300px;
    height: 500px;
    margin: 0 auto 40px auto;
    /* center and spacing */
    left: 0 !important;
    top: 0 !important;
  }

  .image-oval {
    left: -40px;
    top: -20px;
    /* move slightly up */
    width: 100%;
    height: 100%;
  }

  .image-rect {
    width: 220px;
    height: 315px;
    left: 70px;
    top: -15px;
  }

  /* Treatment list */
  .treatment-list {
    padding: 0 20px;
    margin-top: 40px;
  }

  .treatment-name {
    font-size: 16px;
  }

  .treatment-price {
    font-size: 14px;
  }

  .treatment-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .treatment-header::before {
    margin-left: 6px;
    margin-right: 2px;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {

  /* Hero adjustments */
  .massage-hero {
    height: 260px;
    padding: 0 12px;
  }

  .massage-hero h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 8px;
  }

  .massage-hero .breadcrumb-text {
    font-size: 12px;
  }

  /* Center section */
  .massage-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Image stack */
  .image-stack {
    width: 220px;
    height: 350px;
    margin: 0 auto 30px auto;
    left: 0 !important;
    top: 0 !important;
  }

  .image-oval {
    left: -20px;
    top: -15px;
    width: 100%;
    height: 100%;
  }

  .image-rect {
    width: 160px;
    height: 220px;
    left: 40px;
    top: -10px;
  }

  /* Treatment list */
  .treatment-list {
    padding: 0 15px;
    margin-top: 30px;
  }

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

  .treatment-price {
    font-size: 13px;
  }

  .treatment-desc {
    font-size: 12px;
    line-height: 1.4;
  }

  /* dotted line adjustment */
  .treatment-header::before {
    margin-left: 4px;
    margin-right: 2px;
  }
}

/* end */



/* ================= MANI-PEDI HERO SECTION ================= */

.mani-pedi-hero {
  width: 100%;
  height: 400px;
  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../image/bg.webp") center/cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: #fff;
  padding: 0 20px;
}


.mani-pedi-hero h1 {
  font-family: "Oranienbaum", serif;
  font-size: 64px;
  /* updated */
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  /* fixed */
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: #ffffff;
}

/* BREADCRUMB TEXT */
.mani-pedi-hero .breadcrumb-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* LINKS */
.mani-pedi-hero .breadcrumb-text a {
  color: #ffffff !important;
  text-decoration: none;
  transition: 0.3s ease;
}

.mani-pedi-hero .breadcrumb-text a:hover {
  color: #e5e5e5;
}

/* end */



/* ================= MANI & PEDI CONTENT SECTION ================= */


.mani-content {
  max-width: 550px;
  margin-left: auto;
  margin-right: -40px;
  padding: 60px 0;
  margin-top: -30px;
  font-family: "Montserrat", sans-serif;
}

/* Heading */
.mani-title {
  font-family: "Oranienbaum", serif;
  font-size: 40px;
  font-weight: 400;
  color: #221D1A;
  margin-bottom: 28px;
}

/* Paragraphs */
.mani-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 22px;
}

.mani-text strong {
  font-weight: 700;
  color: #221D1A;
}

/* ================= MANI-PEDI HERO RESPONSIVE ================= */

/* Tablet (≤768px) */
@media (max-width: 768px) {


  .mani-pedi-hero {
    height: 320px;
    padding: 0 15px;
  }

  .mani-pedi-hero h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
  }

  .mani-pedi-hero .breadcrumb-text {
    font-size: 14px;
    text-align: center;
  }


  .mani-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 40px 15px;
    margin-top: 20px;
    text-align: center;
  }

  .mani-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .mani-text {
    font-size: 14px;
    line-height: 1.55;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {

  /* Hero adjustments */
  .mani-pedi-hero {
    height: 260px;
    padding: 0 12px;
  }

  .mani-pedi-hero h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 8px;
  }

  .mani-pedi-hero .breadcrumb-text {
    font-size: 12px;
    text-align: center;
  }

  /* Content adjustments */
  .mani-content {
    max-width: 95%;
    margin: 0 auto;
    padding: 30px 12px;
    margin-top: 15px;
    text-align: center;
  }

  .mani-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .mani-text {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* end */


/* Hair */
.hair-hero {
  width: 100%;
  height: 400px;
  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../image/bg.webp") center/cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: #fff;
  padding: 0 20px;
}

/* MAIN TITLE (Oranienbaum) */
.hair-hero h1 {
  font-family: "Oranienbaum", serif;
  font-size: 58px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: #ffffff;
}

.hair-content {
  max-width: 550px;
  margin-left: auto;
  margin-right: -40px;
  padding: 60px 0;
  margin-top: -30px;
  font-family: "Montserrat", sans-serif;
}

/* Heading */
.hair-title {
  font-family: "Oranienbaum", serif;
  font-size: 40px;
  font-weight: 400;
  color: #221D1A;
  margin-bottom: 28px;
}

/* Paragraphs */
.hair-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 22px;
}

.hair-text strong {
  font-weight: 700;
  color: #221D1A;
}

/* end */




/* BREADCRUMB TEXT (Montserrat) */
.hair-hero .breadcrumb-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* BREADCRUMB LINKS */
.hair-hero .breadcrumb-text a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s ease;
}

.breadcrumb-text a {
  color: #ffffff !important;
  /* makes the links white */
  text-decoration: none;
  /* removes underline */
  font-weight: 300;
}

.breadcrumb-text a:hover {
  color: #e5e5e5;
  /* optional hover */
}

/* end */

/* treatments HERO BANNER */
.treatments-hero {
  width: 100%;
  height: 400px;
  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../image/bg.webp") center/cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: #fff;
  padding: 0 20px;
}

/* MAIN TITLE (Oranienbaum) */
.treatments-hero h1 {
  font-family: "Oranienbaum", serif;
  font-size: 58px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: #ffffff;
}


/* BREADCRUMB TEXT (Montserrat) */
.treatments-hero .breadcrumb-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* BREADCRUMB LINKS */
.treatments-hero .breadcrumb-text a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s ease;
}

.breadcrumb-text a {
  color: #ffffff !important;
  /* makes the links white */
  text-decoration: none;
  /* removes underline */
  font-weight: 300;
}

.breadcrumb-text a:hover {
  color: #e5e5e5;
  /* optional hover */
}

/* ================= HAIR HERO RESPONSIVE ================= */

/* Tablet (≤768px) */
@media (max-width: 768px) {

  .hair-hero,
  .treatments-hero {
    height: 320px;
    padding: 0 15px;
  }

  .hair-hero h1,
  .treatments-hero h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
  }

  .hair-hero .breadcrumb-text,
  .treatments-hero .breadcrumb-text {
    font-size: 14px;
    text-align: center;
  }

  .hair-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 40px 15px;
    margin-top: 20px;
    text-align: center;
  }

  .hair-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hair-text {
    font-size: 14px;
    line-height: 1.55;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {

  .hair-hero,
  .treatments-hero {
    height: 260px;
    padding: 0 12px;
  }

  .hair-hero h1,
  .treatments-hero h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 8px;
  }

  .hair-hero .breadcrumb-text,
  .treatments-hero .breadcrumb-text {
    font-size: 12px;
    text-align: center;
  }

  .hair-content {
    max-width: 95%;
    margin: 0 auto;
    padding: 30px 12px;
    margin-top: 15px;
    /* spacing from hero */
    text-align: center;
  }

  .hair-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .hair-text {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* end */




/* ============= OTHER TREATMENTS – LAYOUT ============= */

.service-section.other-row {
  max-width: 1300px;
  margin: 80px auto 0;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 70px;

}

/* right column */
.other-content {
  flex: 1;
  max-width: 600px;
  margin-left: auto;
  font-family: "Montserrat", sans-serif;
  padding: 60px 0;
}

/* heading */
.other-title {
  font-family: "Oranienbaum", serif;
  font-size: 40px;
  font-weight: 400;
  color: #221D1A;
  margin-bottom: 24px;
}

/* intro paragraph */
.other-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 20px;
}

/* bullet list */
.other-list {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0;
}

.other-list li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

.other-list li strong {
  font-weight: 700;
  color: #221D1A;
}

/* Responsive – stack on small screens */
@media (max-width: 992px) {
  .service-section.other-row {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .image-stack {
    margin: 0 auto 30px;
  }

  .other-content {
    margin: 0;
    padding-top: 0;
  }
}

/* ============= OTHER TREATMENTS – LAYOUT ============= */

.service-section.other-row {
  max-width: 1300px;
  margin: 80px auto 0;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 70px;

}

/* right column */
.other-content {
  flex: 1;
  max-width: 600px;
  margin-left: auto;
  font-family: "Montserrat", sans-serif;
  padding: 60px 0;
}

/* heading */
.other-title {
  font-family: "Oranienbaum", serif;
  font-size: 40px;
  font-weight: 400;
  color: #221D1A;
  margin-bottom: 24px;
}

/* intro paragraph */
.other-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 20px;
}

/* bullet list */
.other-list {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0;
}

.other-list li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

.other-list li strong {
  font-weight: 700;
  color: #221D1A;
}

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

/* Tablet (≤992px) */
@media (max-width: 992px) {
  .service-section.other-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .image-stack {
    margin: 0 auto 30px;
  }

  .other-content {
    margin: 0;
    padding: 20px 0;
  }

  .other-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .other-text,
  .other-list li {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .service-section.other-row {
    padding: 0 15px;
    gap: 30px;
  }

  .other-content {
    padding: 15px 0;
  }

  .other-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .other-text,
  .other-list li {
    font-size: 13px;
    line-height: 1.5;
  }

  .other-list {
    padding-left: 1.2rem;
  }
}

/* end */

/* packages */

/* ──────────────────────────────────────────────── */
/* HERO SECTION */
/* ──────────────────────────────────────────────── */
.packages-hero {
  width: 100%;
  height: 400px;
  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../image/bg.webp") center/cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: #fff;
  padding: 0 20px;
}

/* MAIN TITLE */
.packages-hero h1 {
  font-family: "Oranienbaum", serif;
  font-size: 58px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: #ffffff;
}

/* ──────────────────────────────────────────────── */
/* BREADCRUMB */
/* ──────────────────────────────────────────────── */
.packages-hero .breadcrumb-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* Breadcrumb Links */
.packages-hero .breadcrumb-text a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s ease;
}

/* Hover Effect */
.packages-hero .breadcrumb-text a:hover {
  color: #e5e5e5;
}

/* end */




/* ===========================
      PACKAGES SECTION
=========================== */

.packages-section {
  max-width: 600px;
  padding: 0 40px;

  margin-top: -700px;
  margin-bottom: 120px;
  /* PUSH RIGHT */
  margin-left: auto;
  margin-right: 60px;



}



.packages-title {
  font-family: "Oranienbaum", serif;
  font-size: 48px;
  /* smaller title */
  font-weight: 400;
  margin-bottom: 40px;
  color: #221d1a;
}

/* ---------- Package List ---------- */

.package-item {
  padding: 10px 0;
  /* reduce vertical padding */
  margin-bottom: 10px;
  /* tighter spacing */
}

/* Header row: Name ---- Price */
.package-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 4px;
  border-bottom: 1px dotted #c9bfb3;
  margin-bottom: 4px;
}

/* Name on left */
.package-name {
  font-family: "Oranienbaum", serif;
  font-size: 20px;
  /* smaller */
  font-weight: 400;
  color: #221d1a;
}

/* Price on right */
.package-price {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  /* smaller */
  white-space: nowrap;
  color: #221d1a;
}

/* Description */
.package-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  /* more compact */
  color: #575351;
  margin: 0;
  margin-top: 1px;
  /* tighten even more */
  line-height: 1.5;
}

/* =========================== TABLET (≤768px) =========================== */
@media (max-width: 768px) {

  /* Hero Section */
  .packages-hero {
    height: 280px;
    padding: 0 15px;
  }

  .packages-hero h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
  }

  .packages-hero .breadcrumb-text {
    font-size: 14px;
    text-align: center;
  }

  /* Packages Section */
  .packages-section {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    max-width: 95%;
  }

  .packages-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
  }

  /* Package Items */
  .package-item {
    padding: 8px 0;
    margin-bottom: 12px;
  }

  .package-header {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px dotted #c9bfb3;
    padding-bottom: 4px;
    margin-bottom: 4px;
  }

  .package-name {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .package-price {
    font-size: 14px;
  }

  .package-desc {
    font-size: 13px;
    line-height: 1.45;
    margin-top: 2px;
  }
}

/* =========================== MOBILE (≤480px) =========================== */
@media (max-width: 480px) {

  /* Hero Section */
  .packages-hero {
    height: 220px;
    padding: 0 12px;
  }

  .packages-hero h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 8px;
  }

  .packages-hero .breadcrumb-text {
    font-size: 12px;
    text-align: center;
  }

  /* Packages Section */
  .packages-section {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 12px;
    max-width: 95%;
  }

  .packages-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
  }

  /* Package Items */
  .package-item {
    padding: 6px 0;
    margin-bottom: 10px;
  }

  .package-header {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px dotted #c9bfb3;
    padding-bottom: 3px;
    margin-bottom: 3px;
  }

  .package-name {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .package-price {
    font-size: 13px;
  }

  .package-desc {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 2px;
  }
}

/* end */



/* ===== Services HERO ===== */


.services-hero {
  width: 100%;
  height: 400px;
  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../image/bg.webp") center/cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: #fff;
  padding: 0 20px;
}

/* MAIN TITLE (Oranienbaum) */
.services-hero h1 {
  font-family: "Oranienbaum", serif;
  font-size: 58px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: #ffffff;
}


/* BREADCRUMB TEXT (Montserrat) */
.services-hero .breadcrumb-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* BREADCRUMB LINKS */
.services-hero .breadcrumb-text a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s ease;
}

.breadcrumb-text a {
  color: #ffffff !important;

  text-decoration: none;

  font-weight: 300;
}

.breadcrumb-text a:hover {
  color: #e5e5e5;

}





.consultant-header {
  text-align: center;
  padding: 40px 0;
  width: 100%;
  margin-top: 60px;
}

.consultant-name {
  font-family: "Oranienbaum", serif;
  font-size: 45px;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.consultant-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #005851;
  text-transform: uppercase;
  margin-top: 12px;
}









body {
  background-color: #ffffff;
  /* pure white */
}


h1 {
  font-family: "Oranienbaum", serif;
  font-size: 54px;
  font-weight: 400;
  color: #221D1A;
  /* #221D1A */
  text-transform: capitalize;
}


h2,
.treatment-title {
  font-family: "Oranienbaum", serif;
  font-size: 22px;
  font-weight: 400;
  color: #332F2C;
  /* #332F2C */
  text-transform: capitalize;
}


p,
.treatment-body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #575351;
  /* #575351 */
}


.price,
.treatment-price {
  font-family: "Oranienbaum", serif;
  font-size: 18px;
  font-weight: 400;
  color: #575351;
  /* #575351 */
}


.treatment-header::before,
.treatment-header::after {
  border-bottom-color: #cfc8c2;

}


h1 {
  font-family: "Oranienbaum", serif;
  font-size: 72px;

  font-weight: 400;
  color: #221D1A;
  margin-top: 60px;

  margin-bottom: 50px;

  line-height: 1.15;

}



.treatment-category>h2 {
  font-family: "Oranienbaum", serif;
  font-size: 45px;
  /* back to a sane size */
  font-weight: 400;
  color: #221D1A;
  text-transform: capitalize;
  margin: 40px 0 35px;
  /* space above/below, not too much */
  line-height: 1.2;
}


.treatment-category:first-of-type>h2 {
  margin-top: 40px;
}


.treatment-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.treatment-name,
.treatment-price {
  white-space: nowrap;

  background: #fff;
  z-index: 2;
}

.treatment-header::before {
  content: "";
  border-bottom: 1px dotted #cfc8c2;
  opacity: 0.8;
  height: 1px;
  display: block;
  width: 100%;
  position: relative;
  top: 2px;
  z-index: 1;
}


.treatment-name {
  font-family: "Oranienbaum", serif;
  font-size: 22px;
  font-weight: 400;
  color: #332F2C;
  text-transform: capitalize;
  margin: 0;
  padding-right: 14px;
  /* little gap after title */
  background: #ffffff;
  /* hides dots under text */
  position: relative;
  z-index: 1;
}

/* Price */
.treatment-price {
  font-family: "Oranienbaum", serif;
  font-size: 18px;
  font-weight: 400;
  color: #575351;
  white-space: nowrap;
  margin-left: auto;
  padding-left: 14px;
  /* gap before price */
  background: #ffffff;
  /* hides dots under text */
  position: relative;
  z-index: 1;
}


.treatment-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #575351;
  line-height: 1.6;
  margin: 0 0 8px;
}


.treatment-item {
  margin-bottom: 20px;
}




.injectables-wrapper {
  max-width: 1300px;
  padding: 0 70px;
  margin: 0 auto;
}



h1,
.treatment-category {
  padding-left: 80px;
  padding-right: 80px;
  box-sizing: border-box;

}

/* ======================
   Responsive: Tablet (768px)
====================== */
@media (max-width: 768px) {

  /* Hero Banner */
  .products-hero {
    height: 300px;
    padding: 0 15px;
  }

  .products-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
  }

  .products-hero .breadcrumb-text {
    font-size: 13px;
  }

  /* Section wrapper */
  .product-section {
    padding-left: 40px;
    margin: 40px auto;
  }

  .product-title {
    font-size: 38px;
    margin-left: -40px;
    margin-bottom: 25px;
  }

  .product-text {
    font-size: 14px;
    margin-left: -40px;
  }


  .gallery-grid {
    column-count: 2;
    column-gap: 15px;
  }
}

/* ======================
   Responsive: Mobile (480px)
====================== */
@media (max-width: 480px) {
  /* Hero Banner */

  .products-hero {
    height: 220px !important;
    padding: 0 12px !important;
  }

  .products-hero h1 {
    font-size: 28px !important;
    text-align: center !important;
    margin-bottom: 8px !important;
  }

  .products-hero .breadcrumb-text {
    font-size: 12px !important;
    text-align: center !important;
  }

  /* Section wrapper */
  .product-section {
    padding-left: 15px !important;
    margin: 30px auto !important;
  }

  .product-title {
    font-size: 28px !important;
    margin-left: 0 !important;
    margin-bottom: 20px !important;
  }

  .product-text {
    font-size: 13px !important;
    margin-left: 0 !important;
  }

  /* Masonry Gallery */
  .gallery-grid {
    column-count: 1 !important;
    column-gap: 10px !important;
  }

  .gallery-item img {
    border-radius: 6px !important;
  }

  /* Lightbox inner size */
  .lightbox-inner {
    max-width: 90% !important;
    max-height: 80% !important;
  }
}








/* ============================
   products HERO (Main Banner)
============================ */
.products-hero {
  width: 100%;
  height: 400px;
  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../image/bg.webp") center/cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: #fff;
  padding: 0 20px;
}

/* ============================
   MAIN TITLE (Oranienbaum)
============================ */
.products-hero h1 {
  font-family: "Oranienbaum", serif;
  font-size: 64px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin: 0 0 20px;
  color: #ffffff;
}

/* ============================
   BREADCRUMB TEXT (Montserrat)
============================ */
.products-hero .breadcrumb-text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* Breadcrumb links */
.products-hero .breadcrumb-text a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s ease;
}

.products-hero .breadcrumb-text a:hover {
  color: #e5e5e5;
}

/* Section wrapper */
.product-section {
  max-width: 1200px;
  margin: 50px auto;
  padding-left: 100px;
  /* shifts content right like screenshot */
}

/* Heading style */
.product-title {
  font-family: "Oranienbaum", serif;
  font-size: 50px;
  /* large like screenshot */
  font-weight: 300;
  color: #221D1A;
  margin-bottom: 35px;
  /* spacing below title */
  line-height: 1.1;
  margin-left: -90px;
}

/* Paragraph */
.product-text {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #4A4644;
  line-height: 1.7;
  max-width: 1300px;
  margin-left: -90px;
}




/* ===== PRODUCTS GALLERY WRAPPER ===== */
.products-gallery {
  padding: 40px 5%;
}


.gallery-grid {
  display: block !important;
  column-count: 3;
  column-gap: 20px;
}

/* Responsive: 2 columns tablet, 1 mobile */
@media (max-width: 992px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    column-count: 1;
  }
}

/* Each card */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  break-inside: avoid;
}

/* Images – let them be tall/short naturally */
.gallery-item img {
  width: 100%;
  height: auto !important;
  /* super important: no fixed height */
  display: block;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.4s ease;
}



/* Dark overlay background */
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.35s ease;
}

/* Circle */
.gallery-item .overlay span {
  width: 40px;
  height: 40px;
  background: #006b5b;
  border-radius: 50%;
  position: relative;
}

/* The + sign itself */
.gallery-item .overlay span::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  /* center and nudge a tiny bit up for perfect look */
  transform: translate(-50%, -52%);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

/* Hover effect */
.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ===== LIGHTBOX ===== */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.80);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-inner {
  max-width: 420px;
  /* <— PERFECT size */
  max-height: 600px;
  /* <— prevents giant images */
  width: 90%;
  /* responsive */
  height: auto;
  background: #222;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
}

#lightbox-img {
  width: 100%;
  height: auto;
  object-fit: contain;

}





/* ============================
 HERO (Main Banner)
============================ */
.gallery-hero {
  width: 100%;
  height: 400px;
  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../image/bg.webp") center/cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: #fff;
  padding: 0 20px;
}

/* ============================
   MAIN TITLE (Oranienbaum)
============================ */
.gallery-hero h1 {
  font-family: "Oranienbaum", serif;
  font-size: 64px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin: 0 0 20px;
  color: #ffffff;
}

/* ============================
   BREADCRUMB TEXT (Montserrat)
============================ */
.gallery-hero .breadcrumb-text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* Breadcrumb links */
.gallery-hero .breadcrumb-text a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s ease;
}

.gallery-hero .breadcrumb-text a:hover {
  color: #e5e5e5;
}


.gallery-heading-wrap {
  width: 100%;
  text-align: center;
  margin: 60px 0 40px;
}


.gallery-title {
  font-family: "Oranienbaum", serif;
  font-size: 54px;
  font-weight: 400;
  color: #221D1A;
  text-transform: capitalize;
  line-height: 1.1;
  margin: 0;

}

.products-gallery,
.gallery-grid {
  padding: 0 10px;
}


.gallery-grid {
  column-gap: 15px;
}


.gallery-item {
  margin-bottom: 20px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 8px;
}

/* Images */
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.4s ease;
  margin-left: auto;
  margin-right: auto;
}

/* Tablet (768px) */
@media (max-width: 768px) {

  .products-gallery,
  .gallery-grid {
    padding: 0 15px;
  }

  .gallery-grid {
    column-gap: 10px;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {

  .products-gallery,
  .gallery-grid {
    padding: 0 12px !important;
  }

  .gallery-grid {
    column-gap: 10px !important;
  }

  .gallery-item img {
    border-radius: 6px !important;
  }
}



/* ============================
   CONTACT HERO (Main Banner)
============================ */
.contact-hero {
  width: 100%;
  height: 400px;
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../image/bg.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.contact-hero h1 {
  font-family: "Oranienbaum", serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0 0 20px;
  color: #ffffff !important;
}

.contact-hero .breadcrumb-text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

.contact-hero .breadcrumb-text a {
  color: #fff !important;
  text-decoration: none;
}

.contact-hero .breadcrumb-text a:hover {
  color: #e5e5e5;
}


/* ============================
      HEADING SECTION
============================ */
.contact-heading-section {
  text-align: center;
  padding: 80px 5% 40px;
}

.contact-heading-section h1 {
  font-family: "Oranienbaum", serif;
  font-size: 50px;
  font-weight: 400;
  color: #221D1A;
  margin-bottom: 25px;
}

.contact-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #575351;
  line-height: 1.7;
  max-width: 800px;
  margin: 10px auto 0 auto;
}


/* ============================
      CONTACT GRID SECTION
============================ */
.contact-title {
  font-family: "Oranienbaum", serif;
  font-size: 54px;
  font-weight: 400;
  color: #221D1A;
  text-align: center;
  margin-bottom: 18px;
}

.contact-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #575351;
  text-align: center;
  max-width: 920px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.contact-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10rem;
  flex-wrap: wrap;
  margin-top: 100px;
  margin-bottom: 200px;
}

.contact-card {
  text-align: center;
  min-width: 220px;
}

.contact-card .contact-icon {
  margin-bottom: 14px;
}

.contact-card h3,
.contact-card .contact-heading {
  font-family: "Oranienbaum", serif;
  font-size: 26px;
  font-weight: 400;
  color: #221D1A;
  margin: 10px 0 8px;
}

.contact-number,
.email-link {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #006b63;
  text-decoration: none;
}

.contact-number:hover,
.email-link:hover {
  text-decoration: underline;
}

.contact-text {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #575351;
  line-height: 1.6;
}


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

/* TABLET (up to 768px) */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 46px;
    color: #ffffff !important;
  }

  .contact-heading-section h1 {
    font-size: 38px;
  }

  .contact-grid {
    gap: 4rem;
    margin-bottom: 120px;
  }

  /* Smaller icons */
  .contact-card .contact-icon svg {
    width: 60px !important;
    height: auto;
  }
}

/* MOBILE (up to 480px) */
@media (max-width: 480px) {

  /* Hero */
  .contact-hero {
    height: 230px;
  }

  .contact-hero h1 {
    font-size: 32px !important;
    color: #ffffff !important;
  }

  .contact-hero .breadcrumb-text {
    font-size: 12px !important;
  }

  /* Heading section */
  .contact-heading-section {
    padding: 50px 20px 25px;
  }

  .contact-heading-section h1 {
    font-size: 30px !important;
  }

  .contact-subtitle {
    font-size: 14px !important;
  }

  /* Contact title */
  .contact-title {
    font-size: 32px !important;
  }

  /* Contact grid */
  .contact-grid {
    gap: 3rem !important;
    margin-top: 60px;
    margin-bottom: 100px;
  }

  /* Small icons on mobile */
  .contact-card .contact-icon svg {
    width: 45px !important;
    height: auto;
  }

  .contact-card h3 {
    font-size: 22px !important;
  }

  .contact-number,
  .email-link {
    font-size: 16px !important;
  }

  .contact-text {
    font-size: 14px !important;
  }
}


.services-hero {
  width: 100%;
  height: 400px;
  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../image/bg.webp") center/cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: #fff;
  padding: 0 20px;
}

/* ======= MAIN TITLE ======= */
.services-hero h1 {
  font-family: "Oranienbaum", serif;
  font-size: 58px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: #ffffff;
}

/* BREADCRUMB TEXT */
.services-hero .breadcrumb-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

.services-hero .breadcrumb-text a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s ease;
}

.breadcrumb-text a:hover {
  color: #e5e5e5;
}

/* SECTION TITLE */
.services-title {
  text-align: center;
  font-size: 54px;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: 400;
  color: #2b2726;
  letter-spacing: 1px;
}

/* ====== SERVICES GALLERY ====== */
.services-gallery {
  padding: 60px 0;
  background-color: #ffffff;
}

.services-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.services-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.services-card-img {
  position: relative;
  overflow: hidden;
}

.services-card-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-card:hover .services-card-img img {
  transform: scale(1.03);
}

.services-card-title {
  margin-top: 18px;
  text-align: center;
  font-size: 32px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

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

/* Large tablets / small desktops */
@media (max-width: 992px) {
  .services-gallery-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .services-title {
    font-size: 48px;
  }

  .services-card-title {
    font-size: 28px;
    letter-spacing: 0.16em;
  }
}

/* Tablets & small devices */
@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 48px;
    text-align: center;
  }

  .services-title {
    font-size: 42px;
  }

  .services-card-title {
    font-size: 26px;
    letter-spacing: 0.15em;
  }

  .services-gallery-inner {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

/* Mobile (≤576px) */
@media (max-width: 576px) {
  .services-gallery-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-title {
    font-size: 36px;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .services-hero h1 {
    font-size: 36px;
    text-align: center;
  }

  .services-card-title {
    font-size: 24px;
    letter-spacing: 0.14em;
  }

  .services-hero .breadcrumb-text {
    font-size: 14px;
  }
}

/* MOBILE (480px) */
@media (max-width: 480px) {

  /* HERO TITLE */
  .services-hero h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
  }

  /* BREADCRUMB */
  .services-hero .breadcrumb-text {
    font-size: 12px;
    text-align: center;
    display: block;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
  }

  .services-hero .breadcrumb-text a {
    font-size: 12px;
  }

  /* SECTION TITLE */
  .services-title {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.8px;
  }

  /* SERVICES GALLERY */
  .services-gallery-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .services-card-title {
    font-size: 20px;
    letter-spacing: 0.1em;
  }


  .services-card:hover .services-card-img img {
    transform: scale(1.02);
    /* subtle zoom on mobile */
  }
}



.whatsapp-help {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  background: transparent;
  box-shadow: none;
  padding: 0;
  z-index: 9999;
}

.whatsapp-btn {
  position: relative;
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}


.whatsapp-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #004c45;
  transform: translate(6px, 6px);
  z-index: -1;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

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

/* Tablet (<= 768px) */
@media (max-width: 768px) {
  .whatsapp-help {
    bottom: 20px;
    right: 20px;
    gap: 10px;
    font-size: 16px;
  }

  .whatsapp-btn {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }

  .whatsapp-btn::after {
    transform: translate(4px, 4px);
  }
}

/* Mobile (<= 480px) */
@media (max-width: 480px) {
  .whatsapp-help {
    bottom: 15px;
    right: 15px;
    gap: 8px;
    font-size: 14px;
  }

  .whatsapp-btn {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .whatsapp-btn::after {
    transform: translate(3px, 3px);
  }
}


.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background-color: transparent !important;
  color: inherit !important;
}

/* ============================= */
/* GLOBAL MOBILE SAFETY LAYER   */
/* ============================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Images shrink nicely */
img {
  max-width: 100%;
  height: auto;
}
