:root {
      --primary-color: #d4af37;
      --text-color: #333;
      --light-bg: linear-gradient(180deg, #fffaf5 0%, #fff5e8 100%);
    }

    body {
      font-family: "Helvetica Neue", Arial, sans-serif;
      color: var(--text-color);
      background-color: #fff;
      line-height: 1.6;
    }

    /* === Header === */
    header {
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar-brand img {
      height: 50px;
    }

    .navbar-brand span {
      font-weight: 600;
      color: var(--text-color);
      font-size: 1.1rem;
    }

    .navbar-nav .nav-link {
      color: var(--text-color) !important;
      font-weight: 500;
      margin: 0 10px;
      position: relative;
    }

    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0%;
      height: 2px;
      background-color: var(--primary-color);
      transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      width: 100%;
    }

    .navbar-nav .nav-link:hover {
      color: var(--primary-color) !important;
    }

    .social-icons img {
      width: 24px;
      height: 24px;
      transition: transform 0.3s ease;
    }

    .social-icons img:hover {
      transform: scale(1.15);
    }

        /* === Hero Section === */
       .hero {
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      overflow: hidden;
    }

    /* Background Image */
    .hero-bg {
      object-fit: cover;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    /* Gradient Overlay */
    .hero-overlay {
      background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.4));
      z-index: 1;
    }

    /* Hero Content */
    .hero .container {
      z-index: 2;
      position: relative;
    }

    .button {
      display: inline-block;
      background-color: var(--primary-color);
      color: white;
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      border: 2px solid var(--primary-color);
      transition: all 0.3s ease;
    }

    .button:hover {
      background-color: white;
      color: var(--primary-color);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* === Rooms Section === */
    .rooms-section {
      background: var(--light-bg);
    }

    .section-heading {
      font-weight: 700;
      color: black;
      letter-spacing: 0.5px;
      position: relative;
      display: inline-block;
      font-size: 2rem;
      margin-bottom: 3rem;
    }

    .section-heading::after {
      content: "";
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 90px;
      height: 3px;
      background-color: var(--primary-color);
      border-radius: 3px;
    }

    /* --- Card Styling --- */
    .room-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      border: none;
      box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
      transition: all 0.4s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .room-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
    }

    .room-img {
      width: 100%;
      height: 240px;
      overflow: hidden;
    }

    .room-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .room-card:hover .room-img img {
      transform: scale(1.08);
    }

    .room-body {
      flex-grow: 1;
      padding: 1.5rem;
    }

    .room-title {
      font-weight: 600;
      color: #222;
    }

    .room-text {
      color: #555;
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }

    .room-btn {
      display: inline-block;
      padding: 10px 25px;
      background: var(--primary-color);
      color: #fff;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .room-btn:hover {
      background: #fff;
      color: var(--primary-color);
      border: 2px solid var(--primary-color);
    }

    /* --- Callout Section --- */
    .callout {
      background: linear-gradient(135deg, #fff3d6, #ffeec7);
      border: 1px solid #f0e1b2;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    }

    .book-btn {
      background-color: var(--primary-color);
      color: #fff;
      padding: 12px 32px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .book-btn:hover {
      background: #fff;
      color: var(--primary-color);
      border: 2px solid var(--primary-color);
    }

    /* === About Section === */
    .about-section {
      background: var(--light-bg);
    }

    .portrait-wrapper img {
      width: 100%;
      height: auto;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .portrait-wrapper:hover img {
      transform: scale(1.05);
    }

    .about-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: #333;
      position: relative;
      padding-bottom: 10px;
    }

    .about-title::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 3px;
      border-radius: 2px;
    }

    .about-subtitle {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--primary-color);
    }

    .about-text p {
      color: #555;
      line-height: 1.7;
      margin-bottom: 1.2rem;
      font-size: 1rem;
    }

    .highlight-box {
      background: linear-gradient(135deg, #fff3d6, #ffeec7);
      border: 1px solid #f0e1b2;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
      font-size: 1rem;
      color: #333;
    }

   /* Footer Styles */
  .footer {
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
  }

  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d7b445, #f0d780, #d7b445);
  }

  .text-gold {
    color: #d7b445 !important;
  }

  .btn-gold {
    background-color: #d7b445;
    color: #1a1a1a;
    border: none;
    transition: all 0.3s ease;
  }

  .btn-gold:hover {
    background-color: #c19e30;
    color: #1a1a1a;
    transform: translateY(-2px);
  }

  .footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .footer-brand h3 {
    font-weight: 700;
    font-size: 1.8rem;
  }

  .footer-text {
    color: #b0b0b0;
    line-height: 1.6;
  }

  .footer-links li {
    margin-bottom: 0.5rem;
  }

  .footer-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }

  .footer-link:hover {
    color: #d7b445;
    padding-left: 5px;
  }

  .footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #d7b445;
    transition: width 0.3s ease;
  }

  .footer-link:hover::before {
    width: 100%;
  }

  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2a2a2a;
    color: #b0b0b0;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background-color: #d7b445;
    color: #1a1a1a;
    transform: translateY(-3px);
  }

  .form-control {
    border-radius: 4px 0 0 4px;
  }

  .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(215, 180, 69, 0.25);
    border-color: #d7b445;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .footer {
      text-align: center;
    }
    
    .footer-brand h3 {
      font-size: 1.5rem;
    }
    
    .social-icons {
      justify-content: center;
    }
    
    .opening-hours .d-flex {
      justify-content: center !important;
    }
    
    .opening-hours .d-flex span {
      margin: 0 10px;
    }
  }

  @media (max-width: 576px) {
    .footer {
      padding: 3rem 0 1.5rem;
    }
    
    .footer-links-small {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .footer-links-small a {
      margin-right: 0 !important;
    }
  }

    /* --- Treatments Section --- */
.treatments-section {
  background: #fff;
  padding: 60px 0;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: black;
  margin-bottom: 10px;
}

.section-subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  color: #555;
  font-size: 1rem;
  max-width: 750px;
  margin: 0 auto 50px auto;
}

/* --- Treatment Grid --- */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* --- Treatment Card --- */
.treatment-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.treatment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.treatment-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.treatment-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.treatment-card:hover .treatment-img img {
  transform: scale(1.05);
}

.treatment-body {
  padding: 25px;
  flex-grow: 1;
}

.treatment-body h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.treatment-body p {
  font-family: 'Raleway', sans-serif;
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.treatment-body ul {
  list-style-type: none;
  padding-left: 0;
}

.treatment-body ul li {
  margin-bottom: 6px;
  color: #333;
  font-size: 0.95rem;
}

/* --- Callout --- */
.callout {
  background: linear-gradient(135deg, #fff3d6, #ffeec7);
  border: 1px solid #f0e1b2;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.callout .button {
  background-color: #d4af37;
  color: #fff;
  padding: 12px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.callout .button:hover {
  background: #fff;
  color: #d4af37;
  border: 2px solid #d4af37;
}

/* --- Responsive --- */
@media (max-width: 576px) {
  .section-heading {
    font-size: 2rem;
  }
  .treatment-img {
    height: 180px;
  }
  .treatment-body h3 {
    font-size: 1.3rem;
  }
  .treatment-body p, .treatment-body ul li {
    font-size: 0.9rem;
  }
}
.luxury-section {
  background: linear-gradient(180deg, #fffdf8 0%, #f9f6f1 100%);
  color: #333;
}

.luxury-content {
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
}

.luxury-section .section-title {
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary-color, #b49b5f);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.luxury-section .sub-title {
  font-weight: 600;
  color: #4a4a4a;
  border-left: 4px solid var(--primary-color, #b49b5f);
  padding-left: 12px;
}

.luxury-section .section-text {
  color: #555;
  font-size: 1.05rem;
}

.luxury-section .highlight {
  color: var(--primary-color, #b49b5f);
  font-weight: 600;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  background: rgba(180, 155, 95, 0.08);
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 10px;
  border-left: 3px solid var(--primary-color, #b49b5f);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.luxury-img-wrapper img {
  border-radius: 20px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.luxury-img-wrapper img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.callout .button {
  background-color: var(--primary-color, #b49b5f);
}

.callout .button:hover {
  background-color: white;
  color: var(--primary-color, #b49b5f);
  border: 2px solid var(--primary-color, #b49b5f);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .luxury-section .section-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .luxury-section {
    text-align: center;
  }
  .service-list li {
    text-align: left;
  }
}
/* Collection Cards */
.collection-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image */
.collection-img {
  overflow: hidden;
  position: relative;
}

.collection-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-img img {
  transform: scale(1.05);
}

/* Content */
.collection-content {
  padding: 20px;
  text-align: center;
}

.collection-content h3 {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--primary-color, #b49b5f);
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.collection-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
}

/* Decorative Shine Effect */
.collection-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.collection-card:hover::before {
  left: 125%;
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .section-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .collection-content p {
    font-size: 0.95rem;
  }
  .collection-card {
    margin-bottom: 20px;
  }
}
 /* === Spiritual Section === */
        .spiritual-section {
            background: linear-gradient(180deg, var(--cream-bg) 0%, var(--light-cream) 100%);
            color: #333;
            line-height: 1.8;
            position: relative;
            overflow: hidden;
        }
        
        .spiritual-content {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(6px);
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            padding: 50px 40px;
            max-width: 900px;
            margin: auto;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-gold);
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .section-title::after {
            content: "";
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
            display: block;
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        .spiritual-section p {
            color: #444;
            margin-bottom: 20px;
        }
        
        .service-heading {
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--primary-gold);
            text-align: center;
            margin-top: 40px;
        }
        
        .service-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .service-list li {
            background: #fff;
            padding: 15px 20px;
            margin-bottom: 12px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .service-list li:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        /* === General Section === */
.treatments-section {
  background: white;
  padding: 80px 20px;
  font-family: 'Raleway', sans-serif;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: black;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}
.section-heading::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: #d4af37;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto;
}

/* === Grid Layout === */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* === Card === */
.treatment-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(212,175,55,0.15);
  transition: transform 0.5s, box-shadow 0.5s;
  display: flex;
  flex-direction: column;
}

.treatment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212,175,55,0.25);
}

.treatment-img {
  position: relative;
  overflow: hidden;
}
.treatment-img img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.treatment-card:hover .treatment-img img {
  transform: scale(1.1);
}

.img-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(212,175,55,0.1), rgba(212,175,55,0.2));
  pointer-events: none;
}

/* Card Body */
.treatment-body {
  padding: 25px;
  text-align: left;
}
.treatment-body h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #d4af37;
  margin-bottom: 12px;
}
.treatment-body p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}
.treatment-body ul {
  list-style: none;
  padding-left: 0;
}
.treatment-body ul li {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 6px;
}

/* === Callout Button === */
.callout {
  background: linear-gradient(135deg, #fff3d6, #ffeec7);
  padding: 40px 20px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(212,175,55,0.15);
}
.callout .button {
  background-color: #d4af37;
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}
.callout .button:hover {
  background: #fff;
  color: #d4af37;
  border: 2px solid #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.2);
}

/* === Responsive === */
@media (max-width: 992px) {
  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .treatment-img img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .treatment-grid {
    grid-template-columns: 1fr;
  }
  .treatment-img img {
    height: 180px;
  }
  .treatment-body h3 {
    font-size: 1.4rem;
  }
  .treatment-body p,
  .treatment-body ul li {
    font-size: 0.9rem;
  }
}