* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #fff;
  color: #4b2e26;
}

/* Navbar */
.navbar {
  background-color: #7b5b4b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  color: #fff;
  position: relative;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #fff;
}

.hamburger:hover {
  color: #f8d9b3;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.logo p {
  font-size: 10px;
  letter-spacing: 1px;
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #f8d9b3;
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #7b5b4b;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-menu li {
  border-bottom: 1px solid #f8d9b3;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background-color: #f8d9b3;
  color: #7b5b4b;
}

/* Hover for desktop */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #7b5b4b;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 10;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 15px 20px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background-color: #5a4a3f;
    box-shadow: none;
  }

  .dropdown-menu.active {
    display: block;
  }

  .dropdown-menu a {
    padding: 10px 20px;
  }
}

.btn-appointment {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-appointment:hover {
  background: #333;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 60px 100px;
}

.hero-image img {
  width: 550px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero-text {
  max-width: 600px;
}

.hero-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero-text span {
  color: #7b5b4b;
}

.hero-text p {
  font-size: 18px;
  color: #4b2e26;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 40px 20px;
  }

  .hero-image img {
    width: 100%;
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 60px 100px;
}

.hero-image {
  position: relative;
  width: 550px;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  border-radius: 10px;
}

.slider img.active {
  display: block;
  animation: fade 1s ease-in-out;
}

/* Arrows */
.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  font-size: 30px;
  padding: 5px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.slider button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Text Section */
.hero-text {
  max-width: 600px;
}

.hero-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero-text span {
  color: #7b5b4b;
}

.hero-text p {
  font-size: 18px;
  color: #4b2e26;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 40px 20px;
  }

  .hero-image {
    width: 100%;
    height: 300px;
  }
}

.footer {
  position: relative;
  background: url("footer-bg.jpg") no-repeat center center/cover;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}

.footer-overlay {
  background: rgba(60, 40, 30, 0.6);
  padding: 80px 100px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

/* Logo */
.footer-logo {
  max-width: 250px;
  text-align: left;
}

.footer-logo img {
  width: 60px;
  margin-bottom: 10px;
}

.footer-logo h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.footer-logo p {
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* Hours */
.footer-hours ul {
  list-style: none;
  padding: 0;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
  padding: 8px 0;
  font-size: 15px;
}

.footer-hours span:first-child {
  color: #f8d9b3;
}

/* Contact */
.footer-contact {
  max-width: 250px;
  line-height: 1.8;
  font-size: 15px;
}

/* Bottom Section */
.footer-bottom {
  background-color: #7b5b4b;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #f0e0d8;
}

.footer-bottom a {
  color: #f0e0d8;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-overlay {
    padding: 60px 30px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact,
  .footer-hours,
  .footer-logo {
    width: 100%;
  }
}

/* about us */
/* --- Variables (Assuming these are defined globally in a real project) --- */
:root {
  --secondary-color: #614438; /* Darker brown for text/logo */
  --light-bg-color: #f8f5f2; /* Off-white background from previous section */
  --intro-bg-color: #eae6e1; /* Slight darker/taupe background for this specific section */
}

/* --- Section Layout --- */.intro-section {
  display: flex;
  max-width: 1200px;
  margin: 30px auto;
  overflow: hidden;
  background-color: var(--intro-bg-color);
}

/* Image Section */
.intro-image-container {
  flex: 0 0 50%;
  max-height: 550px;
  overflow: hidden;
}

.intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

/* Text Section */
.intro-text-container {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.intro-heading {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--secondary-color);
  margin: 0 0 30px 0;
  text-align: right;
  letter-spacing: 1px;
}

.intro-body-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--secondary-color);
  margin: 0;
  text-align: right;
}

/* ✅ RESPONSIVE BREAKPOINT */
@media (max-width: 768px) {
  .intro-section {
    flex-direction: column;
  }

  .intro-image-container {
    flex: none;
    width: 100%;
    max-height: 320px;
  }

  .intro-image {
    border-radius: 0;
  }

  .intro-text-container {
    flex: none;
    width: 100%;
    padding: 30px 20px;
    text-align: center;
    border-radius: 0;
  }

  .intro-heading,
  .intro-body-text {
    text-align: center;
  }

  .intro-heading {
    font-size: 28px;
  }

  .intro-body-text {
    font-size: 14px;
  }
}

/* ✅ Extra small screens */
@media (max-width: 480px) {
  .intro-text-container {
    padding: 25px 15px;
  }

  .intro-heading {
    font-size: 24px;
  }

  .intro-body-text {
    font-size: 13px;
  }
}

/* --- Variables (Assuming these are defined globally) --- */
:root {
  --primary-color: #a36a55; /* Brown header/active link */
  --secondary-color: #614438; /* Darker brown for main text/logo */
  --tan-bg-color: #cdbda6; /* The distinct tan/beige background color for this section */
  --light-text-color: #f5f5f5; /* White/light text (not used here) */
  --stamp-color: #a39678; /* Muted color for the stamp/border */
}
/* --- Section Container and Background --- */
.core-values-section {
  background-color: var(--tan-bg-color);
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 0;
}

/* --- Left Column --- */
.values-left-column {
  flex: 0 0 35%;
  padding: 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.core-values-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--secondary-color);
  margin: 0 0 10px 0;
}

.core-values-acronym {
  font-family: "Montserrat", sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 40px 0;
  letter-spacing: 5px;
}

/* --- Stamp --- */
.stamp-container {
  width: 220px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.stamp-border {
  position: relative;
  border: 3px dashed var(--stamp-color);
  padding: 20px;
  transform: rotate(-10deg);
  text-align: center;
  line-height: 1.2;
}

.stamp-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--stamp-color);
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

.stamp-star-line {
  font-size: 18px;
  margin: 5px 0;
}

.stamp-approved {
  font-size: 24px;
  font-style: italic;
  font-weight: 900;
  border-top: 2px solid var(--stamp-color);
  margin-top: 10px;
  padding-top: 5px;
}

/* --- Separator Line --- */
.values-separator {
  flex: 0 0 2px;
  background-color: var(--stamp-color);
  opacity: 0.5;
  height: auto;
  margin: 40px 0;
}

/* --- Right Column --- */
.values-right-column {
  flex: 1;
  padding: 20px 80px 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.value-icon {
  font-size: 36px;
  color: var(--primary-color);
  margin-top: 5px;
}

.value-content {
  flex-grow: 1;
}

.value-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0 0 5px 0;
  letter-spacing: 1px;
}

.value-description {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-color);
  line-height: 1.5;
  margin: 0;
}

/* ✅ RESPONSIVE BREAKPOINTS */

/* --- Tablet & Mobile --- */
@media (max-width: 992px) {
  .core-values-section {
    flex-direction: column;
    padding: 40px 0;
    text-align: center;
  }

  .values-separator {
    display: none;
  }

  .values-left-column {
    flex: none;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .core-values-acronym {
    font-size: 60px;
  }

  .stamp-container {
    width: 180px;
    height: 180px;
  }

  .values-right-column {
    padding: 0 30px;
  }

  .value-item {
    justify-content: center;
    text-align: left;
  }
}

/* --- Small Mobile --- */
@media (max-width: 600px) {
  .core-values-acronym {
    font-size: 48px;
    letter-spacing: 3px;
  }

  .core-values-title {
    font-size: 26px;
  }

  .value-icon {
    font-size: 28px;
  }

  .value-heading {
    font-size: 16px;
  }

  .value-description {
    font-size: 14px;
  }

  .stamp-container {
    width: 150px;
    height: 150px;
  }

  .stamp-text {
    font-size: 11px;
  }

  .stamp-approved {
    font-size: 18px;
  }
}

/* service */
/* --- Variables (Assuming these are defined globally) --- */
:root {
  --primary-color: #a36a55; /* Brown header/active link */
  --secondary-color: #614438; /* Darker brown for main text/logo */
  --light-bg-color: #f8f5f2; /* Off-white background */
  --card-bg-color: #a09e9b; /* Greyish background for cards */
  --card-text-color: #f8f5f2; /* Light text on cards */
}

/* --- Services Hero Banner --- */
.services-hero {
  background-image: url("image_5342a7.jpg"); /* Replace with your actual background image */
  background-size: cover;
  background-position: center;
  height: 300px; /* Adjust height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* Optional: Dark overlay for text readability */
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Dark grey overlay */
  }
}

.services-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 60px;
  font-weight: 400;
  color: var(--light-text-color);
  margin: 0;
  position: relative; /* Bring text above overlay */
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- Main Content Wrapper for Procedures --- */
.services-content-wrapper {
  max-width: 1400px; /* Adjust max-width as per your design */
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(
    --light-bg-color
  ); /* Matches the main body background */
}

.section-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-color);
  margin: 20px 0 15px 0;
  padding-left: 10px; /* Small indent to align with cards */
}

/* --- Procedure Cards Row --- */
.procedure-cards-row {
  display: flex;
  gap: 30px; /* Space between cards */
  justify-content: center; /* Center cards if there are few */
  margin-bottom: 40px; /* Space below the row */
}

.procedure-card {
  flex: 1; /* Allow cards to grow and shrink */
  max-width: 550px; /* Max width for individual cards */
  background-color: var(--card-bg-color); /* Grey background */
  border-radius: 12px;
  overflow: hidden; /* Ensures image and text are clipped by border-radius */
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.procedure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.procedure-card-image {
  width: 100%;
  height: 350px; /* Fixed height for images for uniformity */
  object-fit: cover; /* Cover the area, cropping if necessary */
  display: block;
}

.procedure-card-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--card-text-color);
  margin: 0;
  position: absolute; /* Position over the image */
  bottom: 30px; /* Distance from bottom */
  left: 30px; /* Distance from left */
  z-index: 2; /* Ensure text is above image */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Stronger shadow for readability */
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 992px) {
  .services-hero-title {
    font-size: 48px;
  }

  .services-content-wrapper {
    padding: 30px 15px;
  }

  .procedure-cards-row {
    flex-direction: column; /* Stack cards vertically */
    align-items: center; /* Center stacked cards */
    gap: 25px;
  }

  .procedure-card {
    max-width: 90%; /* Allow cards to take up more width on tablets */
    width: 100%; /* Ensure they stretch */
  }

  .procedure-card-image {
    height: 300px; /* Slightly reduced image height */
  }

  .procedure-card-title {
    font-size: 28px;
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 600px) {
  .services-hero {
    height: 200px; /* Smaller hero banner on mobile */
  }

  .services-hero-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 14px;
    padding-left: 5px;
  }

  .procedure-cards-row {
    gap: 20px;
  }

  .procedure-card {
    max-width: 100%; /* Full width on mobile */
    border-radius: 0; /* Remove rounded corners for full edge-to-edge look */
  }

  .procedure-card-image {
    height: 250px; /* Further reduced image height */
  }

  .procedure-card-title {
    font-size: 24px;
    bottom: 15px;
    left: 15px;
  }
}

/* --- Variables (reusing previous ones) --- */
:root {
  --primary-color: #a36a55; /* Brown color for icons/active states */
  --secondary-color: #614438; /* Darker brown for text */
  --grid-bg-color: #eae6e1; /* Matches the background of the procedure cards section */
}

/* --- Grid Container --- */
.our-procedures-grid {
  /* Assuming this wrapper is inside the .services-content-wrapper */
  background-color: var(--grid-bg-color);
  padding: 20px 0 60px 0; /* Vertical padding */
  display: grid;
  /* Create 6 equally sized columns */
  grid-template-columns: repeat(6, 1fr);
  gap: 15px; /* Space between tiles */
  /* Center the grid within its container for larger screens */
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --- Individual Tile Styling --- */
.procedure-tile {
  background-color: #f7f4f2; /* Very light background for the tile itself */
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Subtle shadow */
  transition: background-color 0.2s, box-shadow 0.2s;
  height: 80px; /* Fixed height for uniformity */
}

.procedure-tile:hover {
  background-color: #fff; /* White background on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tile-icon-circle {
  /* Style for the brown circle containing the icon/arrow */
  width: 40px;
  height: 40px;
  min-width: 40px; /* Prevents shrinking on smaller tiles */
  background-color: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tile-icon-circle i {
  color: var(--primary-color);
  font-size: 16px;
}

.tile-text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-color);
  /* Allow text to wrap if it's long */
  flex-grow: 1;
  line-height: 1.3;
}

/* ======================================= */
/* RESPONSIVENESS (Media Queries) */
/* ======================================= */

/* --- Tablet (Screens smaller than 992px) --- */
@media (max-width: 992px) {
  .our-procedures-grid {
    /* Change from 6 columns to 4 columns */
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .procedure-tile {
    height: 70px; /* Slightly shorter tile height */
  }

  .tile-text {
    font-size: 13px; /* Smaller font for tighter space */
  }
}

/* --- Mobile (Screens smaller than 600px) --- */
@media (max-width: 600px) {
  .our-procedures-grid {
    /* Change from 4 columns to 2 columns */
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .procedure-tile {
    height: 60px; /* Shorter tile height */
    padding: 10px;
  }

  .tile-icon-circle {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  .tile-icon-circle i {
    font-size: 14px;
  }

  .tile-text {
    font-size: 12px;
  }
}

/* --- Variables (reusing previous ones) --- */
:root {
  --primary-color: #a36a55; /* Brown color for icons/borders */
  --secondary-color: #614438; /* Darker brown for text */
  --consultation-bg-color: #cdbda6; /* Matches the background of the Core Values section */
  --card-internal-bg: #eae6e1; /* Slight lighter background for the cards */
  --price-color: #4c3c30; /* Very dark color for the price */
  --note-color: #705445; /* Muted color for the note text */
}

/* --- Section Container --- */
.consultation-section {
  background-color: var(--consultation-bg-color);
  padding: 60px 20px;
  text-align: center;
}

.consultation-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--secondary-color);
  margin: 0 0 40px 0;
}

/* --- Cards Layout --- */
.consultation-cards-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.consultation-card {
  flex: 0 0 45%; /* Each card takes up almost half the container width */
  max-width: 450px;
  background-color: var(--card-internal-bg);
  border: 1px solid var(--primary-color); /* Light brown border */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

/* --- Card Header (Icon and Title) --- */
.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.header-icon-circle {
  width: 35px;
  height: 35px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-icon-circle i {
  color: var(--primary-color);
  font-size: 16px;
}

.card-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

/* --- Card Body (Note, Divider, and Price) --- */
.card-body {
  text-align: left;
  flex-grow: 1; /* Ensures content fills space if notes have different lengths */
  display: flex;
  flex-direction: column;
}

.card-note {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--note-color);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1; /* Push price to the bottom */
}

.card-divider {
  border: 0;
  height: 1px;
  background-color: var(--primary-color);
  opacity: 0.5;
  margin: 10px 0;
}

.card-price {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--price-color);
  margin-top: 10px;
}

/* ======================================= */
/* RESPONSIVENESS (Media Queries) */
/* ======================================= */

/* --- Mobile (Screens smaller than 768px) --- */
@media (max-width: 768px) {
  .consultation-cards-container {
    flex-direction: column; /* Stack cards vertically */
    gap: 25px;
    padding: 0 10px;
  }

  .consultation-card {
    flex: auto;
    max-width: 100%; /* Full width on mobile */
    padding: 15px;
  }

  .consultation-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .card-heading {
    font-size: 16px;
  }

  .card-price {
    font-size: 20px;
  }
}

/* packages  */
/* --- Variables (reusing previous ones) --- */
:root {
  --primary-color: #a36a55; /* Brown color for icons/borders */
  --secondary-color: #614438; /* Darker brown for text */
  --packages-bg-color: #eae6e1; /* Matches the light taupe background */
  --details-box-bg: #f0e8dc; /* Lighter tan for the included treatments box */
  --price-color: #4c3c30; /* Very dark color for the price */
  --package-border-color: #a36a55; /* Brown border */
}

/* --- Section Container --- */
.packages-section {
  background-color: var(--packages-bg-color);
  padding: 60px 0;
  overflow: hidden; /* To contain the scrollable wrapper */
}

.packages-section-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--secondary-color);
  text-align: center;
  margin: 0 0 40px 0;
}

/* --- Horizontal Scroll Wrapper --- */
.packages-scroll-wrapper {
  display: flex;
  /* Enable horizontal scrolling and hide default scrollbar */
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */

  /* Ensure padding on the left and right */
  padding: 0 5vw; /* Adjust 5vw as needed for desired spacing */
  gap: 30px; /* Space between cards */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.packages-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* --- Individual Package Card Styling --- */
.package-card {
  /* Define fixed size for horizontal scrolling */
  flex: 0 0 280px; /* Card width (adjust as needed) */
  width: 280px;

  background-color: #f8f5f2; /* Off-white card background */
  border: 1px solid var(--package-border-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

/* --- Card Header (Icon and Title) --- */
.card-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.header-icon-circle {
  /* Reuse styling from previous sections */
  width: 25px;
  height: 25px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-icon-circle i {
  color: var(--primary-color);
  font-size: 14px;
}

.package-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.package-description {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--secondary-color);
  line-height: 1.4;
  margin-bottom: 15px;
}

/* --- Treatment Details Box --- */
.package-details-box {
  background-color: var(--details-box-bg);
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.details-title {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0 0 5px 0;
}

.package-details-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-details-box li {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: var(--secondary-color);
  line-height: 1.4;
}

/* --- Gift Note and Price --- */
.package-gift-note {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--secondary-color);
  line-height: 1.4;
  padding-top: 10px;
  border-top: 1px solid rgba(163, 106, 85, 0.3); /* Muted brown divider */
  margin-bottom: 10px;
  flex-grow: 1; /* Pushes price to the bottom */
}

.package-price-box {
  padding-top: 10px;
}

.package-price {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--price-color);
  margin: 0;
}

/* ======================================= */
/* RESPONSIVENESS (Horizontal scroll remains) */
/* ======================================= */

/* --- Mobile / Smaller Screens Adjustments --- */
@media (max-width: 600px) {
  .packages-section {
    padding: 40px 0;
  }
  .packages-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .package-card {
    flex: 0 0 240px; /* Make cards slightly narrower */
    width: 240px;
  }

  .packages-scroll-wrapper {
    padding: 0 20px; /* Reduced side padding on small screens */
  }

  .package-price {
    font-size: 16px;
  }
}

/* membership */
/* --- Variables (reusing previous ones) --- */
:root {
  --primary-color: #a36a55; /* Brown color for icons/borders */
  --secondary-color: #614438; /* Darker brown for text */
  --memberships-bg-color: #eae6e1; /* Matches the light taupe background */
  --includes-box-bg: #f0e8dc; /* Lighter tan for the included discounts box */
  --price-color: #4c3c30; /* Very dark color for the price */
  --membership-border-color: #a36a55; /* Brown border */
}

/* --- Section Container --- */
.memberships-section {
  background-color: var(--memberships-bg-color);
  padding: 60px 0;
  overflow: hidden; /* To contain the scrollable wrapper */
}

.memberships-section-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--secondary-color);
  text-align: center;
  margin: 0 0 40px 0;
}

/* --- Horizontal Scroll Wrapper --- */
.memberships-scroll-wrapper {
  display: flex;
  /* Enable horizontal scrolling and hide default scrollbar */
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */

  /* Ensure padding on the left and right */
  padding: 0 5vw; /* Adjust 5vw as needed for desired spacing */
  gap: 30px; /* Space between cards */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.memberships-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* --- Individual Membership Card Styling --- */
.membership-card {
  /* Define fixed size for horizontal scrolling */
  flex: 0 0 350px; /* Card width (adjust as needed to fit content) */
  width: 350px;

  background-color: #f8f5f2; /* Off-white card background */
  border: 1px solid var(--membership-border-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

/* --- Card Header (Icon and Title) --- */
.card-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.header-icon-circle {
  /* Reuse styling from previous sections */
  width: 25px;
  height: 25px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-icon-circle i {
  color: var(--primary-color);
  font-size: 14px;
}

.membership-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.membership-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.membership-description {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--secondary-color);
  line-height: 1.4;
  margin-bottom: 15px;
}

/* --- Includes Box --- */
.membership-includes-box {
  background-color: var(--includes-box-bg);
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.membership-includes-box p {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--secondary-color);
  margin: 0;
  line-height: 1.4;
}

.membership-includes-box span {
  font-weight: 600; /* Make the discount percentage bold */
}

/* --- Access Note and Price --- */
.membership-access-note {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--secondary-color);
  line-height: 1.4;
  padding-top: 10px;
  border-top: 1px solid rgba(163, 106, 85, 0.3); /* Muted brown divider */
  margin-bottom: 10px;
  flex-grow: 1; /* Pushes price to the bottom */
}

.membership-price-box {
  padding-top: 10px;
}

.membership-price {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--price-color);
  margin: 0;
}

/* ======================================= */
/* RESPONSIVENESS (Horizontal scroll remains) */
/* ======================================= */

/* --- Mobile / Smaller Screens Adjustments --- */
@media (max-width: 600px) {
  .memberships-section {
    padding: 40px 0;
  }
  .memberships-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .membership-card {
    flex: 0 0 280px; /* Adjust card width for mobile */
    width: 280px;
  }

  .memberships-scroll-wrapper {
    padding: 0 20px; /* Reduced side padding on small screens */
  }

  .membership-price {
    font-size: 16px;
  }

  .membership-heading {
    font-size: 15px;
  }
  .membership-subtitle {
    font-size: 13px;
  }
  .membership-description,
  .membership-includes-box p,
  .membership-access-note {
    font-size: 11px;
  }
}

/* gift */
/* --- Variables (reusing previous ones) --- */
:root {
  --primary-color: #a36a55; /* Brown color for icons/borders */
  --secondary-color: #614438; /* Darker brown for text */
  --gift-card-bg-color: #f8f5f2; /* Off-white background from the image */
  --card-internal-bg: #f8f5f2; /* Cards are the same as background for floating effect */
  --price-color: #4c3c30; /* Very dark color for the price */
  --note-color: #705445; /* Muted color for the note text */
  --card-border-color: #a36a55; /* Brown border */
}

/* --- Section Container --- */
.gift-cards-section {
  background-color: var(--gift-card-bg-color);
  padding: 60px 20px;
  text-align: center;
}

.gift-cards-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--secondary-color);
  margin: 0 0 40px 0;
}

/* --- Cards Layout --- */
.gift-cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gift-card-tile {
  flex: 0 0 300px; /* Fixed width for the tiles */
  max-width: 350px;
  background-color: var(--card-internal-bg);
  border: 1px solid var(--card-border-color); /* Brown border */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

/* --- Tile Header (Icon and Title) --- */
.tile-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.header-icon-circle {
  width: 35px;
  height: 35px;
  border: 1px solid var(--card-border-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-icon-circle i {
  color: var(--card-border-color);
  font-size: 16px;
}

.tile-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

/* --- Tile Body (Note, Divider, and Price) --- */
.tile-body {
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tile-note {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--note-color);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1; /* Push price to the bottom */
}

.tile-divider {
  border: 0;
  height: 1px;
  /* Dotted line effect */
  border-bottom: 1px dotted var(--card-border-color);
  background: none;
  margin: 10px 0;
  opacity: 0.8;
}

.tile-price {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--price-color);
  margin-top: 10px;
}

/* ======================================= */
/* RESPONSIVENESS (Media Queries) */
/* ======================================= */

/* --- Tablet (Screens smaller than 992px) --- */
@media (max-width: 992px) {
  .gift-cards-container {
    flex-wrap: wrap; /* Allow cards to wrap to the next line */
    gap: 20px;
    padding: 0 10px;
  }

  .gift-card-tile {
    flex: 1 1 45%; /* Allow two cards per row */
    max-width: none;
  }
}

/* --- Mobile (Screens smaller than 600px) --- */
@media (max-width: 600px) {
  .gift-cards-container {
    flex-direction: column; /* Stack cards vertically */
    gap: 15px;
  }

  .gift-card-tile {
    flex: auto;
    width: 100%;
  }

  .gift-cards-title {
    font-size: 28px;
  }

  .tile-price {
    font-size: 20px;
  }
}

/* appointment */

/* FORM CONTAINER */
.form-container {
  max-width: 500px;
  width: 100%;
  background: #fff;
  margin: auto;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
}

/* INPUT GROUP */
.input-group {
  margin-bottom: 15px;
}

.input-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-size: 15px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #000;
}

/* BUTTON */
.btn {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.85;
}

/* ----------------------- */
/* RESPONSIVE BREAKPOINTS  */
/* ----------------------- */

/* TABLET */
@media (min-width: 600px) {
  .form-container {
    padding: 35px;
  }

  .form-container h2 {
    font-size: 28px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    font-size: 16px;
  }
}

/* LARGE SCREENS */
@media (min-width: 900px) {
  body {
    /* padding: 40px; */
  }

  .form-container {
    max-width: 600px;
    padding: 40px;
  }

  .form-container h2 {
    font-size: 30px;
  }
}