/* ========================================
   SKINFOLK - Global Styles
   ======================================== */

/* Color Variables - Pantone Peat & Cloud Dancer Palette */
:root {
  --color-peat: #54513D;
  --color-peat-light: #6D6A54;
  --color-cloud-dancer: #F0EEE9;
  --color-cloud-dancer-dark: #E8E4DC;
  
  /* Legacy variable names mapped to new palette */
  --color-desert-palm: #6D6A54;
  --color-ecru: #E8E4DC;
  --color-sea-salt: #F0EEE9;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-peat);
  background-color: var(--color-cloud-dancer);
  letter-spacing: 0.01em;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-peat);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: 0;
}

h3 {
  font-size: 1.65rem;
  font-weight: 500;
}

h4 {
  font-size: 1.35rem;
  font-weight: 600;
}

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

/* Links */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-desert-palm);
}

/* Buttons */
.btn,
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--color-desert-palm);
  color: white;
  border: none;
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(92, 111, 93, 0.15);
  position: relative;
  overflow: hidden;
}

.btn::before,
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before,
.btn-primary:hover::before {
  left: 100%;
}

.btn:hover,
.btn-primary:hover {
  background-color: var(--color-peat);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(59, 58, 54, 0.3);
}

.btn:active,
.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(59, 58, 54, 0.2);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background-color: transparent;
  color: var(--color-desert-palm);
  border: 2px solid var(--color-desert-palm);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-desert-palm);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-secondary:hover {
  color: white;
  border-color: var(--color-desert-palm);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(90, 70, 50, 0.25);
}

.btn-secondary:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(90, 70, 50, 0.2);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background-color: rgba(250, 250, 248, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(92, 111, 93, 0.1);
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-peat);
  letter-spacing: 1px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  z-index: 30;
}

.logo:hover {
  color: var(--color-desert-palm);
}

.logo-image {
  height: 32px;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo:hover .logo-image {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-peat);
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 4px;
  display: block;
}

.nav-link:hover {
  color: var(--color-desert-palm);
  background-color: var(--color-sea-salt);
}

.nav-link.book-cta {
  background-color: var(--color-desert-palm);
  color: white;
  padding: 8px 20px;
  margin-left: 0.5rem;
}

.nav-link.book-cta:hover {
  background-color: var(--color-peat);
  color: white;
  transform: translateY(-2px);
}

/* Dropdown Menu - Desktop Only */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle::after {
  content: '▾';
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-peat);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: var(--color-ecru);
  color: var(--color-desert-palm);
  padding-left: 2rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  z-index: 1002;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: var(--color-peat);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--color-peat) 0%, #2d2c28 100%);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 223, 202, 0.3), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 2rem;
}

.footer-instagram {
  grid-column: span 1;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-instagram {
    grid-column: span 1;
  }
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-section h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--color-ecru);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
  color: var(--color-sea-salt);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--color-ecru);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 35px;
  height: 35px;
  background-color: var(--color-desert-palm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--color-ecru);
  color: var(--color-peat);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-sea-salt);
  font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-image {
    object-fit: cover !important;
    object-position: 50% center;
    min-height: 100%;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: var(--color-cloud-dancer);
    width: 80%;
    max-width: 320px;
    height: 100vh;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
    padding: 5rem 0 2rem;
    gap: 0;
    overflow-y: auto;
    align-items: stretch;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu>li {
    border-bottom: 1px solid rgba(90, 70, 50, 0.1);
  }

  .nav-link {
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: left;
    border-radius: 0;
    color: var(--color-peat);
    background-color: transparent;
  }

  .nav-link:hover {
    background-color: var(--color-sea-salt);
    color: var(--color-desert-palm);
  }

  .nav-link.book-cta {
    margin: 1rem 1.5rem;
    width: calc(100% - 3rem);
    text-align: center;
    border-radius: 4px;
    background-color: var(--color-desert-palm);
    color: white;
  }

  .nav-link.book-cta:hover {
    background-color: var(--color-peat);
    color: white;
  }

  /* Mobile Dropdown */
  .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .dropdown-toggle::after {
    margin-left: auto;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: var(--color-sea-salt);
    margin: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: all 0.4s ease;
    border-radius: 0;
  }

  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    padding: 0.5rem 0;
  }

  .dropdown-menu a {
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
    font-size: 0.85rem;
    color: var(--color-peat);
  }

  .dropdown-menu a:hover {
    padding-left: 3rem;
    background-color: var(--color-ecru);
    color: var(--color-desert-palm);
  }

  .dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  /* Mobile Overlay */
  body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(59, 58, 54, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
  }

  body.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .logo-image {
    height: 28px;
  }

  .footer-logo {
    height: 32px;
  }
}

/* Utility Classes */
.section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  margin-top: -1px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
  opacity: 1;
  animation: slideZoom 8s ease-out;
}

@keyframes slideZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  background-color: var(--color-sea-salt);
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 58, 54, 0.4) 0%, rgba(90, 70, 50, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(243, 223, 202, 0.1) 0%, transparent 60%);
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.slide.active .hero-content {
  animation: contentFadeUp 1s ease-out 0.3s both;
}

@keyframes contentFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  color: var(--color-ecru);
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.slide.active .hero-buttons {
  animation: buttonsFadeIn 1s ease-out 0.6s both;
}

@keyframes buttonsFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons .btn-primary {
  box-shadow: 0 8px 25px rgba(90, 70, 50, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn-secondary {
  border-color: white;
  color: white;
  border-width: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
  background-color: white;
  color: var(--color-peat);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: arrowsFadeIn 1s ease-out 1s forwards;
}

@keyframes arrowsFadeIn {
  to {
    opacity: 1;
  }
}

.slider-arrow:hover {
  background-color: white;
  color: var(--color-peat);
  border-color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.slider-arrow.prev {
  left: 40px;
}

.slider-arrow.next {
  right: 40px;
}

.slider-arrow {
  display: none;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 12px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: dotsFadeIn 1s ease-out 1.2s forwards;
}

@keyframes dotsFadeIn {
  to {
    opacity: 1;
  }
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.dot.active {
  background-color: white;
  width: 30px;
  border-radius: 5px;
}

.dot.active::before {
  border-color: rgba(255, 255, 255, 0.3);
}

.dot:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.3);
}

/* Instagram Feed Section */
.instagram-feed-section {
  background-color: var(--color-cloud-dancer);
  padding: 3rem 0;
}

.instagram-feed-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background-color: transparent;
}

.instagram-feed-wrapper > div {
  width: 100%;
}

/* Packages Preview Section */
.packages-preview {
  background-color: var(--color-sea-salt);
}

.section-header h2 {
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-desert-palm), var(--color-peat));
  border-radius: 2px;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--color-desert-palm);
  margin-top: 1.5rem;
  font-weight: 400;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(90, 70, 50, 0.08);
}

.package-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-desert-palm);
}

.package-content {
  padding: 2rem;
}

.package-content h3 {
  margin-bottom: 0.5rem;
  color: var(--color-peat);
}

.package-content .package-tagline {
  font-size: 1rem;
  color: var(--color-desert-palm);
  font-style: italic;
  margin-bottom: 1rem;
}

.package-content p {
  margin-bottom: 1.5rem;
  color: var(--color-peat);
  font-size: 0.95rem;
  line-height: 1.6;
}

.package-content .package-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.package-content .price-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-desert-palm);
}

.package-content .price-save {
  background-color: var(--color-ecru);
  color: var(--color-desert-palm);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Responsive Design for Home Page */
@media (max-width: 768px) {
  .hero-slider {
    height: 550px;
  }

  .hero-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .slider-arrow {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
  }

  .slider-arrow.prev {
    left: 15px;
  }

  .slider-arrow.next {
    right: 15px;
  }

  .slider-dots {
    bottom: 30px;
    padding: 10px 16px;
    gap: 10px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 24px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* Ultimate Packages Page */
.page-header {
  background-color: var(--color-ecru);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--color-desert-palm);
  font-family: 'Libre Baskerville', serif;
}

.packages-section {
  background-color: var(--color-cloud-dancer);
}

.packages-wrapper {
  display: grid;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.package-detail {
  background-color: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.package-detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.package-detail.featured {
  border: 3px solid var(--color-desert-palm);
}

.package-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background-color: var(--color-desert-palm);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.package-header h2 {
  margin-bottom: 0.5rem;
  color: var(--color-peat);
}

.package-tagline {
  font-size: 1.1rem;
  color: var(--color-desert-palm);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.package-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-peat);
  margin-bottom: 2rem;
}

.package-includes {
  background-color: var(--color-sea-salt);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.package-includes h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--color-desert-palm);
}

.package-includes ul {
  list-style: none;
  padding: 0;
}

.package-includes li {
  padding: 0.5rem 0;
  color: var(--color-peat);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.package-includes li:before {
  content: "✓ ";
  color: var(--color-desert-palm);
  font-weight: bold;
  margin-right: 8px;
}

.package-pricing {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.price-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-desert-palm);
}

.price-save {
  background-color: var(--color-ecru);
  color: var(--color-desert-palm);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.price-per-visit {
  color: var(--color-peat);
  font-size: 0.95rem;
  text-decoration: line-through;
  opacity: 0.7;
}

.packages-cta {
  background-color: var(--color-ecru);
  padding: 3rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.packages-cta h3 {
  color: var(--color-peat);
  margin-bottom: 1rem;
}

.packages-cta p {
  color: var(--color-desert-palm);
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design for Packages Page */
@media (max-width: 768px) {
  .page-header {
    padding: 3rem 0 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .package-detail {
    padding: 2rem 1.5rem;
  }

  .package-badge {
    top: -12px;
    right: 20px;
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .price-main {
    font-size: 2rem;
  }

  .package-pricing {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .packages-cta {
    padding: 2rem 1.5rem;
  }
}

/* Shop Page Styles */
.shop-hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, var(--color-desert-palm) 0%, var(--color-peat) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.shop-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
}

.shop-hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.shop-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.vouchers-section {
  background-color: var(--color-sea-salt);
}

.vouchers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.voucher-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.voucher-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.voucher-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.voucher-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.voucher-card:hover .voucher-image img {
  transform: scale(1.1);
}

.voucher-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-desert-palm);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

.voucher-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.voucher-content h3 {
  color: var(--color-peat);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.voucher-content p {
  color: var(--color-peat);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.voucher-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-desert-palm);
  margin-bottom: 1.5rem;
}

.voucher-btn {
  width: 100%;
  text-align: center;
}

.voucher-card-custom {
  background: linear-gradient(135deg, var(--color-ecru) 0%, var(--color-sea-salt) 100%);
  border: 2px solid var(--color-desert-palm);
}

.voucher-content-custom {
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.custom-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.custom-amount-select {
  margin: 2rem 0;
}

.custom-amount-dropdown {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid var(--color-desert-palm);
  border-radius: 8px;
  background-color: white;
  color: var(--color-peat);
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-amount-dropdown:focus {
  outline: none;
  border-color: var(--color-peat);
  box-shadow: 0 0 0 3px rgba(90, 70, 50, 0.1);
}

.how-it-works {
  background-color: white;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.how-it-works-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-desert-palm), var(--color-peat));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.how-it-works-step h3 {
  color: var(--color-desert-palm);
  margin-bottom: 1rem;
}

.how-it-works-step p {
  color: var(--color-peat);
  line-height: 1.7;
}

.shop-why-choose {
  background-color: var(--color-ecru);
}

.shop-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.shop-benefit {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.shop-benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.shop-benefit .benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.shop-benefit h3 {
  color: var(--color-desert-palm);
  margin-bottom: 1rem;
}

.shop-benefit p {
  color: var(--color-peat);
  line-height: 1.7;
}

.shop-cta {
  background-color: var(--color-cloud-dancer);
}

.shop-cta-card {
  background: linear-gradient(135deg, var(--color-peat) 0%, var(--color-desert-palm) 100%);
  padding: 4rem;
  border-radius: 16px;
  text-align: center;
  color: white;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.shop-cta-card h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.shop-cta-card p {
  color: var(--color-sea-salt);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design for Shop Page */
@media (max-width: 768px) {
  .shop-hero h1 {
    font-size: 2.5rem;
  }

  .vouchers-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .shop-benefits-grid {
    grid-template-columns: 1fr;
  }

  .shop-cta-card {
    padding: 3rem 2rem;
  }

  .shop-cta-card h2 {
    font-size: 2rem;
  }
}

/* Memberships Page */
.memberships-section {
  background-color: var(--color-cloud-dancer);
}

.memberships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.membership-card {
  background-color: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(90, 70, 50, 0.08);
}

.membership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-desert-palm);
}

.membership-card.featured {
  border: 3px solid var(--color-desert-palm);
}

.membership-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background-color: var(--color-desert-palm);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.membership-header h3 {
  margin-bottom: 1rem;
  color: var(--color-peat);
  font-size: 1.75rem;
}

.membership-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.membership-body>p {
  color: var(--color-peat);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.membership-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-desert-palm);
  margin-bottom: 1.5rem;
}

.membership-benefits {
  background-color: var(--color-sea-salt);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.membership-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.membership-benefits li {
  padding: 0.5rem 0;
  color: var(--color-peat);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.membership-benefits li:before {
  content: "✓ ";
  color: var(--color-desert-palm);
  font-weight: bold;
  margin-right: 8px;
}

.membership-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

.membership-actions .btn {
  width: 100%;
  text-align: center;
}

.membership-info {
  background-color: var(--color-ecru);
  padding: 3rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.membership-info h3 {
  color: var(--color-peat);
  margin-bottom: 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-item h4 {
  color: var(--color-desert-palm);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-item p {
  color: var(--color-peat);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Design for Memberships Page */
@media (max-width: 768px) {
  .memberships-grid {
    grid-template-columns: 1fr;
  }

  .membership-card {
    padding: 2rem 1.5rem;
  }

  .membership-badge {
    top: -12px;
    right: 20px;
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .membership-price {
    font-size: 1.75rem;
  }

  .membership-info {
    padding: 2rem 1.5rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Sculptra Page Styles */

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease-out forwards;
}

/* Hero Section */
.sculptra-hero {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, var(--color-peat) 0%, var(--color-desert-palm) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sculptra-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.sculptra-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
}

.sculptra-hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.sculptra-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero-tagline {
  font-size: 1.5rem;
  color: var(--color-ecru);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-sea-salt);
  line-height: 1.8;
}

/* Intro Section */
.sculptra-intro {
  background-color: white;
}

.sculptra-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-peat);
}

.rounded-image {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.rounded-image:hover {
  transform: scale(1.02);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--color-sea-salt);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-desert-palm);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--color-peat);
  font-weight: 500;
}

/* Benefits Section */
.sculptra-benefits {
  background-color: var(--color-cloud-dancer);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: var(--color-desert-palm);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.benefit-card p {
  color: var(--color-peat);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Video Section */
.sculptra-video {
  background-color: var(--color-sea-salt);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Process Timeline */
.sculptra-process {
  background-color: white;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 40px;
  top: 80px;
  width: 2px;
  height: calc(100% + 3rem);
  background: linear-gradient(to bottom, var(--color-desert-palm), var(--color-ecru));
}

.timeline-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-desert-palm), var(--color-peat));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.timeline-content {
  background-color: var(--color-sea-salt);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  color: var(--color-desert-palm);
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: var(--color-peat);
  line-height: 1.7;
}

/* Gallery Section */
.sculptra-gallery {
  background-color: var(--color-cloud-dancer);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(59, 58, 54, 0.9), transparent);
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

/* CTA Section */
.sculptra-cta {
  background: linear-gradient(135deg, var(--color-desert-palm) 0%, var(--color-peat) 100%);
  position: relative;
  overflow: hidden;
}

.sculptra-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.cta-card {
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-card h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.1rem;
  color: var(--color-sea-salt);
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  border-color: white;
  color: white;
}

.cta-buttons .btn-secondary:hover {
  background-color: white;
  color: var(--color-peat);
}

/* Video Hero Section */
.treatment-video-hero {
  position: relative;
  height: 100vh;
  max-height: 800px;
  overflow: hidden;
}

.video-hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.video-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(59, 58, 54, 0.5), rgba(59, 58, 54, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.video-hero-content {
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Sticky CTA Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-desert-palm), var(--color-peat));
  padding: 1rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  color: white;
}

.sticky-cta-content span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.sticky-cta-buttons {
  display: flex;
  gap: 1rem;
}

.btn-sticky {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-whatsapp {
  background-color: #25D366;
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background-color: #1ea952;
  border-color: #1ea952;
}

/* Treatment Page Shared Styles */
.treatment-intro {
  background-color: white;
}

.treatment-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.treatment-process {
  background-color: var(--color-cloud-dancer);
}

.treatment-areas {
  background-color: white;
}

.treatment-gallery {
  background-color: var(--color-sea-salt);
}

.treatment-faq {
  background-color: white;
}

.treatment-cta {
  background: linear-gradient(135deg, var(--color-desert-palm) 0%, var(--color-peat) 100%);
  position: relative;
  overflow: hidden;
}

/* Responsive Design for Sculptra Page */
@media (max-width: 768px) {
  .treatment-video-hero {
    height: 70vh;
    max-height: 600px;
  }

  .video-hero-content h1 {
    font-size: 2.5rem;
  }

  .sticky-cta-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .sticky-cta-content span {
    font-size: 0.9rem;
  }

  .sticky-cta-buttons {
    width: 100%;
    justify-content: center;
  }

  .sculptra-hero {
    height: 500px;
  }

  .sculptra-hero h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .sculptra-intro-grid,
  .treatment-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }

  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .timeline-item:not(:last-child)::after {
    left: 30px;
    top: 60px;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cta-card h2 {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Treatments Page Styles */
.treatments-hero {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, var(--color-desert-palm) 0%, var(--color-peat) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatments-hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.treatments-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.treatments-grid-section {
  background-color: var(--color-cloud-dancer);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.treatment-category-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.treatment-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.treatment-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--color-ecru);
}

.treatment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.treatment-category-card:hover .treatment-card-image img {
  transform: scale(1.1);
}

.treatment-card-content {
  padding: 2rem;
}

.treatment-card-content h3 {
  color: var(--color-peat);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.treatment-card-content p {
  color: var(--color-peat);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.why-skinfolk {
  background-color: var(--color-sea-salt);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.why-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.why-item h3 {
  color: var(--color-desert-palm);
  margin-bottom: 1rem;
}

.why-item p {
  color: var(--color-peat);
  line-height: 1.7;
}

.treatments-cta {
  background: linear-gradient(135deg, var(--color-peat) 0%, var(--color-desert-palm) 100%);
}

/* Individual Treatment Detail Page */
.treatment-detail-hero {
  position: relative;
  height: 500px;
  background-color: var(--color-peat);
  overflow: hidden;
}

.treatment-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
}

.treatment-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(59, 58, 54, 0.5), rgba(59, 58, 54, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-hero-content {
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.treatment-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.treatment-hero-content .treatment-subtitle {
  font-size: 1.3rem;
  color: var(--color-ecru);
  margin-bottom: 2rem;
}

.treatment-overview {
  background-color: white;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-content h2 {
  margin-bottom: 1.5rem;
}

.overview-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-peat);
  margin-bottom: 1.5rem;
}

.overview-highlights {
  background-color: var(--color-ecru);
  padding: 2rem;
  border-radius: 12px;
}

.overview-highlights h3 {
  color: var(--color-desert-palm);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.overview-highlights ul {
  list-style: none;
  padding: 0;
}

.overview-highlights li {
  padding: 0.75rem 0;
  color: var(--color-peat);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(90, 70, 50, 0.1);
}

.overview-highlights li:last-child {
  border-bottom: none;
}

.overview-highlights li:before {
  content: "✓ ";
  color: var(--color-desert-palm);
  font-weight: bold;
  margin-right: 10px;
}

.results-timeline {
  background-color: var(--color-cloud-dancer);
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.timeline-step {
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.timeline-step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-desert-palm), var(--color-peat));
  color: white;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.timeline-step h3 {
  color: var(--color-desert-palm);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.timeline-step p {
  color: var(--color-peat);
  line-height: 1.6;
  font-size: 0.95rem;
}

.before-after-strip {
  background-color: var(--color-sea-salt);
}

.ba-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.ba-strip-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ba-strip-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.ba-strip-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(59, 58, 54, 0.95), transparent);
  color: white;
  padding: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.related-memberships {
  background-color: white;
}

.memberships-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.membership-preview-card {
  background-color: var(--color-sea-salt);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.membership-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.membership-preview-card h3 {
  color: var(--color-desert-palm);
  margin-bottom: 1rem;
}

.membership-preview-card p {
  color: var(--color-peat);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.membership-preview-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-desert-palm);
  margin-bottom: 1.5rem;
}

.faqs-section {
  background-color: var(--color-cloud-dancer);
}

.faqs-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background-color: white;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-peat);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: var(--color-sea-salt);
}

.faq-question.active {
  background-color: var(--color-ecru);
  color: var(--color-desert-palm);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-answer.active {
  max-height: 500px;
  padding: 1.5rem 2rem;
}

.faq-answer p {
  color: var(--color-peat);
  line-height: 1.8;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-peat);
  padding: 1rem 0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 1rem;
}

.sticky-cta-text {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.sticky-cta-buttons {
  display: flex;
  gap: 1rem;
}

.sticky-cta-buttons .btn {
  padding: 10px 24px;
}

/* Responsive Design for Treatments Pages */
@media (max-width: 768px) {
  .treatments-hero {
    height: 350px;
  }

  .treatments-hero h1 {
    font-size: 2.5rem;
  }

  .treatments-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .treatment-detail-hero {
    height: 400px;
  }

  .treatment-hero-content h1 {
    font-size: 2.5rem;
  }

  .treatment-hero-content .treatment-subtitle {
    font-size: 1.1rem;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline-steps {
    grid-template-columns: 1fr;
  }

  .ba-strip-grid {
    grid-template-columns: 1fr;
  }

  .memberships-preview-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta-text {
    font-size: 1rem;
  }

  .sticky-cta-buttons {
    width: 100%;
    flex-direction: column;
  }

  .sticky-cta-buttons .btn {
    width: 100%;
  }
}

/* Pricing Page Styles */
.pricing-section {
  background-color: var(--color-cloud-dancer);
}

.pricing-container {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-category {
  background-color: white;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.pricing-category:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pricing-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.pricing-category-header:hover {
  background-color: var(--color-sea-salt);
}

.pricing-category.active .pricing-category-header {
  background-color: var(--color-ecru);
  border-bottom-color: var(--color-desert-palm);
}

.pricing-category-header h3 {
  font-size: 1.4rem;
  color: var(--color-peat);
  margin: 0;
  transition: color 0.3s ease;
}

.pricing-category.active .pricing-category-header h3 {
  color: var(--color-desert-palm);
}

.pricing-icon {
  font-size: 2rem;
  color: var(--color-desert-palm);
  transition: transform 0.3s ease;
  font-weight: 300;
  line-height: 1;
}

.pricing-category.active .pricing-icon {
  transform: rotate(45deg);
}

.pricing-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.pricing-category.active .pricing-items {
  max-height: 2000px;
  padding: 1rem 0;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--color-sea-salt);
  transition: all 0.3s ease;
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item:hover {
  background-color: var(--color-sea-salt);
  padding-left: 2.5rem;
}

.pricing-item-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pricing-item h4 {
  font-size: 1.1rem;
  color: var(--color-peat);
  font-weight: 600;
  margin: 0;
}

.pricing-duration {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--color-desert-palm);
  font-weight: 500;
}

.pricing-item-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-desert-palm);
  white-space: nowrap;
  margin-left: 1rem;
}

.pricing-item-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-course-booking {
  background-color: var(--color-desert-palm);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-course-booking:hover {
  background-color: var(--color-peat);
  transform: translateY(-2px);
}

.pricing-cta {
  background-color: var(--color-ecru);
  padding: 3rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.pricing-cta h3 {
  color: var(--color-peat);
  margin-bottom: 1rem;
}

.pricing-cta p {
  color: var(--color-desert-palm);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Responsive Design for Pricing Page */
@media (max-width: 768px) {
  .pricing-category-header {
    padding: 1.25rem 1.5rem;
  }

  .pricing-category-header h3 {
    font-size: 1.2rem;
  }

  .pricing-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    gap: 0.5rem;
  }

  .pricing-item:hover {
    padding-left: 1.5rem;
  }

  .pricing-item-price {
    margin-left: 0;
    font-size: 1.5rem;
  }

  .pricing-cta {
    padding: 2rem 1.5rem;
  }
}

/* Book Page Styles */

/* Hero Section */
.book-hero {
  position: relative;
  height: 450px;
  background: linear-gradient(135deg, var(--color-desert-palm) 0%, var(--color-peat) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.book-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.book-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
}

.book-hero-content {
  text-align: center;
  color: white;
}

.book-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.book-hero .hero-tagline {
  font-size: 1.4rem;
  color: var(--color-ecru);
  font-style: italic;
}

/* Booking Methods Section */
.booking-methods-section {
  background-color: white;
}

.booking-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.booking-method-card {
  background-color: var(--color-sea-salt);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.booking-method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-desert-palm), var(--color-peat));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.booking-method-card:hover::before {
  transform: scaleX(1);
}

.booking-method-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background-color: white;
}

.method-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.booking-method-card:hover .method-icon {
  transform: scale(1.1);
}

.booking-method-card h3 {
  color: var(--color-peat);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.booking-method-card p {
  color: var(--color-desert-palm);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* Booking Form Section */
.booking-form-section {
  background-color: var(--color-cloud-dancer);
}

.booking-form-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-form-header {
  background: linear-gradient(135deg, var(--color-ecru) 0%, var(--color-sea-salt) 100%);
  padding: 3rem 2rem;
  text-align: center;
}

.booking-form-header h2 {
  color: var(--color-peat);
  margin-bottom: 0.75rem;
  font-size: 2rem;
}

.booking-form-header p {
  color: var(--color-desert-palm);
  font-size: 1.1rem;
}

.pabau-embed-container {
  position: relative;
  min-height: 900px;
  background-color: white;
}

.pabau-embed-container iframe {
  display: block;
  width: 100%;
  height: 900px;
  border: none;
}

.booking-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-sea-salt) 0%, var(--color-ecru) 100%);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.fallback-content {
  text-align: center;
  max-width: 500px;
}

.fallback-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.fallback-content h3 {
  color: var(--color-peat);
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.fallback-content p {
  color: var(--color-desert-palm);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Consultation Process */
.consultation-process {
  background-color: var(--color-sea-salt);
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.process-step-card {
  background-color: white;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.process-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.step-number-badge {
  position: absolute;
  top: -20px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-desert-palm), var(--color-peat));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.process-step-card h3 {
  color: var(--color-desert-palm);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.process-step-card p {
  color: var(--color-peat);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Booking Info Section */
.booking-info-section {
  background-color: white;
}

.booking-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.info-highlight-card {
  background: linear-gradient(135deg, var(--color-ecru) 0%, var(--color-sea-salt) 100%);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.info-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.info-highlight-card h3 {
  color: var(--color-peat);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.info-highlight-card p {
  color: var(--color-desert-palm);
  line-height: 1.8;
  font-size: 1rem;
}

/* CTA Section */
.booking-cta-section {
  background-color: var(--color-cloud-dancer);
}

.booking-cta-card {
  background: linear-gradient(135deg, var(--color-peat) 0%, var(--color-desert-palm) 100%);
  padding: 4rem 3rem;
  border-radius: 16px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

.booking-cta-card h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.booking-cta-card p {
  color: var(--color-sea-salt);
  font-size: 1.2rem;
  line-height: 1.7;
}

.booking-cta-card .cta-buttons .btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.booking-cta-card .cta-buttons .btn-secondary:hover {
  background-color: white;
  color: var(--color-peat);
}

/* Responsive Design for Book Page */
@media (max-width: 768px) {
  .book-hero {
    height: 350px;
  }

  .book-hero h1 {
    font-size: 2.5rem;
  }

  .book-hero .hero-tagline {
    font-size: 1.1rem;
  }

  .booking-methods-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .booking-method-card {
    padding: 2.5rem 2rem;
  }

  .pabau-embed-container {
    min-height: 800px;
  }

  .pabau-embed-container iframe {
    height: 800px;
  }

  .process-steps-grid {
    grid-template-columns: 1fr;
  }

  .booking-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .booking-cta-card {
    padding: 3rem 2rem;
  }

  .booking-cta-card h2 {
    font-size: 2rem;
  }

  .booking-cta-card p {
    font-size: 1rem;
  }
}

/* Community Page Styles */

/* Hero Section */
.community-hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, var(--color-ecru) 0%, var(--color-sea-salt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.community-hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(90, 70, 50, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 58, 54, 0.1) 0%, transparent 50%);
}

.community-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
}

.community-hero-content {
  text-align: center;
  padding: 0 20px;
}

.community-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-peat);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.community-hero .hero-tagline {
  font-size: 1.4rem;
  color: var(--color-desert-palm);
  font-style: italic;
}

/* Community Intro */
.community-intro {
  background-color: white;
}

.community-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-content h2 {
  margin-bottom: 1.5rem;
  color: var(--color-peat);
}

.intro-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-peat);
  margin-bottom: 1.5rem;
}

/* WhatsApp Community Section */
.whatsapp-community {
  background-color: var(--color-cloud-dancer);
}

.whatsapp-card {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  padding: 4rem 3rem;
  border-radius: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.whatsapp-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.whatsapp-card h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.whatsapp-card>p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.whatsapp-benefits {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
}

.benefit-item:last-child {
  border-bottom: none;
}

.check-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.btn-whatsapp {
  background-color: white;
  color: #25D366;
  font-size: 1.1rem;
  padding: 14px 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Newsletter Signup */
.newsletter-signup {
  background-color: var(--color-sea-salt);
}

.newsletter-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-header {
  margin-bottom: 3rem;
}

.newsletter-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1.5rem;
}

.newsletter-header h2 {
  color: var(--color-peat);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.newsletter-header p {
  font-size: 1.1rem;
  color: var(--color-desert-palm);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.flodesk-form-container {
  background-color: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.fallback-form {
  padding: 3rem;
  text-align: center;
}

.fallback-form h3 {
  color: var(--color-peat);
  margin-bottom: 1rem;
}

.fallback-form p {
  color: var(--color-desert-palm);
  font-size: 1.05rem;
  line-height: 1.7;
}

.fallback-form a {
  color: var(--color-desert-palm);
  text-decoration: underline;
}

/* Community Benefits */
.community-benefits {
  background-color: white;
}

/* Community CTA */
.community-cta {
  background-color: var(--color-ecru);
}

.community-cta .cta-card {
  background: linear-gradient(135deg, var(--color-peat) 0%, var(--color-desert-palm) 100%);
  padding: 4rem 3rem;
  border-radius: 16px;
  text-align: center;
  color: white;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

.community-cta .cta-card h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.community-cta .cta-card p {
  color: var(--color-sea-salt);
  font-size: 1.2rem;
  line-height: 1.7;
}

.community-cta .btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.community-cta .btn-secondary:hover {
  background-color: white;
  color: var(--color-peat);
}

/* Responsive Design for Community Page */
@media (max-width: 768px) {
  .community-hero {
    height: 400px;
  }

  .community-hero h1 {
    font-size: 2.5rem;
  }

  .community-hero .hero-tagline {
    font-size: 1.1rem;
  }

  .community-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .whatsapp-card {
    padding: 3rem 2rem;
  }

  .whatsapp-card h2 {
    font-size: 2rem;
  }

  .whatsapp-benefits {
    padding: 2rem 1.5rem;
  }

  .benefit-item {
    font-size: 0.95rem;
  }

  .newsletter-header h2 {
    font-size: 2rem;
  }

  .newsletter-header p {
    font-size: 1rem;
  }

  .flodesk-form-container {
    padding: 2rem 1.5rem;
  }

  .community-cta .cta-card {
    padding: 3rem 2rem;
  }

  .community-cta .cta-card h2 {
    font-size: 2rem;
  }

  .community-cta .cta-card p {
    font-size: 1rem;
  }
}

/* Events Page Styles */

/* Video Hero Section */
.events-video-hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background-color: var(--color-peat);
}

.events-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.5;
}

.events-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(59, 58, 54, 0.6), rgba(59, 58, 54, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.events-hero-content {
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 900px;
  margin: 0 auto;
}

.events-hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.events-hero-content .hero-tagline {
  font-size: 1.5rem;
  color: var(--color-ecru);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.events-hero-content .hero-description {
  font-size: 1.1rem;
  color: var(--color-sea-salt);
  line-height: 1.8;
}

/* Events List Section */
.events-list-section {
  background-color: var(--color-cloud-dancer);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.event-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.event-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.event-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-date-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--color-desert-palm), var(--color-peat));
  color: white;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 70px;
}

.date-day {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.date-month {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.event-content {
  padding: 2.5rem;
}

.event-category {
  display: inline-block;
  background-color: var(--color-ecru);
  color: var(--color-desert-palm);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.event-content h3 {
  color: var(--color-peat);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.event-content>p {
  color: var(--color-peat);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.event-details {
  background-color: var(--color-sea-salt);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.event-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--color-peat);
}

.detail-icon {
  font-size: 1.2rem;
}

/* Events Signup Section */
.events-signup-section {
  background-color: var(--color-sea-salt);
}

.events-signup-content {
  max-width: 900px;
  margin: 0 auto;
}

.signup-header {
  margin-bottom: 3rem;
}

.signup-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1.5rem;
}

.signup-header h2 {
  color: var(--color-peat);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.signup-header p {
  font-size: 1.1rem;
  color: var(--color-desert-palm);
  line-height: 1.7;
}

.flodesk-form-wrapper {
  background-color: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.flodesk-embed-container {
  min-height: 200px;
}

.fallback-form {
  text-align: center;
  padding: 2rem;
}

.fallback-form h3 {
  color: var(--color-peat);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.fallback-form p {
  color: var(--color-desert-palm);
  font-size: 1.05rem;
  line-height: 1.7;
}

.fallback-form a {
  color: var(--color-desert-palm);
  text-decoration: underline;
}

/* Why Attend Section */
.events-why-section {
  background-color: white;
}

.why-attend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.why-attend-card {
  background-color: var(--color-sea-salt);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.why-attend-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background-color: white;
}

.why-attend-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.why-attend-card h3 {
  color: var(--color-desert-palm);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.why-attend-card p {
  color: var(--color-peat);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Contact CTA Section */
.events-contact-cta {
  background-color: var(--color-ecru);
}

.contact-cta-card {
  background: linear-gradient(135deg, var(--color-peat) 0%, var(--color-desert-palm) 100%);
  padding: 4rem 3rem;
  border-radius: 16px;
  text-align: center;
  color: white;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

.contact-cta-card h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-cta-card p {
  color: var(--color-sea-salt);
  font-size: 1.2rem;
  line-height: 1.7;
}

.contact-cta-card .btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.contact-cta-card .btn-secondary:hover {
  background-color: white;
  color: var(--color-peat);
}

/* Responsive Design for Events Page */
@media (max-width: 768px) {
  .events-video-hero {
    height: 450px;
  }

  .events-hero-content h1 {
    font-size: 2.5rem;
  }

  .events-hero-content .hero-tagline {
    font-size: 1.2rem;
  }

  .events-hero-content .hero-description {
    font-size: 1rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .event-content {
    padding: 2rem 1.5rem;
  }

  .event-content h3 {
    font-size: 1.4rem;
  }

  .signup-header h2 {
    font-size: 2rem;
  }

  .signup-header p {
    font-size: 1rem;
  }

  .flodesk-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .why-attend-grid {
    grid-template-columns: 1fr;
  }

  .why-attend-card {
    padding: 2.5rem 2rem;
  }

  .contact-cta-card {
    padding: 3rem 2rem;
  }

  .contact-cta-card h2 {
    font-size: 2rem;
  }

  .contact-cta-card p {
    font-size: 1rem;
  }
}

/* Contact Page Styles */

/* Hero Section */
.contact-hero {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, var(--color-desert-palm) 0%, var(--color-peat) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.contact-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
}

.contact-hero-content {
  text-align: center;
  color: white;
  padding: 0 20px;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.contact-hero .hero-tagline {
  font-size: 1.4rem;
  color: var(--color-ecru);
  font-style: italic;
}

/* Contact Info Section */
.contact-info-section {
  background-color: white;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--color-ecru) 0%, var(--color-sea-salt) 100%);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.contact-info-card h3 {
  color: var(--color-peat);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-info-card p {
  color: var(--color-desert-palm);
  line-height: 1.8;
  font-size: 1.05rem;
}

.contact-info-card a {
  color: var(--color-desert-palm);
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--color-peat);
}

.contact-hours,
.contact-response {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* Contact Form & Map Section */
.contact-form-map-section {
  background-color: var(--color-cloud-dancer);
}

.contact-form-map-grid {
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start; */
}

.contact-form-wrapper h2,
.contact-map-wrapper h2 {
  color: var(--color-peat);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.form-description {
  color: var(--color-desert-palm);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--color-peat);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-sea-salt);
  border-radius: 8px;
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: var(--color-peat);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-desert-palm);
  box-shadow: 0 0 0 3px rgba(90, 70, 50, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--color-desert-palm);
  color: white;
  border: 2px solid var(--color-desert-palm);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}

.btn-submit:hover {
  background-color: var(--color-peat);
  border-color: var(--color-peat);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Map Container */
.map-container {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  height: 500px;
  margin-top: 1.5rem;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-sea-salt) 0%, var(--color-ecru) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-content {
  text-align: center;
  padding: 2rem;
}

.map-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.map-placeholder p {
  color: var(--color-peat);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.map-note {
  font-size: 0.9rem !important;
  color: var(--color-desert-palm) !important;
  font-weight: 400 !important;
  margin-top: 0.5rem;
}

/* Quick Contact Section */
.quick-contact-section {
  background-color: var(--color-sea-salt);
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.quick-contact-card {
  background-color: white;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.quick-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.quick-contact-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.quick-contact-card h3 {
  color: var(--color-desert-palm);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.quick-contact-card p {
  color: var(--color-peat);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-whatsapp {
  display: inline-block;
  padding: 12px 30px;
  background-color: #25D366;
  color: white;
  border: 2px solid #25D366;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  border-color: #128C7E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact FAQ Section */
.contact-faq-section {
  background-color: white;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-hero {
    height: 350px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero .hero-tagline {
    font-size: 1.1rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-card {
    padding: 2.5rem 2rem;
  }

  .contact-form-map-grid {
    /* grid-template-columns: 1fr;
    gap: 3rem; */
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .map-container {
    height: 350px;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact-card {
    padding: 2.5rem 2rem;
  }
}

/* Modern Gallery Page Styles */

/* Modern Hero Section */
.gallery-modern-hero {
  background: linear-gradient(135deg, var(--color-cloud-dancer) 0%, var(--color-sea-salt) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.gallery-modern-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(90, 70, 50, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(59, 58, 54, 0.08) 0%, transparent 60%);
}

.gallery-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.gallery-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-peat);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.gallery-hero-content .hero-subtitle {
  font-size: 1.3rem;
  color: var(--color-desert-palm);
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-pill {
  background-color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-pill:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-desert-palm);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-peat);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Filter Section */
.gallery-filter-section {
  background-color: white;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-sea-salt);
  position: sticky;
  top: 70px;
  z-index: 100;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: 2px solid var(--color-sea-salt);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-peat);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--color-desert-palm);
  color: var(--color-desert-palm);
}

.filter-btn.active {
  background-color: var(--color-desert-palm);
  border-color: var(--color-desert-palm);
  color: white;
}

/* Modern Gallery Grid */
.modern-gallery-section {
  background-color: var(--color-cloud-dancer);
}

.modern-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.modern-gallery-item {
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modern-gallery-item.hidden {
  opacity: 0;
  transform: scale(0.9);
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.gallery-item-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-wrapper:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.modern-gallery-image {
  width: 100%;
  height: 400px;
  object-fit: fill;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  background-color: var(--color-sea-salt);
}

.gallery-item-wrapper:hover .modern-gallery-image {
  transform: scale(1.08);
}

.modern-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(59, 58, 54, 0.98) 0%, rgba(59, 58, 54, 0.85) 60%, transparent 100%);
  color: white;
  padding: 2rem;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.gallery-item-wrapper:hover .modern-gallery-overlay {
  background: linear-gradient(to top, rgba(59, 58, 54, 0.95) 0%, rgba(59, 58, 54, 0.75) 70%, transparent 100%);
}

.overlay-content {
  position: relative;
}

.treatment-tag {
  display: inline-block;
  background-color: var(--color-desert-palm);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.overlay-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.overlay-content p {
  font-size: 0.95rem;
  color: var(--color-ecru);
  margin-bottom: 0;
}

/* Modern Consent Notice */
.modern-consent-notice {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.consent-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.consent-text h3 {
  color: var(--color-desert-palm);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.consent-text p {
  color: var(--color-peat);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Gallery CTA Section */
.gallery-cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--color-desert-palm) 0%, var(--color-peat) 100%);
  padding: 4rem 3rem;
  border-radius: 20px;
  margin-top: 4rem;
  color: white;
}

.gallery-cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.gallery-cta-section p {
  color: var(--color-sea-salt);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-cta-section .btn {
  background-color: white;
  color: var(--color-peat);
  border-color: white;
}

.gallery-cta-section .btn:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

/* Modern Lightbox */
.modern-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.modern-lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.modern-lightbox-close:hover {
  background-color: white;
  color: var(--color-peat);
  transform: rotate(90deg);
}

.modern-lightbox-caption {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-peat);
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  max-width: 80%;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modern-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 2rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.modern-lightbox-nav:hover {
  background-color: white;
  color: var(--color-peat);
  transform: translateY(-50%) scale(1.1);
}

.modern-lightbox-prev {
  left: 2rem;
}

.modern-lightbox-next {
  right: 2rem;
}

/* Responsive Design for Modern Gallery */
@media (max-width: 768px) {
  .gallery-modern-hero {
    padding: 3rem 0 2.5rem;
  }

  .gallery-hero-content h1 {
    font-size: 2.5rem;
  }

  .gallery-hero-content .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-pill {
    padding: 0.75rem 1.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .gallery-filter-section {
    padding: 1.5rem 0;
  }

  .filter-buttons {
    gap: 0.75rem;
  }

  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .modern-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .modern-gallery-image {
    height: 320px;
  }

  .overlay-content h3 {
    font-size: 1.1rem;
  }

  .overlay-content p {
    font-size: 0.9rem;
  }

  .modern-consent-notice {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .consent-icon {
    font-size: 2.5rem;
  }

  .gallery-cta-section {
    padding: 3rem 2rem;
  }

  .gallery-cta-section h2 {
    font-size: 2rem;
  }

  .gallery-cta-section p {
    font-size: 1rem;
  }

  .modern-lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .modern-lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .modern-lightbox-prev {
    left: 1rem;
  }

  .modern-lightbox-next {
    right: 1rem;
  }

  .modern-lightbox-caption {
    font-size: 0.95rem;
    padding: 1rem 2rem;
    bottom: 2rem;
  }

  .modern-lightbox-content {
    max-width: 95%;
    max-height: 75vh;
  }
}