/*
Theme Name: Studio Elle Spa & Wellness Theme
Theme URI: https://studioellespa.com
Author: Antigravity
Author URI: https://studioellespa.com
Description: A premium, luxurious WordPress theme for Studio Elle Spa & Wellness. Includes service details, booking forms, a dynamic price list, client testimonials, FAQs, and a fully custom navigation system.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: studio-elle
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Montserrat:wght@200;300;400;500;600&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #ffffff;
  --color-gold-muted: #c5a880;
  --color-gold-bright: #dfba8c;
  --color-gold-dark: #8e7453;
  --color-text-light: #ffffff;
  --color-text-muted: #3c3c3c;
  --color-border: rgba(197, 168, 128, 0.15);
  --color-border-strong: rgba(197, 168, 128, 0.4);
  --color-glass-bg: rgba(8, 8, 8, 0.75);
  --color-glass-border: rgba(255, 255, 255, 0.05);
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

/* --- RESET & GLOBAL STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-primary);
  color: var(--color-text-light);
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-primary);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-bright);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* --- REUSABLE UTILITIES & BUTTONS --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--color-gold-muted);
  background: transparent;
  color: #000;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

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

.btn-outline:hover {
  background-color: var(--color-gold-muted);
  color: var(--color-bg-primary);
  border-color: var(--color-gold-muted);
  box-shadow: 0 10px 25px rgba(197, 168, 128, 0.25);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}

.link-gold {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-muted);
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
}

.link-gold::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--color-gold-muted);
  transition: var(--transition-smooth);
}

.link-gold:hover::after {
  width: 100%;
}

.section-padding {
  padding: 5rem 0;
}

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

/* Scroll Animation Base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.215, 0.610, 0.355, 1), transform 1s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- HEADER / NAVIGATION --- */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

header.scrolled {
  position: fixed;
  background-color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  max-width: 100% !important;
  padding: 0 4% !important;
  transition: var(--transition-smooth);
}

.logo a {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo a img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}

.logo a img:hover {
  opacity: 0.85;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.8rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light);
  opacity: 0.7;
  padding: 2px 0;
  transition: var(--transition-fast);
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.active {
  opacity: 1;
  border-bottom: 1px solid #ffffff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.header-search:hover {
  opacity: 1;
}

.header-search span {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
}

.search-icon {
  width: 16px;
  height: 16px;
  fill: var(--color-text-light);
}

/* Burger Toggle Button — always visible */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  padding: 0;
  z-index: 2100;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.menu-toggle:hover {
  border-color: var(--color-gold-muted);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #000;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease,
              width 0.3s ease;
}

/* Burger → X animation */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* --- HERO SECTION (EDITORIAL SLIDER) --- */
.hero-slider {
  height: 100vh;
  display: flex;
  background-color: var(--color-bg-primary);
  padding-top: 90px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.slider-side-col {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  background-color: var(--color-bg-primary);
}

.slider-left-col {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.slider-right-col {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.slider-center-area {
  flex-grow: 1;
  position: relative;
  height: 100%;
  background-color: var(--color-bg-primary);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
  padding-left: 8%;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.slide:nth-child(1)::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)), url('/wp-content/uploads/2026/07/hero-face-treatment.webp');
}

.slide:nth-child(2)::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)), url('assets/treatment_oil.png');
}

.slide:nth-child(3)::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)), url('assets/banner_bathroom.png');
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem;
  animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transition: var(--transition-smooth);
  margin-top: -1.2rem;
  margin-left: 2rem;
  text-decoration: none;
  animation: fadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-btn-circle:hover {
  border-color: var(--color-gold-bright);
  background-color: rgba(255, 255, 255, 0.05);
  transform: scale(1.06);
}

.circle-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: #ffffff;
  transition: var(--transition-fast);
}

.slide-btn-circle:hover .circle-text {
  color: var(--color-gold-bright);
}

.slider-arrow {
  background: transparent;
  border: none;
  width: 50px;
  height: 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-medium);
}

.slider-arrow::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1.2px;
  background-color: rgba(255, 255, 255, 0.45);
  transition: var(--transition-medium);
}

.prev-arrow::after {
  content: '';
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  border-left: 1.2px solid rgba(255, 255, 255, 0.75);
  border-top: 1.2px solid rgba(255, 255, 255, 0.75);
  transform: rotate(-45deg);
  transition: var(--transition-medium);
}

.next-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  width: 6px;
  height: 6px;
  border-right: 1.2px solid rgba(255, 255, 255, 0.75);
  border-top: 1.2px solid rgba(255, 255, 255, 0.75);
  transform: rotate(45deg);
  transition: var(--transition-medium);
}

.slider-arrow:hover::before {
  background-color: var(--color-gold-bright);
}

.slider-arrow:hover::after {
  border-color: var(--color-gold-bright);
}

.prev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.next-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.prev-arrow:hover {
  transform: translateY(-50%) translateX(-5px);
}

.next-arrow:hover {
  transform: translateY(-50%) translateX(5px);
}

.slider-socials {
  position: absolute;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  align-items: center;
}

.slider-social-link {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  transform: rotate(-90deg);
  display: inline-block;
  transition: var(--transition-fast);
}

.slider-social-link:hover {
  color: var(--color-gold-muted);
}

/* --- CORE PILLARS SECTION --- */
.pillars {
  background-color: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
}

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

.pillar-card {
  text-align: center;
  padding: 1rem;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-10px);
}

.pillar-icon {
  margin-bottom: 1rem;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 42px;
  height: 42px;
  fill: var(--color-gold-muted);
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon svg {
  fill: var(--color-gold-bright);
  transform: scale(1.1);
}

.pillar-title {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.12em;
  color: #000 !important;
}

.pillar-text {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- SPECIAL TREATMENTS SECTION --- */
.special-treatments {
  background-color: var(--color-bg-primary);
}

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

.special-image-container {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.special-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-gold-muted);
  margin: 1.5rem;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.special-image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.special-image-container:hover img {
  transform: scale(1.05);
}

.special-image-container:hover::after {
  margin: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border-color: var(--color-gold-bright);
}

.special-content {
  padding-right: 2rem;
}

.special-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--color-gold-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.special-title {
  margin-bottom: 2rem;
  font-size: 2.8rem;
  line-height: 1.25;
  color: #000;
}

.special-text {
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* --- FAQ / QUESTIONS SECTION --- */
.faq {
  background-color: var(--color-bg-secondary);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
}

.faq-title {
  font-size: 1rem;
  margin-bottom: 3rem;
  color: #000;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.2rem;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.8rem 0;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.accordion-header h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #000;
  transition: var(--transition-fast);
}

.accordion-header:hover h4 {
  color: var(--color-gold-muted);
}

.accordion-icon {
  width: 18px;
  height: 18px;
  fill: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.accordion-header:hover .accordion-icon {
  fill: var(--color-gold-muted);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}

.accordion-content p {
  padding: 0.8rem 0 0.5rem 0;
  line-height: 1.7;
}

/* Expanded state styles */
.accordion-item.active .accordion-header h4 {
  color: var(--color-gold-bright);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  fill: var(--color-gold-bright);
}

.accordion-item.active .accordion-content {
  opacity: 1;
}

.faq-image-container {
  height: 550px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  position: relative;
}

.faq-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- PARTNER LOGOS ROW --- */
.partners {
  background-color: var(--color-bg-primary);
  padding: 4rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.partners-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0.65;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  font-weight: 300;
  color: var(--color-text-light);
  transition: var(--transition-medium);
}

.partner-logo svg {
  width: 28px;
  height: 28px;
  fill: var(--color-text-light);
}

.partner-logo:hover {
  opacity: 1;
  color: var(--color-gold-muted);
  transform: scale(1.05);
}

.partner-logo:hover svg {
  fill: var(--color-gold-muted);
}

/* --- PRODUCTS SECTION --- */
.products {
  background-color: var(--color-bg-secondary);
}

.products-header {
  margin-bottom: 4rem;
}

.products-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--color-gold-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
}

.product-card {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.product-image-box {
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image-box img {
  transform: scale(1.08);
}

.product-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
  font-weight: 400;
  color: #000;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-gold-muted);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.product-btn {
  margin-top: auto;
  font-size: 0.65rem;
  padding: 0.6rem 1.2rem;
  border-color: rgba(197, 168, 128, 0.4);
}

/* --- TESTIMONIAL QUOTE --- */
.testimonial {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85)), url('assets/banner_bathroom.png') no-repeat center center/cover;
  position: relative;
  padding: 8rem 0;
  text-align: center;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote-icon {
  margin-bottom: 2rem;
}

.quote-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--color-gold-muted);
  opacity: 0.5;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-style: italic;
}

.quote-author {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 3.5rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition-medium);
}

.dot.active {
  background-color: var(--color-gold-muted);
  transform: scale(1.3);
}

/* --- MEET THE TEAM SECTION --- */
.team {
  background-color: var(--color-bg-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

.team-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.team-image-wrapper {
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  position: relative;
  aspect-ratio: 1 / 1;
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-image-wrapper:hover img {
  transform: scale(1.06);
}

.team-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.team-image-wrapper:hover .team-image-overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-member-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  color: var(--color-text-light);
}

.team-member-role {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-gold-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-content {
  padding-right: 2rem;
}

.team-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--color-gold-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.team-title {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  line-height: 1.25;
}

.team-text {
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* --- OUR SERVICES / PRICE LIST SECTION --- */
.services-menu {
  background-color: var(--color-bg-secondary);
}

.services-header {
  margin-bottom: 3.5rem;
}

.services-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--color-gold-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

/* Category Filter Tabs */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  cursor: pointer;
  transition: var(--transition-medium);
}

.tab-btn:hover {
  border-color: var(--color-gold-muted);
  color: #000;
}

.tab-btn.active {
  background-color: var(--color-gold-muted);
  color: var(--color-bg-primary);
  border-color: var(--color-gold-muted);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5rem;
  row-gap: 2.8rem;
  min-height: 380px; /* Preserve height on swap to avoid layout shifts */
  transition: opacity 0.3s ease;
}

.menu-item {
  display: flex;
  flex-direction: column;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.05em;
  position: relative;
  flex-grow: 0;
}

.menu-item-leader {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(197, 168, 128, 0.3);
  margin: 0 12px 6px 12px;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gold-muted);
  white-space: nowrap;
}

.menu-item-details {
  display: flex;
  gap: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-gold-muted);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-item-desc {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* --- BOTTOM BANNER SECTION --- */
.bottom-banner {
        padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 20px !important;
    padding-right: 20px !important;
  height: 65vh;
  min-height: 450px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('assets/banner_bathroom.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  border: 1px solid var(--color-gold-muted);
  padding: 4.5rem 6rem;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 900px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.banner-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold-muted);
  margin-bottom: 1.2rem;
}

.banner-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 2.2rem;
}

/* --- CONTACT SECTION --- */
.contact-section {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: flex-start;
}

.contact-info-panel {
  padding-right: 2rem;
}

.contact-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--color-gold-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.25;
  color: #000 !important;
}

.contact-intro {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-detail-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.detail-icon {
  width: 45px;
  height: 45px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-medium);
}

.contact-detail-card:hover .detail-icon {
  border-color: var(--color-gold-muted);
  background-color: rgba(197, 168, 128, 0.05);
}

.detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold-muted);
}

.detail-text h5 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: var(--color-gold-muted);
  text-transform: uppercase;
}

.detail-text p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Contact Form Panel */
.contact-form-panel {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.form-group input,
.form-group textarea {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  padding: 1rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  transition: var(--transition-medium);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold-muted);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-submit-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.form-status {
  font-size: 0.85rem;
  font-weight: 400;
  transition: var(--transition-medium);
}

.form-status.success {
  color: #a8dfb0;
}

.form-status.error {
  color: #dfa8a8;
}

/* --- FOOTER --- */
footer {
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  padding: 6rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand .footer-logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 0;
}

.footer-brand .footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

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

.footer-brand p {
  line-height: 1.8;
  font-size: 0.85rem;
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  color: var(--color-gold-muted);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-gold-bright);
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold-muted);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid var(--color-gold-muted);
  padding-bottom: 8px;
}

.newsletter-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: #000;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.newsletter-submit {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-submit svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold-muted);
  transition: var(--transition-medium);
}

.newsletter-submit:hover svg {
  fill: var(--color-gold-bright);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: #000;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--color-text-muted);
  transition: var(--transition-medium);
}

.social-link:hover svg {
  fill: var(--color-gold-muted);
  transform: translateY(-3px);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVE DESIGN (MEDIA QUERIES) --- */

@media (max-width: 1024px) {
  .special-grid,
  .faq-grid,
  .team-grid {
    gap: 2rem;
  }
    .team-grid {
    gap: 2rem;
        grid-template-columns: 1fr !important;
  }
  .menu-grid {
    column-gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  /* Navigation mobile menu */
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-bg-secondary);
    border-left: 1px solid var(--color-border);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  /* Menu item animation when opening */
  .nav-menu.open .nav-link {
    animation: fadeInUp 0.5s ease forwards;
  }
  
  /* Change menu icon to cross when active */
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .nav-cta {
    display: none; /* Hide top right CTAs on mobile */
  }
  
  .nav-menu .btn-appointment {
    display: block;
    margin-top: 1rem;
  }
  
  /* Layout shifts */
  .hero-slider {
    padding-top: 90px;
  }

  .slider-side-col {
    display: none; /* Hide side columns on mobile to fit content */
  }

  .slider-center-area {
    width: 100%;
  }

  .slide {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    justify-content: center;
  }

  .slide-content {
    align-items: center;
    text-align: center;
  }

  .slide-title {
    font-size: clamp(2rem, 8vw, 3rem);
    text-align: center;
    line-height: 1.25;
    margin-bottom: 2.5rem;
  }

  .slide-btn-circle {
    margin-left: 0;
    margin-top: 0;
    width: 110px;
    height: 110px;
  }

  .circle-text {
    font-size: 0.85rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .special-grid,
  .faq-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .special-content,
  .team-content {
    padding-right: 0;
    text-align: center;
  }
  
  .special-image-container img {
    height: 380px;
  }
  
  .faq-image-container {
    height: 380px;
    grid-row: 1; /* Move image to top on mobile */
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
  
  .banner-content {
    padding: 3rem 2rem;
  }

  /* Contact Section mobile overrides */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-info-panel {
    padding-right: 0;
    text-align: center;
  }

  .contact-details-list {
    align-items: center;
  }
  
  .contact-detail-card {
    text-align: left;
    max-width: 400px;
    width: 100%;
  }

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-container {
    padding: 0 1.25rem;
  }
  
  .logo a img {
    height: 42px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .services-tabs {
    gap: 0.6rem;
  }
  
  .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
  }

}

/* ================================================
   MOBILE DRAWER
   ================================================ */

/* --- Drawer panel --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--color-bg-secondary);
  border-left: 1px solid var(--color-border);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

/* --- Drawer backdrop --- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* --- Drawer header (logo + close) --- */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.drawer-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.drawer-close {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-text-muted);
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.drawer-close:hover {
  color: var(--color-gold-bright);
  border-color: var(--color-gold-muted);
}

/* --- Drawer body (scrollable area) --- */
.drawer-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* --- Drawer nav links --- */
.drawer-nav {
  padding: 1.5rem 1.75rem 0.5rem;
}

.drawer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drawer-nav ul li {
  border-bottom: 1px solid var(--color-border);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-drawer.open .drawer-nav ul li {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation for each link */
.mobile-drawer.open .drawer-nav ul li:nth-child(1) { transition-delay: 0.05s; }
.mobile-drawer.open .drawer-nav ul li:nth-child(2) { transition-delay: 0.10s; }
.mobile-drawer.open .drawer-nav ul li:nth-child(3) { transition-delay: 0.15s; }
.mobile-drawer.open .drawer-nav ul li:nth-child(4) { transition-delay: 0.20s; }
.mobile-drawer.open .drawer-nav ul li:nth-child(5) { transition-delay: 0.25s; }

.drawer-link {
  display: block;
  padding: 1.2rem 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.drawer-link:hover,
.drawer-link.active {
  color: var(--color-gold-bright);
  padding-left: 6px;
}

/* --- Drawer footer --- */
.drawer-footer {
  padding: 1.75rem;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

/* --- Body scroll lock when drawer open --- */
body.drawer-open {
  overflow: hidden;
}

/* Hide the old nav-menu on mobile — drawer replaces it */
@media (max-width: 768px) {
  nav .nav-menu {
    display: none !important;
  }
}

/* ================================================
   DRAWER SERVICES ACCORDION
   ================================================ */

.drawer-section-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-muted);
  padding: 1.5rem 1.75rem 0.75rem;
  border-top: 1px solid var(--color-border);
  margin-top: 0.5rem;
}

.drawer-cat {
  border-bottom: 1px solid var(--color-border);
}

/* Category toggle button */
.drawer-cat-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s ease, background 0.2s ease;
  text-align: left;
}

.drawer-cat-toggle:hover {
  color: #000;
  background: rgba(255,255,255,0.03);
}

.drawer-cat-toggle[aria-expanded="true"] {
  color: var(--color-gold-bright);
}

/* Chevron arrow */
.drawer-cat-arrow {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.drawer-cat-toggle[aria-expanded="true"] .drawer-cat-arrow {
  transform: rotate(180deg);
}

/* Collapsible list */
.drawer-cat-list {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0,0,0,0.15);
}

.drawer-cat-list.open {
  max-height: 400px;
}

.drawer-cat-list li {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.drawer-service-link {
  display: block;
  padding: 0.75rem 1.75rem 0.75rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
}

.drawer-service-link:hover {
  color: var(--color-gold-bright);
  padding-left: 2.75rem;
  background: rgba(255,255,255,0.02);
}

/* ================================================
   SERVICE DETAIL PAGE SPECIFIC STYLES
   ================================================ */
.detail-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: flex-start;
  margin-top: 4rem;
}

.detail-page {
  position: relative;
  overflow: hidden;
}

.detail-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(197, 168, 128, 0.12), transparent 42%),
    radial-gradient(circle at bottom right, rgba(197, 168, 128, 0.08), transparent 35%);
  pointer-events: none;
  z-index: 0;
}

.detail-container {
  position: relative;
  z-index: 1;
}

.detail-back-link {
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-size: 0.72rem;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.detail-main-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  margin-bottom: 1.75rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  width: fit-content;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(197, 168, 128, 0.16);
  border-radius: 999px;
  background: rgba(197, 168, 128, 0.08);
}

.detail-meta-row span {
  font-size: 0.78rem;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 999px;
  background: rgba(197, 168, 128, 0.08);
  color: var(--color-gold-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.detail-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 70ch;
}

.detail-benefits-section {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 168, 128, 0.14);
}

.detail-benefits-section h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-muted);
  margin-bottom: 1.25rem;
}

.detail-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}

.detail-benefits-list li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  position: relative;
  padding-left: 24px;
}

.detail-benefits-list li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--color-gold-muted);
  font-size: 1.2rem;
  top: -1px;
}

.booking-panel {
  background: linear-gradient(145deg, rgba(8, 8, 8, 0.95), rgba(13, 13, 13, 0.96));
  border: 1px solid rgba(197, 168, 128, 0.16);
  border-radius: 24px;
  padding: 2.25rem;
  position: sticky;
  top: 120px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.booking-panel-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  color: var(--color-text-light);
}

.booking-panel-subtitle {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-muted);
  margin-bottom: 0.6rem;
}

.booking-panel-note {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 1.4rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.booking-form .form-group label {
  color: rgba(255, 255, 255, 0.72);
}

.booking-form .form-group input {
  border-radius: 14px;
  padding: 0.95rem 1rem;
}

.booking-form .form-group input:focus {
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.16);
}

.booking-submit-btn {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
}

@media (max-width: 992px) {
  .detail-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .booking-panel {
    position: static;
  }
  
  .detail-main-img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .detail-content-area {
    padding: 1.25rem;
  }

  .detail-main-img {
    height: 320px;
  }

  .booking-panel {
    padding: 1.5rem;
  }
}

.form-group label {
    color: #000;
}

.slider-arrow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.2px;
    background-color: rgb(0 0 0 / 45%);
    transition: var(--transition-medium);
}

.prev-arrow::after {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    border-left: 1.2px solid rgb(0 0 0 / 75%);
    border-top: 1.2px solid rgb(0 0 0 / 75%);
    transform: rotate(-45deg);
    transition: var(--transition-medium);
}

.next-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    width: 6px;
    height: 6px;
    border-right: 1.2px solid rgb(0 0 0 / 75%);
    border-top: 1.2px solid rgb(0 0 0 / 75%);
    transform: rotate(45deg);
    transition: var(--transition-medium);
}

.pillars-grid .pillar-card {
    padding: 1rem;;
}