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

:root {
  --primary-gold: #C5A880;
  --accent-gold: #E5C38C;
  --dark-bg: #0A0A0A;
  --card-bg: #121212;
  --card-border: #2C2720;
  --text-light: #F5F5F7;
  --text-muted: #A0A0A5;
  --glass-bg: rgba(18, 18, 18, 0.8);
  --glass-border: rgba(197, 168, 128, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --glow-shadow: 0 0 20px rgba(197, 168, 128, 0.2);
}

/* Base resets & styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
  line-height: 1.6;
}

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

a:hover {
  color: var(--primary-gold);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--card-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #FFF;
}

p {
  color: var(--text-muted);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--primary-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-title span {
  font-style: italic;
  color: var(--primary-gold);
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
  color: #0A0A0A;
  border: none;
  box-shadow: var(--glow-shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: rgba(197, 168, 128, 0.1);
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .container {
  height: 60px;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFF;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-gold);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--primary-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-gold);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFF;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(197, 168, 128, 0.08) 0%, rgba(10, 10, 10, 0) 60%),
    linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)),
    url('assets/hero_bg.png') center/cover no-repeat;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 50px;
  color: var(--primary-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-badge i {
  font-size: 0.7rem;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
  font-style: italic;
  font-family: var(--font-heading);
  color: var(--primary-gold);
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Trust Bar */
.trust-bar {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 30px 0;
}

.trust-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.25rem;
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.trust-info h4 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
}

.trust-info p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: var(--glow-shadow);
}

.service-card:hover::after {
  opacity: 1;
}

.service-img-wrapper {
  height: 340px;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-title {
  color: var(--primary-gold);
}

.service-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.service-meta span i {
  color: var(--primary-gold);
}

.service-meta span.price {
  font-weight: 700;
  color: var(--accent-gold);
}

.service-desc {
  font-size: 0.9rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-action {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.service-link:hover {
  gap: 12px;
  color: #FFF;
}

/* Why Choose Us Section */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  aspect-ratio: 4/5;
  background: url('assets/about_img.png') center/cover no-repeat;
  box-shadow: var(--glow-shadow);
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 10px solid var(--primary-gold);
  margin: 20px;
  opacity: 0.25;
  pointer-events: none;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.about-content h2 span {
  color: var(--primary-gold);
  font-style: italic;
}

.about-content p {
  margin-bottom: 30px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.feature-text h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.85rem;
}

/* Therapists Section */
.therapist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.therapist-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.therapist-card:hover {
  border-color: rgba(197, 168, 128, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--glow-shadow);
}

.therapist-img-wrapper {
  height: 500px;
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
}

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

.therapist-card:hover .therapist-img-wrapper img {
  transform: scale(1.05);
}

.therapist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(10, 10, 10, 0.95));
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.therapist-info {
  width: 100%;
}

.therapist-name {
  font-size: 1.3rem;
  color: #FFF;
  margin-bottom: 4px;
}

.therapist-role {
  color: var(--primary-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.therapist-stars {
  color: var(--accent-gold);
  font-size: 0.75rem;
}

.therapist-certifications {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.therapist-certifications p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.therapist-certifications p strong {
  color: var(--primary-gold);
}

/* Testimonial Section */
.testimonials {
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.95)), url('assets/testimonial_bg.png') center/cover no-repeat fixed;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 20px;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 5rem;
  color: rgba(197, 168, 128, 0.15);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
}

.testimonial-client {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  background-color: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-weight: 700;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFF;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--card-border);
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFF;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--primary-gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: var(--primary-gold);
  font-size: 0.8rem;
}

.faq-item.active {
  border-color: rgba(197, 168, 128, 0.3);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: rgba(197, 168, 128, 0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Contact & Booking Section */
.booking-section {
  background: radial-gradient(circle at 10% 90%, rgba(197, 168, 128, 0.06) 0%, rgba(10, 10, 10, 0) 50%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(197, 168, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  border: 1px solid rgba(197, 168, 128, 0.2);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-meta h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-meta p {
  font-size: 0.9rem;
}

.contact-meta a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-meta a:hover {
  color: var(--primary-gold);
}

/* Form Styles */
.booking-form-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  width: 100%;
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C5A880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

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

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-light);
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border: 1px solid var(--primary-gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.radio-custom::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary-gold);
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition-smooth);
}

.radio-label input[type="radio"]:checked+.radio-custom::after {
  transform: scale(1);
}

.radio-label input[type="radio"]:checked+.radio-custom {
  background: rgba(197, 168, 128, 0.1);
  box-shadow: 0 0 8px rgba(197, 168, 128, 0.3);
}

/* Popup / Booking Success Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--card-bg);
  border: 1px solid var(--primary-gold);
  width: 90%;
  max-width: 480px;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--glow-shadow);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(197, 168, 128, 0.1);
  color: var(--primary-gold);
  font-size: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  animation: modalPulse 2s infinite;
}

@keyframes modalPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(197, 168, 128, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0);
  }
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.modal-text {
  font-size: 0.95rem;
  margin-bottom: 30px;
  color: var(--text-muted);
}

/* Service Detail Modal */
.detail-modal-card {
  max-width: 600px;
  text-align: left;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.25rem;
  transition: var(--transition-smooth);
}

.close-btn:hover {
  color: var(--primary-gold);
}

.detail-modal-header {
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.detail-modal-price {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-top: 6px;
}

.detail-modal-body p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.detail-modal-body ul {
  list-style: none;
  margin-bottom: 24px;
}

.detail-modal-body ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.detail-modal-body ul li i {
  color: var(--primary-gold);
  font-size: 0.8rem;
}

/* Footer Section */
footer {
  background: #050505;
  border-top: 1px solid var(--card-border);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--primary-gold);
  color: #0A0A0A;
  border-color: var(--primary-gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-gold);
  margin-bottom: 24px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hours-list span {
  float: right;
  color: var(--text-light);
}

.footer-col-contact p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-col-contact p i {
  color: var(--primary-gold);
  margin-right: 10px;
  width: 16px;
}

.footer-col-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-col-contact a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
  color: var(--primary-gold);
}

/* Animations for Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .about-split {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

  .section-title {
    font-size: 2rem;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--card-bg);
    border-left: 1px solid var(--card-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    transition: var(--transition-smooth);
    z-index: 1000;
  }

  nav.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-bottom: 40px;
  }

  .nav-links a {
    font-size: 1.1rem;
    display: block;
    width: 100%;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-img {
    aspect-ratio: 4/3;
    max-height: 350px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .booking-form-wrapper {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .trust-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Language Selector Styles */
.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.lang-btn i {
  font-size: 0.95rem;
}

.lang-btn i.fa-chevron-down {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.lang-selector.active .lang-btn i.fa-chevron-down {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  list-style: none;
  padding: 6px 0;
  min-width: 140px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 1010;
  animation: fadeInDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lang-selector.active .lang-dropdown {
  display: block;
}

.lang-dropdown li a {
  display: block;
  padding: 8px 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  text-align: left;
}

.lang-dropdown li a:hover,
.lang-dropdown li a.active {
  background: rgba(197, 168, 128, 0.1);
  color: var(--primary-gold);
}

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

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

/* Mobile responsive language selector placement adjustments */
@media (max-width: 768px) {
  .lang-selector {
    margin-bottom: 20px;
    width: 100%;
  }

  .lang-btn {
    width: 100%;
    justify-content: space-between;
  }

  .lang-dropdown {
    position: static;
    margin-top: 8px;
    width: 100%;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.02);
  }
}

/* Welcome Language Modal Styles */
.welcome-lang-card {
  text-align: center;
  max-width: 450px !important;
  padding: 40px 30px !important;
}

.welcome-lang-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.welcome-lang-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: #FFF;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.welcome-lang-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-top: 4px;
}

.lang-welcome-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.lang-welcome-btn {
  flex: 1;
  padding: 12px 24px;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .lang-welcome-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 0px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform 0.3s ease, background-color 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.08);
  color: #FFFFFF;
}

.whatsapp-float i {
  transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
  transform: rotate(10deg) scale(1.1);
}

.whatsapp-tooltip {
  position: absolute;
  right: 76px;
  background-color: rgba(18, 18, 18, 0.95);
  color: var(--text-light);
  border: 1px solid var(--primary-gold);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 0px rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 0px rgba(37, 211, 102, 0);
  }
}

/* Mobile responsive styling for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 70px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}