* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #01311f;
    --soft-green: #01311fb7;
    --beige: #f5dc82;
    --cream: #f0fff0cd;
    --white: #ffffff;
    --dark-green: #212a1f;
    --text-dark: #3a3a3a;
    --text-light: #6a6a6a;
    --accent-gold: #ddb41f;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Lora', 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.container {
  position: relative;
  z-index: 100;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: var(--white);
}
.navbar.sticky {
  background: #01311f;
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
}

.logo h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--primary-green);
  font-weight: 500;
}
@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.8rem;
  }
}
.navbar.sticky .logo h1 {
  color: var(--white);
}
/* Nav links */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  /* font-weight: 600; */
  transition: color 0.3s ease;
  position: relative;
}
.navbar.sticky .nav-menu a {
  color: var(--white);
}
/* .nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-green);
} */

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width 0.3s ease;
}
.navbar.sticky .nav-menu a::after {
  background: var(--white);
}
.nav-menu a:hover::after{
  width: 100%;
}

/* Button */
.btn-nav {
  background: linear-gradient(135deg, var(--primary-green), var(--soft-green));
  color: var(--white) !important;
  text-align: center;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(122, 155, 118, 0.3);
}
.navbar.sticky .btn-nav {
  background: var(--white);
  color: var(--primary-green) !important;
}
.navbar.sticky .btn-nav:hover {
  background: var(--primary-green);
  color: var(--white) !important;
}
.menu-toggle {
  width: 30px;
  height: 12px;
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  z-index: 1001; 
  display: none; 
}
.menu-toggle span {
  display: block;
  position: absolute;
  height: 2px; 
  width: 100%;
  background: #013101;
  left: 0;
  transform-origin: center;
  transition: all 0.3s ease;
}
.navbar.sticky .menu-toggle span {
  background: #fff;
}
.menu-toggle span:first-child { 
  top: 0; 
}
.menu-toggle span:last-child { 
  bottom: 0; 
}
.menu-toggle.active span:first-child { 
  transform: translateY(6px) rotate(45deg); 
}
.menu-toggle.active span:last-child { 
  transform: translateY(-6px) rotate(-45deg); 
}

.mobile-menu-overlay {
  display: block;
  position: absolute;
  top: 100%; /* Position exactly below header */
  left: 0;
  width: 100%;
  background: var(--white);
  
  /* Animation Logic: Unrolling Effect */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar.sticky .mobile-menu-overlay {
  background: #01311f;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Active State (Open) */
.mobile-menu-overlay.active {
  max-height: 400px; /* Expand to fit content */
}

.mobile-nav-menu {
  list-style: none;
  padding: 2rem 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-nav-menu a {
  text-decoration: none;
  color: var(--primary-green);
  font-size: 1.4rem;
  font-family: "Cormorant Garamond", serif;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease 0.1s;
}

.navbar.sticky .mobile-nav-menu a {
  color: var(--white);
}

/* Fade in text when open */
.mobile-menu-overlay.active .mobile-nav-menu a {
  opacity: 1;
  transform: translateY(0);
}


/* MOBILE NAV - hidden off canvas */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    height: 100vh;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  /* when navbar sticky, apply sticky colors to mobile nav */
  .navbar.sticky .nav-menu {
    background: #01311f;
  }

  .navbar.sticky .nav-menu a {
    color: var(--white);
  }

  /* blur background when menu open */
  body.nav-open {
    overflow: hidden;
  }

  .btn-nav{
    display: none;
  }
}

.hero {
  position: relative;
  height: 89vh;
  border-radius: 15px;
  overflow: hidden;
  max-width: 1500px;
  margin: 0px auto 0;
  /* background: #000; fallback */
}

.hero .video-wrap {
  position:absolute;
  inset:0;
  overflow:hidden;
  will-change: transform;
}

.hero video {
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  min-width:100%;
  min-height:100%;
  width:auto;
  height:auto;
  object-fit:cover;
  will-change: transform;
}

  /* overlay to darken lower area for legibility */
.hero::after {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(to top, rgba(0,0,0,0.58) 20%, rgba(0,0,0,0.12) 80%);
}

.hero-content {
  position:absolute;
  bottom:60px;
  left:60px;
  z-index:60;
  max-width:800px;
  color:#fff;
  transform: translateY(12px);
  transition: all 700ms cubic-bezier(.2,.9,.2,1);
}

.tagline {
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  color:rgba(255,255,255,0.92);
  margin-bottom:5px;
  font-weight: 500;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 102px;
  line-height:1.2;
  font-weight: 500;
  margin-bottom:14px;
  color:#fff;
}

/* soft semi-transparent CTA (glass) */
.cta {
  display:inline-block;
  padding:12px 26px;
  border-radius:30px;
  background: rgba(255,255,255,0.18);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border:1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(6px);
  transition: transform 200ms, background 200ms;
}
.cta:hover { transform: translateY(-3px); background: rgba(255,255,255,0.28); }


/* small decorative rounded corners shadow */
.hero::before {
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:18px;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0));
  border-top-left-radius:25px;
  border-top-right-radius:25px;
  z-index:40;
  pointer-events:none;
}

@media (max-width: 768px) {
  .hero{
    margin: 0 10px;
  }
  .hero-content {
    left: 20px;
    bottom: 40px;
    max-width: 90%;
  }
  .hero h1{
    font-size: 75px;
  }
  .tagline{
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 70vh !important;
  }
  
  .hero h1 {
    font-size: 35px !important;
    line-height: 1.2 !important;
  }
  .cta{
    display: none;
  }
}


.about-section {
  position: relative;
  max-width: 1480px;
  margin: 80px auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: row;
  gap: 100px;
  align-items: center;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url('pics/about-three-shape.png'); 
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 220px;
  z-index: 0;
}   

/* LEFT SECTION - IMAGE AREA */
.image-container {
  flex: 1;
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-wrapper {
  position: relative;
  width: 90%;
  height: 100%;
  border-radius: 15px 0 15px 0;
  overflow: hidden;
  animation: floatImage 6s ease-in-out infinite;
}

.main-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* RIGHT SECTION - CONTENT AREA */
.content-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
  z-index: 1;
  gap: 30px;
}

.welcome-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  font-weight: 400;
  max-width: 500px;
  color: var(--dark-color);
  line-height: 1.2;
  letter-spacing: 1px;
}

.about-description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-top: 10px;
}

/* Service Cards */
.about-services-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

.about-service-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.about-service-card:hover {
  transform: translateX(10px);
}

.about-service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #013101;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(217, 168, 160, 0.3);
}
.about-service-icon img {
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 1;
  filter: brightness(0) invert(1); 
}
.about-service-content h3 {
  font-size: 20px;
  color: var(--dark-color);
  margin-bottom: 8px;
  font-weight: 500;
}

.about-service-content p {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: normal;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .about-section {
      grid-template-columns: 1fr;
      gap: 60px;
      padding: 60px 30px;
  }

  .image-container {
      height: 500px;
  }

  .about-title {
      font-size: 48px;
  }

  
}

@media (max-width: 768px) {
  .about-section {
      flex-direction: column-reverse;
      padding: 40px 20px;
      gap: 40px;
  }
  .about-section::before{
    display: none;
  }
  .image-container {
      height: 400px;
  }

  .main-image-wrapper {
      border-radius: 15px;
  }

  .about-title {
      font-size: 34px;
      max-width: 340px;
  }

  .about-description {
      font-size: 14px;
  }

  .about-service-card {
      gap: 15px;
  }

  .about-service-icon {
      width: 70px;
      height: 70px;
      font-size: 32px;
  }

  .about-service-content h3 {
      font-size: 18px;
  }
  .about-service-content p {
      font-size: 13px;
  }

}

@media (max-width: 480px) {
  .about-section {
      padding: 30px 15px;
  }

  .image-container {
      height: 300px;
  }

  .about-title {
      font-size: 28px;
  }

  .about-description {
      font-size: 13px;
  }
}


.services-section {
  position: relative;
  /* padding: 100px 0; */
  background-color: #fff; /* Soft pink background */
  padding: 60px 20px;
  max-width: 1500px;
}
.services-section::after {
  content: '';
  position: absolute;
  top: 30px;
  left: -1px;
  width: 100%;
  height: 100%;
  background-image: url('pics/package-shape-left.png'); 
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 200px;
  z-index: 100;
}
@media(max-width: 768px){
  .services-section{
    padding: 30px 10px;
  }
  .services-section::after{
    background-size: 70px;
    z-index: 0;
  }
}
.service-header {
  text-align: center;
  margin-bottom: 6rem;
}
.services-subheading{
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  color: #01311f;
  font-weight: 500;
  margin-bottom: 5px;
}
.services-heading{
  margin-bottom: 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 50px;
  color: #01311f;
  font-weight: 600;
  line-height: 1.1;
}
@media(max-width: 768px){
  .service-header{
    margin-bottom: 4rem;
  }
  .services-subheading{
    font-size: 18px;
  }
  .services-heading{
    font-size: 26px;
  }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 90px; 
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-item h3 {
  font-size: 1.5rem;
  color: #013101;
  margin-bottom: 15px;
  font-weight: 500;
}
.service-item p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .service-item h3 {
    font-size: 1.3rem;
  }
  .service-item p {
    font-size: 0.9rem;
  }
}

.img-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 250px;
  margin-bottom: 35px;
  z-index: 1; /* Establishes stacking context */
}

/* The Main Photo */
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2; /* Sits on top */
  border-radius: 15px; /* Uniform rounded corners like the photo */
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.05); */
  transition: transform 0.3s ease;
}

/* The Background "Card" (The Beige Layer) */
.img-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #013101;
  border-radius: 15px; /* Same rounding as image */
  z-index: 1; /* Sits behind */
  
  /* The Magic Rotation: Tilted Counter-Clockwise to match your photo */
  transform: rotate(6deg) scale(1.02); 
  transition: transform 0.3s ease;
}

/* Hover Effect: The layers separate slightly */
.service-item:hover .img-wrapper img {
  transform: translateY(-5px);
}
.service-item:hover .img-wrapper::before {
  transform: rotate(-8deg) scale(1.02); /* Tilts a bit more on hover */
}



.cta-banner{
  width: 100%;
  background-image: url('pics/Image-2HZ5YCA.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-radius: 15px;
  height: 600px;
  overflow: hidden;
  position: relative;
  margin: 100px auto 0;
  max-width: 1500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 50px;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25); /* Slight dark tint */
}
.content-box {
  position: relative; /* Sits on top of overlay */
  width: 100%;
  max-width: 650px;
  
  /* The transparent box style */
  background: rgba(255, 255, 255, 0.1); /* Glassy effect */
  backdrop-filter: blur(5px); /* Blurs background behind box */
  border: 1px solid rgba(225, 225, 225, 0.6); /* Gold border */
  border-radius: 4px;
  
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

/* Typography */
.banner-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
}

.banner-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Button */
.banner-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: #f0f0f0;
  color: #013101;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.banner-btn i {
  margin-left: 8px;
  font-size: 0.8rem;
}

.banner-btn:hover {
  background-color: #013101;
  color: #fff;
}

/* Footer Info inside box */
.banner-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.473);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: #f0f0f0;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* --- RESPONSIVENESS --- */

/* Tablet (Max Width 1024px) */
@media (max-width: 1024px) {
  .cta-banner {

    justify-content: center; 
    background-position: center;
    padding: 40px;
    margin: 60px auto; 
  }

  .content-box {
    max-width: 100%; /* Allow box to fill the container width */
  }
}

/* Mobile & Small Tablets (Max Width 768px) */
@media (max-width: 768px) {
  .cta-banner { 
    min-height: 500px;
    padding: 20px;
    margin: 40px 0px;
    border-radius: 0; /* Optional: Remove corners if full width feels better */
  }

  .content-box {
    padding: 30px 20px;
    backdrop-filter: blur(8px); /* Increase blur slightly for readability */
  }

  .banner-title {
    font-size: 2rem; /* Scale down from 2.8rem */
  }

  .banner-description {
    font-size: 0.9rem;
  }
}

/* Small Phones (Max Width 480px) */
@media (max-width: 480px) {
  .cta-banner {
    /* Make the banner touch the edges of the screen */
    margin: 0; 
    border-radius: 0;
    padding: 40px 15px; /* Give vertical breathing room */
  }

  .content-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 25px 15px;
  }

  .banner-title {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }

  .banner-btn {
    width: 100%; /* Make button full width for easier tapping */
    justify-content: center;
  }

  /* Stack the footer items vertically */
  .banner-footer {
    flex-direction: column; 
    align-items: flex-start;
    gap: 10px;
  }
}


.testimonial-section {
  position: relative;
  padding: 100px 10px;
  margin-top: 100px;
  background: var(--white);
}
.testimonial-section::before {
  content: '';
  position: absolute;
  right: -35px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-image: url('pics/about-right-shape.png'); 
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 220px;
  z-index: 0;
}
@media(max-width: 1024px){
  .testimonial-section::before{
    right: 0px;
  }
}

.testimonial-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonial-header p.subheading {
  color: #01311fb7;
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0;
}

.testimonial-header h2 {
  font-size: 4rem;
  color: #013101;
  font-family: "Cormorant Garamond", serif;
  font-weight: normal;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .testimonial-header h2 {
    font-size: 1rem;
  }
}


.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}


.testimonial-card {
  position: relative;
  background: #013101;
  border-radius: 15px;
  padding: 50px 30px 30px 30px;
  text-align: left;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.08);
}

.client-image {
  position: absolute;
  top: -40px; /* Pulls image up outside the card */
  left: 30px; /* Aligns left like the screenshot */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;

}

.client-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-content h3 {
  margin-top: 10px;
  font-weight: normal;
  font-size: 1.4rem;
  color: #ffffff;
}

.role {
  font-size: 0.95rem;
  color: #ddb41f;
  margin-bottom: 15px;
}

.quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d6d7d7;
  margin-bottom: 25px;
}

.stars {
  color: #FFD700; /* Gold stars */
  font-size: 1.3rem;
  letter-spacing: 4px;
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 30px 20px;
  }
  .testimonial-section::before{
    display: none;
  }

  .testimonial-header h2 {
    font-size: 2.5rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 70px 25px 30px;
  }

  .client-image {
    left: 25px;
  }
}
@media (max-width: 480px) {
  .testimonial-card {
    padding: 70px 20px 30px;
  }
  .testimonial-header h2 {
    font-size: 2rem;
  }
  .client-image img {
    width: 65px;
    height: 65px;
  }
}
.pricing-section {
  margin: 50px auto;
  position: relative;
  padding-top: 80px;
  padding-bottom: 0;
  background: var(--white);
}
.pricing-section::before {
  content: '';
  position: absolute;
  right: 30px;
  bottom: 20px;
  width: 100%;
  height: 100%;
  background-image: url('pics/package-shape-left.png'); 
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 220px;
  z-index: 150;
}
@media(max-width: 768px){
  .pricing-section{
    padding: 30px 10px;
  }
  .pricing-section::before{
    background-size: 180px;
  }
}
@media(max-width: 480px){
  .pricing-section::before{
    background-size: 120px;
    right: 10px;
    z-index: 0;  
  }
}

.pricing-header{
  text-align: center;
  margin-bottom: 6rem;
}
.pricing-heading{
  margin-bottom: 0.5rem;
  line-height: 1.1;
  font-family: "Cormorant Garamond", serif;
  font-size: 50px;
  color: #01311f;
  font-weight: 600;
}
.pricing-subheading{
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  color: #01311f;
  font-weight: 500;
  margin-bottom: 5px;
}
@media(max-width: 768px){
  .pricing-header{
    margin-bottom: 6rem;
  }
  .pricing-subheading{
    font-size: 22px;
  }
  .pricing-heading{
    font-size: 50px;
  }
}
@media(max-width: 480px){
  .pricing-header{
    margin-bottom: 4.5rem;
  }
  .pricing-subheading{
    font-size: 18px;
  }
  .pricing-heading{
    font-size: 30px;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px; 
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* --- TILTED IMAGE HEADER --- */
.category-header {
  position: relative;
  height: 220px;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .category-header {
    height: 280px;
  }
}
.img-box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.img-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #013101;
  border-radius: 15px;
  transform: rotate(6deg) scale(1.02);
  z-index: 1;
  transition: transform 0.3s ease;
}

/* Subtle hover effect for the card header */
.pricing-column:hover .img-box::before {
  transform: rotate(-2deg) scale(1.02);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  border-radius: 15px;
  z-index: 2;
}

.category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 5px 15px;
  border-radius: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark-text);
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
@media (max-width: 480px) {
  .category-header {
    height: 180px;
  }
  .category-badge {
    font-size: 0.7rem;
    padding: 4px 12px;
  }
}

/* --- PRICING LIST --- */
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-item {
  padding: 18px 0;
  border-bottom: 1px solid #e6e6e6;
}

.price-item:last-child {
  border-bottom: none;
}

/* Optional: Sub-header within list for separation */
.list-subheader {
  font-size: 1rem;
  color: #dccab3; /* Match accent color */
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
}

.item-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: var(--dark-text);
  font-weight: 600;
}

.item-price {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--price-color);
}

.item-desc {
  font-size: 0.9rem;
  color: var(--light-text);
  font-style: italic;
}
@media (max-width: 480px) {
  .item-name {
    font-size: 1.1rem;
  }
  .item-price {
    font-size: 1rem;
  }

}

.expert-section {
  padding: 30px 20px;
  /* padding-top: 100px; */
  max-width: 1450px;
  margin: 100px auto;
}
@media(max-width: 768px){
  .expert-section{
    padding: 20px 30px;
    margin: 50px auto;
  }
}
.expert-header{
  text-align: center;
  margin-bottom: 80px;
}
.expert-subheading{
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  color: #01311f;
  font-weight: 500;
  margin-bottom: 5px;
}
.expert-heading{
  margin-bottom: 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 50px;
  color: #01311f;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 2px;
}
@media(max-width: 768px){
  .expert-header{
    margin-bottom: 60px;
  }
  .expert-subheading{
    font-size: 20px;
  }
  .expert-heading{
    font-size: 42px;
  }
}
@media(max-width: 480px){
  .expert-header{
    margin-bottom: 40px;
  }
  .expert-subheading{
    font-size: 18px;
  }
  .expert-heading{
    font-size: 28px;
  }
}


/* --- GRID LAYOUT --- */
.expert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Responsive */
@media (max-width: 900px) {
  .expert-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .expert-grid {
      grid-template-columns: 1fr;
  }
}

/* --- TEAM CARD --- */
.expert-card {
  margin-top: 20px;
  text-align: center;
  position: relative;
  /* To handle hover effects */
  cursor: pointer;
}

/* Image Area */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 350px; /* Tall portrait look */
  margin-bottom: 25px;
}

/* The Tilted Background Shape */
.image-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #013101;
  border-radius: 12px;
  transform: rotate(6deg); /* Default Tilt */
  z-index: 1;
  transition: all 0.4s ease;
}

/* The Photo */
.image-wrapper img {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
  z-index: 2;
  transition: transform 0.4s ease;
}

/* Social Overlay (Hidden by default) */
.social-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 3;
  display: flex;
  gap: 15px;
  opacity: 0;
  transition: all 0.4s ease;
}

.social-icon {
  width: 40px; height: 40px;
  background-color: white;
  color: #013101;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-size: 1.1rem;
  transition: background-color 0.3s;
}
.social-icon:hover {
  background-color: var(--gold);
  color: white;
}

/* --- HOVER EFFECTS --- */
/* Rotate background to straight and slightly scale image */
.expert-card:hover .image-wrapper::before {
  transform: rotate(0deg) scale(1.02);
}
.expert-card:hover .image-wrapper img {
  transform: translateY(-5px);
}
.expert-card:hover .social-overlay {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* --- TEXT INFO --- */
.member-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #013101;
  margin: 0 0 5px 0;
}

.member-role {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #01311f;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}

.member-bio {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  padding: 0 10px;
  margin: 0;
}
@media (max-width: 480px) {
  .image-wrapper {
      height: 300px;
  }
  .member-name {
      font-size: 1.3rem;
  }
  .member-bio {
      font-size: 0.9rem;
  }

}

.spa-gallery {
  padding: 60px 40px;
  max-width: 1400px;
  margin: 50px auto;
}

.gallery-title {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-title h2 {
  font-weight: normal;
  font-size: 55px;
  color: #01311f;
  font-family: "Cormorant Garamond", serif;
}

.gallery-title p {
  font-size: 16px;
  color: #01311fb7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05); 
}

.gallery-item:hover .gallery-overlay {
  transform: translate(-50%, -50%) scale(1.05);
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  padding: 20px 30px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  width: 70%;
  max-width: 300px;   
}

.gallery-overlay .icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: #01311f;
}

.gallery-overlay h3 {
  margin: 10px 0;
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 2px;
  color: #01311f;
}

.gallery-overlay p {
  margin: 5px 0 0;
  font-size: 16px;
  color: #01311fb7;
}

.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 1024px) {
  .spa-gallery {
    padding: 50px 30px;
  }

  .gallery-title h2 {
    font-size: 44px;
  }

  .gallery-title p {
    font-size: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item {
    grid-auto-rows: 180px;
  }

  .gallery-item.big {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 768px) {
  .spa-gallery {
    padding: 40px 20px;
  }

  .gallery-title h2 {
    font-size: 38px;
  }

  .gallery-title p {
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-item {
    grid-auto-rows: 160px;
  }

  .gallery-item.big {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 480px) {
  .spa-gallery {
    padding: 30px 15px;
  }

  .gallery-title h2 {
    font-size: 32px;
  }

  .gallery-title p {
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-item {
    grid-auto-rows: 150px;
  }

  .gallery-item.big {
    grid-column: span 1;
    grid-row: span 1;
  }
}


.faq-section{
    display: flex;
    max-width: 90vw;
    padding-top: 50px;
    margin: 100px auto;
    overflow: visible;
    gap: 40px;
}
.faq-image {
    flex: 1;
    position: relative;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.faq-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1; 
}

.faq-image img{
    width: 100%;
    min-height: 700px;
    object-fit: cover;
    display: block;
}
.image-text{
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-family: "Cormorant Garamond", serif;
    color: white;
    font-size: 4.5em;
    line-height: 1.1;
    z-index: 2;
}

.faq-right{
    flex: 1;
    padding: 50px 30px;
    margin: 0 20px;
    background-color: #01311f;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}
.faq-right::before{
    content: '';
    position: absolute;
    bottom: 0; 
    right: 0;
    width: 100%; 
    height: 100%;
    background-image: url(pics/service-three-shape-left.png); 
    background-repeat: no-repeat;
    background-position: right bottom; 
    background-size: 40% auto;
    opacity: 0.7;
    z-index: 0; 
}

.faq-right h1 {
    font-size: 2.5em; 
    font-weight: normal;
    font-family: "Cormorant Garamond", serif;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 25px; 
    line-height: 1.2;
}

.accordion-item {
    border-bottom: 1px solid #b99a49;
    padding: 20px 0;
}
.accordion-question {
    font-weight: normal;
    cursor: pointer;
    font-size: 20px;
    color: #f7f4f0;
    position: relative;
    padding-right: 20px;
}
.accordion-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-question::after {
    content: "-";
}

.accordion-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1.5;
    transition: max-height 0.3s ease;
    padding-top: 20px;
    color: #fff;
}

.accordion-item.active .accordion-answer {
    max-height: 500px;
}

@media (max-width: 991px) {
  .faq-section {
    flex-direction: column;
    max-width: 95vw;
    margin: 60px auto;
    gap: 40px;
  }

  .faq-image img {
    min-height: 500px;
    object-fit: cover;
    height: 100%;
  }

  .image-text {
    font-size: 2.5em;
    bottom: 20px;
    left: 20px;
  }

  .faq-right {
    padding: 40px 25px;
  }

  .faq-right h1 {
    font-size: 2em;
  }

  .accordion-question {
    font-size: 18px;
  }

  .accordion-answer {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .faq-image img {
    min-height: 400px;
  }

  .image-text {
    font-size: 3em;
    left: 15px;
    bottom: 15px;
  }

  .faq-right {
    padding: 30px 20px;
    margin: 0 10px;
  }

  .faq-right::before {
    background-size: 35% auto;
    background-position: bottom right;
  }

  .faq-right h1 {
    font-size: 2em;
  }

  .accordion-question {
    font-size: 17px;
  }

  .accordion-answer {
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
  .faq-image img {
    min-height: 300px;
  }

  .image-text {
    font-size: 1.6em;
    left: 10px;
    bottom: 10px;
  }

  .faq-right {
    padding: 25px 15px;
  }

  .faq-right h1 {
    font-size: 1.1rem;
  }

  .accordion-question {
    font-size: 16px;
    padding-right: 16px;
  }

  .accordion-question::after {
    font-size: 18px;
  }

  .accordion-answer {
    font-size: 13px;
  }
}

.stats-section {
    /* background: #f7f4f0; */
    padding: 50px 20px 40px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -150px;
    width: 100%;
    height: 100%;
    background-image: url('pics/service-three-shape-left.png'); 
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 200px;
    z-index: 0;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.stat-number {
    font-size: 60px;
    font-weight: normal;
    font-family: "Cormorant Garamond", serif;
    color: #01311f;
}

.stat-label {
    font-size: 18px;
    color: #01311fb7;
    margin-top: 5px;
}

.booking-section {
    position: relative;
    background: url(pics/attractive-african-woman-having-massage-relaxing-spa-salon-closed-eyes.jpg) no-repeat center center/cover; /* your image */
    text-align: center;
    padding: 100px 20px; 
    border-radius: 30px 30px 20px 20px;
    max-width: 1200px;
    margin: 0 auto 50px;
    color: #fff;
    overflow: hidden;
}

.booking-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55); 
    z-index: 1;
}

.booking-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.booking-section h2 {
    font-size: 62px;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 2px;
    line-height: 1.3;
    font-weight: normal;
    margin-bottom: 10px;
    color: #fff;
}

.booking-section p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #f1f1f1;
}

.booking-btn {
    display: inline-block;
    background: #01311f;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    padding: 18px 42px;
    border-radius: 40px;
    transition: background 0.3s ease, transform 0.2s ease;
}

@media (max-width: 768px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
    .stat-number {
        font-size: 50px;
    }

    .stat-label {
        font-size: 18px;
    }

    .stats-section::before{
      background-size: 120px;
      left: -40px;
    }

    .booking-section {
        padding: 60px 15px;
        margin: 0 10px 40px;
    }

    .booking-section h2 {
        font-size: 45px;
    }

    .booking-section p {
        font-size: 18px;
    }

    .booking-btn {
        font-size: 18px;
        padding: 14px 32px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    .booking-section h2 {
        font-size: 25px;
    }

    .booking-section p {
        font-size: 16px;
    }

    .booking-btn {
        font-size: 16px;
        padding: 12px 28px;
    }
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 200px;
}
@media(max-width: 480px){
  .footer-gallery{
    margin-top: 100px;
  }
}
.footer-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}


footer {
  position: relative;
  background: url(pics/beautiful-african-woman-smiling-enjoying-massage-with-closed-eyes-spa-salon.jpg) center center/cover no-repeat;
  color: #eee;
  padding: 60px 20px 20px;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.9);
  z-index: 1;
}

.footer-container {
  position: relative;
  z-index: 2;
  display: grid;
  font-family: "Lora", serif;
  font-weight: 500;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 28px;
  font-family: "Cormorant Garamond", serif;
  font-weight: normal;
  margin-bottom: 15px;
  color: #ddb41f;
}

.footer-description {
  font-size: 16px;
  margin-bottom: 20px;
  color: #bbb;
}

.contact-info p {
  margin: 8px 0;
  font-size: 15px;
  color: #ccc;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  font-size: 20px;
  margin-right: 12px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

.footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
}

.footer-title::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #ddb41f;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer-links a {
  display: block;
  margin: 8px 0;
  font-size: 15px;
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.opening-hours p {
  margin: 6px 0;
  font-size: 15px;
  color: #ccc;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 14px;
  font-family: "Playfair Display", serif;
  color: #aaa;
}

.footer-bottom span {
  color: #ddb41f;
}

@media (max-width: 768px) {
  .footer-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-gallery img {
    height: 150px;
  }
}

.about-header {
  background: url(pics/Image-9VZMNYN.jpg) no-repeat center center/cover;
  padding: 100px 0 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
  text-align: center;
  color: var(--white);
}

.overlay {
  position: absolute;
  inset: 0;                     /* replaces top:0; left:0; width:100%; height:100% */
  background: rgba(0, 0, 0, 0.45);  /* adjust darkness */
  z-index: 1;
}

.about-header h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-family: "Cormorant Garamond", serif;
}

.about-header p {
  font-size: 1rem;
}

.about-page-section {
  margin-top: 50px;
  padding: 30px 0;
  position: relative;
}
.about-page-section::before{
  content: '';
  position: absolute;
  right: 0px;
  bottom: 70px;
  width: 100%;
  height: 100%;
  background-image: url('pics/about-three-shape.png'); 
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 180px;
  z-index: 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 80px;
}

.about-intro-content h2 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  color: #01311f;
  font-family: "Cormorant Garamond", serif;
}

.about-intro-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-image-side {
  flex: 1;
  position: relative;
}

.about-img-wrapper {
  position: relative;
  height: 450px;
  width: 100%;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* The Signature Tilted Background */
.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  width: 98%; height: 100%;
  background-color: #013101;
  border-radius: 12px;
  transform: rotate(6deg);
  z-index: 1;
}

/* ============================= */
/* RESPONSIVENESS                */
/* ============================= */

/* Large tablets (≤1024px) */
@media (max-width: 1024px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-intro-content h2 {
    font-size: 2.7rem;
  }

  .about-img-wrapper {
    height: 400px;
    max-width: 80%;
    margin: 0 auto;
  }
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .about-page-section {
    padding: 20px 0;
  }

  .about-intro {
    gap: 2.5rem;
  }

  .about-intro-content h2 {
    font-size: 2.4rem;
  }

  .about-intro-content p {
    font-size: 0.95rem;
  }

  .about-img-wrapper {
    height: 350px;
    max-width: 90%;
  }

  /* Reduce background shape size */
  .about-page-section::before {
    background-size: 130px;
    bottom: 40px;
  }
}

/* Mobile Devices (≤576px) */
@media (max-width: 576px) {
  .about-intro {
    gap: 2rem;
    text-align: left;
  }

  .about-intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .about-intro-content p {
    line-height: 1.6;
  }

  .about-img-wrapper {
    height: 280px;
    max-width: 100%;
  }

  .about-img-wrapper::before {
    top: 12px;
    left: 12px;
    transform: rotate(4deg);
  }

  .about-page-section::before {
    background-size: 100px;
    bottom: 20px;
  }
}

/* Very Small Screens (≤400px) */
@media (max-width: 400px) {
  .about-intro-content h2 {
    font-size: 1.8rem;
  }

  .about-img-wrapper {
    height: 240px;
  }
}


.philosophy-section {
  position: relative;
  padding: 30px 0px;
}
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 80px;
}

.philosophy-content h2 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  color: #01311f;
  font-family: "Cormorant Garamond", serif;
}

.philosophy-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.philosophy-image-side {
  flex: 1;
  position: relative;
}

.philosophy-img-wrapper {
  position: relative;
  height: 450px;
  width: 100%;
}

.philosophy-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* The Signature Tilted Background */
.philosophy-img-wrapper::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  width: 100%; height: 100%;
  background-color: #013101;
  border-radius: 12px;
  transform: rotate(-6deg);
  z-index: 1;
}
.philosophy-image-side img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-height: 450px;
  object-fit: cover;
}
.philosophy-section::before{
  content: '';
  position: absolute;
  right: 50px;
  bottom: 70px;
  width: 100%;
  height: 100%;
  background-image: url('pics/about-three-shape.png'); 
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 180px;
  z-index: 0;
}
/* ========================= */
/* RESPONSIVENESS            */
/* ========================= */

/* Large Tablets (≤1024px) */
@media (max-width: 1024px) {
  .philosophy {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .philosophy-content h2 {
    font-size: 2.7rem;
  }

  .philosophy-img-wrapper {
    height: 400px;
    max-width: 80%;
    margin: 0 auto;
    display: none;
  }

  .philosophy-section::before {
    background-size: 130px;
    right: 20px;
    bottom: 50px;
  }
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .philosophy-section {
    padding: 0px 0;
  }
  .philosophy {
    gap: 2.5rem;
  }

  .philosophy-content h2 {
    font-size: 2.4rem;
  }

  .philosophy-content p {
    font-size: 0.95rem;
  }

  .philosophy-img-wrapper {
    height: 350px;
    max-width: 90%;
  }

  .philosophy-img-wrapper::before {
    top: 15px;
    left: 15px;
    transform: rotate(5deg);
  }

  .philosophy-section::before {
    background-size: 110px;
    right: 10px;
    bottom: 40px;
  }
}

/* Mobile (≤576px) */
@media (max-width: 576px) {
  .philosophy {
    gap: 2rem;
    text-align: left;
  }

  .philosophy-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .philosophy-img-wrapper {
    height: 280px;
    max-width: 100%;
  }

  .philosophy-img-wrapper::before {
    top: 12px;
    left: 12px;
    transform: rotate(4deg);
  }

  .philosophy-section::before {
    background-size: 90px;
    bottom: 20px;
    right: 5px;
  }
}

/* Extra Small (≤400px) */
@media (max-width: 400px) {
  .philosophy-content h2 {
    font-size: 1.8rem;
  }

  .philosophy-img-wrapper {
    height: 240px;
  }

  .philosophy-section::before {
    background-size: 100px;
  }
}


.values-section {
  margin-bottom: 100px;
  text-align: center;
}

.values-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--primary-green);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.value-card h3 {
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--white);
  line-height: 1.7;
  font-size: 0.9rem;
}

.team-section{
  margin: 120px auto;
  margin-bottom: 200px;
  text-align: center;
}
.team-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
}
.team-section p {
  color: var(--text-light);
  margin-bottom: 4rem;
}
.team-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}
.team-member{
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 20px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.team-member img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
  object-fit: cover;
  height: 300px;
}

.services-header{
  background: url(pics/Image-8GQV9SH.jpg) no-repeat center center/cover;
  padding: 100px 0 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
  text-align: center;
  color: var(--white);
}
.services-header h1{
  color: var(--white);
  font-size: 3.5rem;
  font-family: "Cormorant Garamond", serif;
}
.services-detail-section {
  padding-top: 80px;
  padding-left: 5px;
  padding-bottom: 0px;
  padding-right: 5px;
}
@media(max-width: 768px){
  .services-detail-section{
    padding-bottom: 0;
  }
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  margin-bottom: 190px;
}
@media(max-width:768px){
  .service-detail{
    gap: 2rem;
    margin-bottom: 50px;
  }
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}
.service-image {
  flex: 1;
  position: relative;
  height: 350px;
}
.service-detail-image img {
  width: 100%;
  max-width: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--soft-green), var(--primary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 2rem;
}
@media(max-width: 768px){
  .service-icon-large{
    display: none;
  }
}

.service-detail-content h2 {
  font-size: 2.5rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: normal;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
}
@media(max-width: 320px){
  .service-detail-content h2{
    font-size: 2rem;
  }
}

.service-detail-content > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-features i {
  color: var(--primary-green);
  font-size: 1.2rem;
}

.service-pricing {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

.price-label {
  color: var(--text-light);
  font-size: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--soft-green));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(122, 155, 118, 0.3);
}

.book-section {
  padding: 80px 0;
}
.book-header{
  background: url(pics/beautiful-african-woman-resting-relaxing-spa-salon.jpg) no-repeat center center/cover;
  padding: 100px 0 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40vh;
  text-align: center;
  color: var(--white);
}
.book-header h1{
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 10px;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.booking-info h2 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: normal;
  font-family: "Cormorant Garamond", serif;
}

.booking-info > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.booking-container {
  max-width: 1400px; margin: 30px auto 100px; padding: 30px 20px;
  display: grid; 
  grid-template-columns: 2fr 1fr; /* Left (scroll) vs Right (fixed) */
  gap: 50px;
  align-items: start; /* Crucial for sticky sidebar to work */
}

/* Progress Bar */
.progress-bar-wrapper {
  grid-column: 1 / -1; 
  position: sticky; 
  top: 80px; /* Sits below Navbar */
  z-index: 900; 
  background: var(--white);
  padding: 20px 0;
  width: 100%;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.progress-bar {
  display: flex; 
  justify-content: center; 
  gap: 40px; 
  font-family: "Cormorant Garamond", serif;
}
.step { font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
/* .step.active { opacity: 1; color: var(--primary-green); font-weight: 700; border-bottom: 2px solid var(--accent-gold); } */
.step-num { 
  background: #eee; width: 30px; height: 30px; border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 0.8rem;
}
.step.active .step-num { background: #013101; color: white; opacity: 1;}
.line {
  width: 60px; height: 2px; background: #eee; align-self: center;
}

/* --- SCROLLABLE LEFT SIDE (FORM) --- */
.booking-form-area {
  /* This area naturally scrolls with the page */
}

.form-stage { display: none; animation: fadeIn 0.5s ease; }
.form-stage.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- IMAGE CARD STYLING --- */
.selection-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 25px; 
  margin-bottom: 30px;
}

.option-card { cursor: pointer; position: relative; display: block; }

/* The Checkbox (Hidden) */
.option-card input[type="checkbox"] { display: none; }

/* The Card Container */
.card-inner {
  border: 1px solid #e0e0e0; 
  border-radius: 15px; 
  overflow: hidden; /* Ensures image stays inside corners */
  text-align: left; 
  transition: all 0.3s ease; 
  background: var(--white);
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* The Image on Top */
.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #f0f0f0;
}

/* The Content Below Image */
.card-details { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }

.card-details h3 { 
  color: var(--primary-green); margin-bottom: 5px; font-size: 1.4rem; 
  display: flex; justify-content: space-between; align-items: center;
}

/* Checkbox Circle UI */
.check-circle {
  width: 24px; height: 24px; border: 2px solid #ccc; border-radius: 50%;
  display: inline-block; transition: 0.2s; position: relative;
}
.check-circle::after {
  content: '\f00c'; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0);
  color: white; font-size: 12px; transition: 0.2s;
}

.card-details p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 15px; flex-grow: 1; }

.price-tag { 
  align-self: flex-start;
  padding: 5px 15px; 
  background: #013101; color: #fff; 
  border-radius: 8px; font-weight: 600; font-family: 'Poppins', sans-serif; font-size: 0.9rem;
  font-family: "Lora", serif;
}

/* Selected State */
.option-card input:checked + .card-inner {
  border-color: var(--primary-green);
  box-shadow: 0 10px 25px rgba(1, 49, 31, 0.15);
}
.option-card input:checked + .card-inner .check-circle {
  background: var(--primary-green); border-color: var(--primary-green);
}
.option-card input:checked + .card-inner .check-circle::after {
  transform: translate(-50%, -50%) scale(1);
}

/* --- STICKY RIGHT SIDE (SUMMARY) --- */
.summary-wrapper {
  position: sticky; 
  top: 180px; /* Distance from top of viewport */
  height: fit-content;
  margin-bottom: 50px;
}

/* Tilted Background for Summary */
.summary-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-color: #ddb41f; border-radius: 20px;
  transform: rotate(3deg); z-index: 0;
}

.summary-card {
  position: relative; z-index: 1; background: var(--primary-green);
  color: var(--white); padding: 30px; border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.summary-card h3 { 
  font-size: 2rem; border-bottom: 1px solid rgba(255,255,255,0.2);
  font-family: 'Cormorant Garamond', serif; 
  padding-bottom: 15px; margin-bottom: 20px; color: #ddb41f;
}

/* Dynamic List of Selected Items */
.selected-list {
  list-style: none; margin-bottom: 20px; 
  max-height: 250px; overflow-y: auto; /* Scrollable list if too many items */
  padding-right: 5px;
}

/* Scrollbar styling for the list */
.selected-list::-webkit-scrollbar { width: 5px; }
.selected-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 5px; }

.selected-item {
  display: flex; justify-content: space-between; 
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; 
  margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.selected-item span:first-child { width: 60%; }

.summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.95rem; opacity: 0.9; }

.total-row { 
  margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2);
  display: flex; justify-content: space-between; font-size: 1.5rem; 
  font-family: 'Cormorant Garamond', serif; color: #ddb41f;
}

/* Date/Input Styles */
.date-input {
  width: 100%; padding: 15px; border: 2px solid var(--primary-green);
  border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 1rem;
  margin-bottom: 20px;
}
.time-slots { display: flex; flex-wrap: wrap; gap: 10px; }
.time-label {
  padding: 10px 20px; border: 1px solid #ccc; border-radius: 8px; cursor: pointer;
}
input[type="radio"]:checked + .time-label {
  background: var(--primary-green); color: white; border-color: var(--primary-green);
}
input[type="radio"] { display: none; }

.input-group input, .input-group textarea {
  width: 100%; padding: 15px; border: 2px solid var(--primary-green); border-radius: 10px; margin-bottom: 20px; font-family: 'Poppins', sans-serif;
}

/* Buttons */
.btn-next {
  background: var(--primary-green); color: var(--white); border: none;
  padding: 15px 40px; border-radius: 8px; cursor: pointer; font-weight: 600; 
  font-family: 'Lora', serif; transition: 0.3s;
}
.btn-next:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.btn-back {
  background: transparent; padding: 15px 30px; border: 1px solid #ccc; border-radius: 8px; cursor: pointer;
}

@media (max-width: 968px) {
  .booking-container { grid-template-columns: 1fr; gap: 30px; }
  
  /* Order: Form First, Summary Last */
  .summary-wrapper { 
      position: relative; 
      top: 0; 
      order: 2; /* Ensures Summary is at bottom on mobile */
  }
  .booking-form-area {
      order: 1; /* Ensures Form is at top on mobile */
  }
}

@media (max-width: 768px) {
  
  /* Sticky Progress Bar Adjustments */
  .progress-bar-wrapper { top: 60px; padding: 15px 0; overflow-x: auto; }
  .progress-bar { justify-content: flex-start; padding: 10px; min-width: 100%; gap: 12px; }
  .step { font-size: 1rem; white-space: nowrap; }
  .step-num { width: 20px; height: 20px; font-size: 0.8rem; }

  .page-header { height: 30vh; }
  .page-header h1 { font-size: 2.2rem; }

  .selection-grid { grid-template-columns: 1fr; /* Single column on mobile */ }
  .card-image { height: 180px; }
  
  .summary-bg { transform: rotate(-2deg); }
}

@media(max-width: 968px){
  .about-grid,
  .about-intro,
  .service-detail,
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse {
    direction: ltr;
  }
  .about-page-section::before{
    display: none;
  }
}
@media(max-width: 768px){
.form-row {
    grid-template-columns: 1fr;
  }
  .about-header h1,
  .book-header h1,
  .services-header h1{
    font-size: 2rem;
  }

  .about-header p, 
  .services-header p {
    font-size: 1rem;
  }

  .services-grid,
  .values-grid,
  .team-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .pricing-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .pricing-left {
    flex-direction: column;
  }
}