/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #f5f5f5;
  background: 
    linear-gradient(135deg, #1a1015 0%, #2d1810 25%, #1a0f0a 50%, #2d1810 75%, #1a1015 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Ambient background effects */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 183, 77, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjYwIiBoZWlnaHQ9IjYwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDEwIDAgTCAwIDAgTCAwIDEwIiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMjU1LDE4Myw3NywwLjAzKSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIiAvPjwvc3ZnPg==') repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

/* Language Selector */
.language-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  padding: 8px;
  border-radius: 25px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lang-btn {
  padding: 6px 12px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  background: rgba(255, 183, 77, 0.2);
  color: #ffb74d;
}

.lang-btn.active {
  background: linear-gradient(135deg, #ffb74d, #ff8a65);
  color: white;
  box-shadow: 0 2px 8px rgba(255, 183, 77, 0.4);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 16, 21, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%),
    url('images/shutterstock_402722113.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="zen-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,5 Q35,15 25,25 Q15,35 25,45 Q35,35 25,25 Q15,15 25,5" stroke="rgba(255,183,77,0.08)" fill="none" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23zen-pattern)"/></svg>') repeat;
  opacity: 0.4;
  animation: float 25s ease-in-out infinite;
}

/* Tantra symbols floating in background */
.tantra-symbols {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.symbol {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: floatSymbol 15s ease-in-out infinite;
}

.symbol-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.symbol-2 {
  top: 25%;
  right: 15%;
  animation-delay: 3s;
}

.symbol-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 6s;
}

.symbol-4 {
  bottom: 20%;
  right: 25%;
  animation-delay: 9s;
}

@keyframes floatSymbol {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  25% { 
    transform: translateY(-15px) rotate(5deg);
    opacity: 0.15;
  }
  50% { 
    transform: translateY(-25px) rotate(-3deg);
    opacity: 0.2;
  }
  75% { 
    transform: translateY(-10px) rotate(8deg);
    opacity: 0.15;
  }
}

/* Logo styling */
.logo-container {
  margin-bottom: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.logo-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gentle-glow 4s ease-in-out infinite;
}

.logo-symbol svg {
  filter: drop-shadow(0 0 15px rgba(255, 183, 77, 0.4));
  transition: all 0.3s ease;
}

.logo-symbol:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 25px rgba(255, 183, 77, 0.7));
}

@keyframes gentle-glow {
  0%, 100% { 
    filter: drop-shadow(0 0 15px rgba(255, 183, 77, 0.4));
  }
  50% { 
    filter: drop-shadow(0 0 25px rgba(255, 183, 77, 0.6));
  }
}

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

.logo-subtitle {
  font-size: 0.9rem;
  color: #ffb74d;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  opacity: 0.8;
}

.hero-elements {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.element {
  font-size: 1.5rem;
  opacity: 0.6;
  animation: gentle-float 4s ease-in-out infinite;
}

.element-1 { animation-delay: 0s; }
.element-2 { animation-delay: 1.3s; }
.element-3 { animation-delay: 2.6s; }

@keyframes gentle-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

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

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  margin-bottom: 0;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 183, 77, 0.4);
  letter-spacing: 3px;
  background: linear-gradient(135deg, #ffffff, #ffb74d, #d4a574);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 200;
  margin-bottom: 0.5rem;
  opacity: 0.9;
  letter-spacing: 2px;
  color: #ffb74d;
  font-style: italic;
}

.hero-location {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.8);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  transition: all 0.4s ease;
  position: relative;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #ffb74d;
  background: rgba(255, 183, 77, 0.1);
  box-shadow: 0 4px 15px rgba(255, 183, 77, 0.2);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffb74d, #ff8a65);
  transition: width 0.4s ease;
  border-radius: 1px;
}

.nav-links a:hover::after {
  width: 80%;
}

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

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
  background: rgba(0, 0, 0, 0.02);
}

.section:nth-child(even) {
  background: 
    rgba(0, 0, 0, 0.05),
    radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.02) 0%, transparent 70%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: gentle-pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(255, 183, 77, 0.4));
}

@keyframes gentle-pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.8;
  }
  50% { 
    transform: scale(1.05);
    opacity: 1;
  }
}

.warm-elements {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.warm-element {
  font-size: 1.2rem;
  opacity: 0.6;
  animation: twinkle 3s ease-in-out infinite;
}

.warm-element:nth-child(1) { animation-delay: 0s; }
.warm-element:nth-child(2) { animation-delay: 1s; }
.warm-element:nth-child(3) { animation-delay: 2s; }

@keyframes twinkle {
  0%, 100% { 
    opacity: 0.6;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.1);
  }
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: #ffb74d;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 183, 77, 0.3);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #d4a574, transparent, #d4a574);
  border-radius: 2px;
}

/* Section divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 3rem;
  gap: 1rem;
}

.divider-line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, #ffb74d, transparent);
}

.divider-symbol {
  color: #ffb74d;
  font-size: 1.2rem;
  opacity: 0.8;
  animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* About Section */
.about-content {
  display: grid;
  gap: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.profile-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.zen-quote {
  background: 
    linear-gradient(135deg, rgba(255, 183, 77, 0.15), rgba(212, 165, 116, 0.08)),
    rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 183, 77, 0.2);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.zen-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffb74d, transparent);
}

.zen-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #ffb74d;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  position: relative;
  padding: 0 2rem;
}

.zen-quote blockquote::before {
  content: '"';
  font-size: 4rem;
  color: rgba(255, 183, 77, 0.3);
  position: absolute;
  left: -1rem;
  top: -1rem;
  font-family: 'Playfair Display', serif;
}

.zen-quote blockquote::after {
  content: '"';
  font-size: 4rem;
  color: rgba(255, 183, 77, 0.3);
  position: absolute;
  right: -1rem;
  bottom: -2rem;
  font-family: 'Playfair Display', serif;
}

.quote-symbol {
  font-size: 4rem;
  color: #ffb74d;
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
  line-height: 0.5;
  margin-bottom: 1rem;
  float: left;
  margin-right: 1rem;
  margin-top: 0.5rem;
}

.profile-details p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  text-align: justify;
  font-weight: 300;
}

.tantra-quote {
  background: 
    linear-gradient(135deg, rgba(255, 183, 77, 0.1), rgba(212, 165, 116, 0.05)),
    rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #ffb74d;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.quote-icon {
  font-size: 2rem;
  opacity: 0.8;
  animation: gentle-spin 10s linear infinite;
}

@keyframes gentle-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.tantra-quote p {
  font-style: italic;
  font-size: 1.1rem;
  color: #ffb74d;
  margin: 0;
  text-align: center;
  font-weight: 400;
}

.profile-stats {
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(212, 165, 116, 0.1)),
    rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-label {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.stat-value {
  font-weight: 500;
  color: #ffb74d;
  font-size: 1rem;
}

/* Gallery Section */
.gallery-section {
  background: 
    radial-gradient(ellipse at center, rgba(212, 165, 116, 0.03) 0%, transparent 70%),
    rgba(0, 0, 0, 0.02);
  padding: 6rem 0;
}

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

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 165, 116, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.1) saturate(1.1);
  transition: filter 0.3s ease;
}

.carousel-slide:hover img {
  filter: brightness(1) contrast(1.2) saturate(1.2);
}

.carousel-btn:hover {
  background: rgba(255, 183, 77, 0.2);
  border-color: #ffb74d;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 183, 77, 0.3);
  color: #ffb74d;
  font-size: 2rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background: rgba(255, 183, 77, 0.6);
  transform: scale(1.2);
}

.indicator.active {
  background: #ffb74d;
  box-shadow: 0 0 10px rgba(255, 183, 77, 0.5);
}

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

.service-card {
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(255, 183, 77, 0.08)),
    rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 183, 77, 0.2);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.service-card.premium {
  border-color: rgba(255, 183, 77, 0.3);
}

.service-card.luxury {
  border-color: rgba(255, 215, 0, 0.4);
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 215, 0, 0.1)),
    rgba(0, 0, 0, 0.5);
}

.service-card.ultimate {
  border-color: rgba(255, 20, 147, 0.4);
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 20, 147, 0.1)),
    rgba(0, 0, 0, 0.6);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffb74d, #ff8a65, #ffb74d);
}

.service-card.luxury::before {
  background: linear-gradient(90deg, #ffd700, #ffb347, #ffd700);
}

.service-card.ultimate::before {
  background: linear-gradient(90deg, #ff1493, #ff69b4, #ff1493);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 183, 77, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 183, 77, 0.4);
}

.service-card.luxury:hover {
  border-color: rgba(255, 215, 0, 0.6);
}

.service-card.ultimate:hover {
  border-color: rgba(255, 20, 147, 0.6);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #ffb74d;
  margin-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 183, 77, 0.3);
}

.service-card.luxury h3 {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.service-card.ultimate h3 {
  color: #ff69b4;
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.service-subtitle {
  font-style: italic;
  color: rgba(255, 183, 77, 0.8);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.service-card.luxury .service-subtitle {
  color: rgba(255, 215, 0, 0.8);
}

.service-card.ultimate .service-subtitle {
  color: rgba(255, 105, 180, 0.8);
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Pricing Styles */
.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.pricing.single {
  justify-content: center;
}

.price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 183, 77, 0.2);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  min-width: 80px;
  transition: all 0.3s ease;
}

.price-item:hover {
  background: rgba(255, 183, 77, 0.1);
  border-color: rgba(255, 183, 77, 0.4);
  transform: translateY(-2px);
}

.price-item.featured {
  background: rgba(255, 183, 77, 0.15);
  border-color: rgba(255, 183, 77, 0.4);
  min-width: 120px;
}

.luxury .price-item {
  border-color: rgba(255, 215, 0, 0.2);
}

.luxury .price-item:hover,
.luxury .price-item.featured {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
}

.ultimate .price-item {
  border-color: rgba(255, 20, 147, 0.2);
}

.ultimate .price-item:hover,
.ultimate .price-item.featured {
  background: rgba(255, 20, 147, 0.1);
  border-color: rgba(255, 20, 147, 0.4);
}

.duration {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.price {
  font-size: 1.4rem;
  color: #ffb74d;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255, 183, 77, 0.3);
}

.luxury .price {
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.ultimate .price {
  color: #ff69b4;
  text-shadow: 0 0 8px rgba(255, 20, 147, 0.3);
}

/* Specific service image backgrounds */
.premiere-caresse {
  background-image: url('images/hero-tantra-couple.jpg');
}

.mysteres-tantra {
  background-image: url('images/AdobeStock_18312078.jpeg');
}

.orchidee-noire {
  background-image: url('images/massage-therapy-hands.jpg');
}

.or-desir {
  background-image: url('images/spa-zen-stones.jpg');
}

.divine-jouissance {
  background-image: url('images/shutterstock_402722113.webp');
}

/* Hours Section */
.hours-content {
  display: flex;
  justify-content: center;
}

.availability-card {
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(212, 165, 116, 0.1)),
    rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  padding: 3.5rem;
  border-radius: 25px;
  text-align: center;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-width: 450px;
  width: 100%;
}

.availability-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #ffb74d;
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 0 0 15px rgba(255, 183, 77, 0.3);
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 183, 77, 0.2);
  transition: all 0.3s ease;
}

.schedule-item:hover {
  background: rgba(255, 183, 77, 0.1);
  border-color: rgba(255, 183, 77, 0.4);
  transform: translateY(-2px);
}

.days {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.hours {
  font-size: 1.2rem;
  color: #ffb74d;
  font-weight: 500;
  text-shadow: 0 0 8px rgba(255, 183, 77, 0.3);
}

.hours-info {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffb74d;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 10px rgba(255, 183, 77, 0.3);
}

.appointment-note {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
}

/* Contact Section */
.contact-content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(212, 165, 116, 0.1)),
    rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 25px;
  text-align: center;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 165, 116, 0.3);
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #ffb74d;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-shadow: 0 0 10px rgba(255, 183, 77, 0.3);
}

.phone-link {
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffb74d;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-shadow: 0 0 10px rgba(255, 183, 77, 0.3);
}

.phone-link:hover {
  color: #ff8a65;
  transform: scale(1.05);
  text-shadow: 0 0 15px rgba(255, 183, 77, 0.5);
}

.location-info {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.region-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 300;
}

.contact-note {
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(212, 165, 116, 0.05)),
    rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-note p {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  line-height: 1.7;
  font-weight: 300;
}

/* Footer */
.footer {
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 16, 21, 0.8)),
    rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0;
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 183, 77, 0.2);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffb74d, transparent);
}

.footer-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-decorative {
  margin-bottom: 1rem;
}

.footer-symbol {
  color: #ffb74d;
  font-size: 1.8rem;
  opacity: 0.6;
  animation: gentle-pulse 4s ease-in-out infinite;
}

.footer-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.footer-elements {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-elements span {
  color: rgba(255, 183, 77, 0.4);
  font-size: 1rem;
  animation: twinkle 3s ease-in-out infinite;
}

.footer-elements span:nth-child(1) { animation-delay: 0s; }
.footer-elements span:nth-child(2) { animation-delay: 1s; }
.footer-elements span:nth-child(3) { animation-delay: 2s; }

/* Responsive Design */
@media (max-width: 768px) {
  .language-selector {
    top: 15px;
    right: 15px;
    padding: 6px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .nav-links a {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .profile-info {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .profile-stats {
    order: -1;
  }
  
  .services-content {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .carousel-slide img {
    height: 400px;
  }
  
  .carousel-btn {
    font-size: 1.5rem;
    padding: 0.8rem 1rem;
  }
  
  .carousel-btn.prev {
    left: 10px;
  }
  
  .carousel-btn.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  .service-card,
  .availability-card,
  .contact-card,
  .profile-stats {
    padding: 2rem;
  }
  
  .contact-note {
    padding: 2rem;
  }
  
  .carousel-slide img {
    height: 300px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Enhanced animations */
/* Service Images */
.service-image {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  margin-bottom: 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.service-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(255, 183, 77, 0.2));
  transition: all 0.4s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.service-card:hover .service-image::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(255, 183, 77, 0.3));
}

/* Specific service image backgrounds */
.massage-personalized {
  background-image: url('images/hero-tantra-couple.jpg');
}

.massage-tantra {
  background-image: url('images/AdobeStock_18312078.jpeg');
}

.massage-relaxation {
  background-image: url('images/massage-therapy-hands.jpg');
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.4);
  }
}

.service-card,
.contact-card,
.availability-card,
.profile-stats {
  animation: fadeInUp 0.8s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* Subtle glow effects */
.phone-link:hover,
.hero-title {
  animation: glow 2s ease-in-out infinite;
}

/* Print styles */
@media print {
  .language-selector,
  .navbar,
  .carousel-btn,
  .carousel-indicators {
    display: none;
  }
  
  .hero,
  .section,
  .footer {
    background: white !important;
    color: black !important;
  }
  
  .carousel-slide img {
    height: auto;
    max-height: 300px;
  }
}