/* Font Face Declarations */
@font-face {
  font-family: "Inter";
  src: url("/public/fonts/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/public/fonts/Inter_18pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/public/fonts/Inter_18pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/public/fonts/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/public/fonts/PlayfairDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/public/fonts/PlayfairDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/public/fonts/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #2c1810;
  overflow-x: hidden;
  background-color: #ffffff;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Color Variables */
:root {
  --primary-gold: #d4af37;
  --dark-gold: #b8941f;
  --dark-brown: #2c1810;
  --warm-white: #ffffff;
  --cream-white: #fefcf7;
  --light-cream: #f9f7f4;
  --text-gray: #6b7280;
  --border-light: #e5e7eb;
  --accent-pink: #f4e6e1;
}

/* Typography */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark-brown);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  flex-shrink: 0;
}

.logo {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
}

.logo-link {
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.header.scrolled .logo {
  height: 50px;
}

.nav-section {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-brown);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--dark-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.nav-link.active {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transform: translateY(-1px);
}

.nav-link.active:hover {
  background: linear-gradient(135deg, var(--dark-gold) 0%, var(--primary-gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  justify-self: end;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark-brown);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Enhanced Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.9) 0%,
    rgba(44, 24, 16, 0.85) 30%,
    rgba(44, 24, 16, 0.8) 70%,
    rgba(44, 24, 16, 0.85) 100%
  );
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20px 30px, rgba(212, 175, 55, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(212, 175, 55, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  min-height: calc(100vh - 100px);
  gap: 3rem;
}

/* Enhanced Hero Text */
.hero-text {
  max-width: 900px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1rem;
}

.title-line {
  display: block;
  animation: slideInLeft 1s ease-out 0.6s both;
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInRight 1s ease-out 0.8s both;
  position: relative;
}

.title-highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  animation: expandWidth 1.5s ease-out 1.2s both;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-out 1s both;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.9);
}

/* Enhanced CTA Section */
.hero-cta-section {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-cta.primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

.hero-cta.primary:hover::before {
  left: 100%;
}

.hero-cta.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

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

.hero-cta.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-icon {
  font-size: 18px;
}

.cta-arrow {
  transition: transform 0.3s ease;
}

.hero-cta:hover .cta-arrow {
  transform: translateX(5px);
}

/* Enhanced Rating Section */
.hero-rating {
  animation: fadeInUp 1s ease-out 1.6s both;
}

.rating-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.5rem;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.star-icon {
  width: 20px;
  height: 20px;
  fill: var(--primary-gold);
  stroke: none;
  animation: starTwinkle 2s ease-in-out infinite;
}

.star-icon:nth-child(1) {
  animation-delay: 0s;
}
.star-icon:nth-child(2) {
  animation-delay: 0.2s;
}
.star-icon:nth-child(3) {
  animation-delay: 0.4s;
}
.star-icon:nth-child(4) {
  animation-delay: 0.6s;
}
.star-icon:nth-child(5) {
  animation-delay: 0.8s;
}

.rating-number {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary-gold);
  margin-left: 0.8rem;
}

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

.rating-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 0.8rem 0;
}

.rating-badges {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.rating-badge {
  padding: 0.4rem 0.8rem;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  font-size: 0.75rem;
  color: var(--primary-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  animation: fadeIn 2s ease-out 2s both;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0%;
  }
  to {
    width: 80%;
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

@keyframes scrollWheel {
  0% {
    top: 8px;
    opacity: 1;
  }
  50% {
    top: 16px;
    opacity: 0.5;
  }
  100% {
    top: 8px;
    opacity: 1;
  }
}

/* Services Preview Section */
.services-preview {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--cream-white) 100%);
  position: relative;
}

.services-preview::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.4'%3E%3Cpath d='M50 50 Q80 30 120 60 Q140 80 160 50'/%3E%3Cpath d='M60 70 Q90 50 130 80 Q150 100 170 70'/%3E%3Cellipse cx='75' cy='45' rx='8' ry='4' transform='rotate(30 75 45)'/%3E%3Cellipse cx='95' cy='40' rx='6' ry='3' transform='rotate(-20 95 40)'/%3E%3Cellipse cx='110' cy='55' rx='7' ry='4' transform='rotate(45 110 55)'/%3E%3Cellipse cx='130' cy='50' rx='8' ry='4' transform='rotate(-10 130 50)'/%3E%3Cellipse cx='145' cy='65' rx='6' ry='3' transform='rotate(60 145 65)'/%3E%3Cellipse cx='85' cy='75' rx='7' ry='4' transform='rotate(20 85 75)'/%3E%3Cellipse cx='105' cy='85' rx='8' ry='4' transform='rotate(-30 105 85)'/%3E%3Cellipse cx='125' cy='90' rx='6' ry='3' transform='rotate(40 125 90)'/%3E%3Cellipse cx='145' cy='95' rx='7' ry='4' transform='rotate(-15 145 95)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  animation: floatDecoration 12s ease-in-out infinite;
}

.services-preview::after {
  content: "";
  position: absolute;
  bottom: 15%;
  left: 3%;
  width: 180px;
  height: 180px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.35'%3E%3Cpath d='M150 150 Q120 130 80 160 Q60 180 40 150'/%3E%3Cpath d='M140 130 Q110 110 70 140 Q50 160 30 130'/%3E%3Cellipse cx='125' cy='155' rx='8' ry='4' transform='rotate(-30 125 155)'/%3E%3Cellipse cx='105' cy='160' rx='6' ry='3' transform='rotate(20 105 160)'/%3E%3Cellipse cx='90' cy='145' rx='7' ry='4' transform='rotate(-45 90 145)'/%3E%3Cellipse cx='70' cy='150' rx='8' ry='4' transform='rotate(10 70 150)'/%3E%3Cellipse cx='55' cy='135' rx='6' ry='3' transform='rotate(-60 55 135)'/%3E%3Cellipse cx='115' cy='125' rx='7' ry='4' transform='rotate(-20 115 125)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(15deg);
  z-index: 0;
  animation: floatDecoration 15s ease-in-out infinite;
}

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

.text-content {
  max-width: 600px;
}

.text-content .section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.text-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.text-link:hover {
  color: var(--dark-gold);
}

.image-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 10;
}

.floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.testimonial-bubble {
  position: absolute;
  top: -20px;
  right: -40px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 250px;
  z-index: 2;
}

.testimonial-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--dark-brown);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  text-transform: uppercase;
}

.discount-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--primary-gold);
  color: white;
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.discount-text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.discount-amount {
  font-size: 18px;
  font-weight: 700;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: white;
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 2%;
  width: 220px;
  height: 220px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.3'%3E%3Cpath d='M40 40 Q70 20 110 50 Q130 70 150 40'/%3E%3Cpath d='M50 60 Q80 40 120 70 Q140 90 160 60'/%3E%3Cpath d='M45 80 Q75 60 115 90 Q135 110 155 80'/%3E%3Cellipse cx='65' cy='35' rx='8' ry='4' transform='rotate(30 65 35)'/%3E%3Cellipse cx='85' cy='30' rx='6' ry='3' transform='rotate(-20 85 30)'/%3E%3Cellipse cx='100' cy='45' rx='7' ry='4' transform='rotate(45 100 45)'/%3E%3Cellipse cx='120' cy='40' rx='8' ry='4' transform='rotate(-10 120 40)'/%3E%3Cellipse cx='135' cy='55' rx='6' ry='3' transform='rotate(60 135 55)'/%3E%3Cellipse cx='75' cy='65' rx='7' ry='4' transform='rotate(20 75 65)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-10deg);
  z-index: 0;
  animation: floatDecoration 18s ease-in-out infinite;
}

.services::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 190px;
  height: 190px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.38'%3E%3Cpath d='M160 160 Q130 140 90 170 Q70 190 50 160'/%3E%3Cpath d='M150 140 Q120 120 80 150'/%3E%3Cellipse cx='135' cy='165' rx='8' ry='4' transform='rotate(-30 135 165)'/%3E%3Cellipse cx='115' cy='170' rx='6' ry='3' transform='rotate(20 115 170)'/%3E%3Cellipse cx='100' cy='155' rx='7' ry='4' transform='rotate(-45 100 155)'/%3E%3Cellipse cx='80' cy='160' rx='8' ry='4' transform='rotate(10 80 160)'/%3E%3Cellipse cx='65' cy='145' rx='6' ry='3' transform='rotate(-60 65 145)'/%3E%3Cellipse cx='125' cy='135' rx='7' ry='4' transform='rotate(-20 125 135)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(20deg);
  z-index: 0;
  animation: floatDecoration 14s ease-in-out infinite;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-item:nth-child(1) {
  grid-column: 1 / 3;
}

.service-item:nth-child(2) {
  grid-column: 3 / 5;
}

.service-item:nth-child(3) {
  grid-column: 5 / 7;
}

.service-item:nth-child(4) {
  grid-column: 2 / 4;
}

.service-item:nth-child(5) {
  grid-column: 4 / 6;
}

.service-item {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--cream-white);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-gold);
}

.service-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.service-icon-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  object-position: center;
  transition: all 0.3s ease;
  max-width: 120px;
  max-height: 120px;
  display: block;
  margin: 0 auto;
}

.service-item:hover .service-icon {
  background: rgba(212, 175, 55, 0.25);
  transform: translateY(-5px);
}

.service-item:hover .service-icon-img {
  transform: scale(1.1);
}

.service-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--dark-gold);
}

.service-benefits {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-benefits li {
  padding: 6px 0;
  color: var(--text-gray);
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
}

.service-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 0.9rem;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--light-cream) 100%);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 8%;
  width: 170px;
  height: 170px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.35'%3E%3Cpath d='M50 50 Q80 30 120 60 Q140 80 160 50'/%3E%3Cpath d='M60 70 Q90 50 130 80'/%3E%3Cellipse cx='75' cy='45' rx='8' ry='4' transform='rotate(30 75 45)'/%3E%3Cellipse cx='95' cy='40' rx='6' ry='3' transform='rotate(-20 95 40)'/%3E%3Cellipse cx='110' cy='55' rx='7' ry='4' transform='rotate(45 110 55)'/%3E%3Cellipse cx='130' cy='50' rx='8' ry='4' transform='rotate(-10 130 50)'/%3E%3Cellipse cx='145' cy='65' rx='6' ry='3' transform='rotate(60 145 65)'/%3E%3Cellipse cx='85' cy='75' rx='7' ry='4' transform='rotate(20 85 75)'/%3E%3Cellipse cx='105' cy='85' rx='8' ry='4' transform='rotate(-30 105 85)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-25deg);
  z-index: 0;
  animation: floatDecoration 16s ease-in-out infinite;
}

.about::after {
  content: "";
  position: absolute;
  top: 25%;
  left: 5%;
  width: 160px;
  height: 160px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.32'%3E%3Cpath d='M150 150 Q120 130 80 160 Q60 180 40 150'/%3E%3Cpath d='M140 130 Q110 110 70 140'/%3E%3Cellipse cx='125' cy='155' rx='8' ry='4' transform='rotate(-30 125 155)'/%3E%3Cellipse cx='105' cy='160' rx='6' ry='3' transform='rotate(20 105 160)'/%3E%3Cellipse cx='90' cy='145' rx='7' ry='4' transform='rotate(-45 90 145)'/%3E%3Cellipse cx='70' cy='150' rx='8' ry='4' transform='rotate(10 70 150)'/%3E%3Cellipse cx='55' cy='135' rx='6' ry='3' transform='rotate(-60 55 135)'/%3E%3Cellipse cx='115' cy='125' rx='7' ry='4' transform='rotate(-20 115 125)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(30deg);
  z-index: 0;
  animation: floatDecoration 20s ease-in-out infinite;
}

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

.about-text .section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-element {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.3);
  z-index: 3;
}

.lotus-icon {
  width: 40px;
  height: 40px;
  color: var(--primary-gold);
}

/* Studio Gallery Section */
.studio-gallery {
  margin-top: 6rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

.gallery-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 24, 16, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

/* Certificates Section */
.certificates-section {
  margin-top: 6rem;
}

.certificates-header {
  text-align: center;
  margin-bottom: 3rem;
}

.certificates-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

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

.certificate-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.certificate-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-gold);
}

.certificate-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
}

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

.certificate-item:hover .certificate-image img {
  transform: scale(1.05);
}

.certificate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 24, 16, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.certificate-item:hover .certificate-overlay {
  opacity: 1;
}

.certificate-icon {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.certificate-info {
  padding: 2rem;
}

.certificate-info h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.certificate-info p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.certificate-year {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-gold);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--cream-white) 0%, var(--light-cream) 100%);
  position: relative;
}

.reviews::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 2%;
  width: 195px;
  height: 195px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.24'%3E%3Cpath d='M40 40 Q70 20 110 50 Q130 70 150 40'/%3E%3Cpath d='M50 60 Q80 40 120 70 Q140 90 160 60'/%3E%3Cellipse cx='65' cy='35' rx='8' ry='4' transform='rotate(30 65 35)'/%3E%3Cellipse cx='85' cy='30' rx='6' ry='3' transform='rotate(-20 85 30)'/%3E%3Cellipse cx='100' cy='45' rx='7' ry='4' transform='rotate(45 100 45)'/%3E%3Cellipse cx='120' cy='40' rx='8' ry='4' transform='rotate(-10 120 40)'/%3E%3Cellipse cx='135' cy='55' rx='6' ry='3' transform='rotate(60 135 55)'/%3E%3Cellipse cx='75' cy='65' rx='7' ry='4' transform='rotate(20 75 65)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(15deg);
  z-index: 0;
  animation: floatDecoration 15s ease-in-out infinite;
}

.reviews::after {
  content: "";
  position: absolute;
  bottom: 12%;
  right: 4%;
  width: 180px;
  height: 180px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.27'%3E%3Cpath d='M160 160 Q130 140 90 170 Q70 190 50 160'/%3E%3Cpath d='M150 140 Q120 120 80 150'/%3E%3Cellipse cx='135' cy='165' rx='8' ry='4' transform='rotate(-30 135 165)'/%3E%3Cellipse cx='115' cy='170' rx='6' ry='3' transform='rotate(20 115 170)'/%3E%3Cellipse cx='100' cy='155' rx='7' ry='4' transform='rotate(-45 100 155)'/%3E%3Cellipse cx='80' cy='160' rx='8' ry='4' transform='rotate(10 80 160)'/%3E%3Cellipse cx='65' cy='145' rx='6' ry='3' transform='rotate(-60 65 145)'/%3E%3Cellipse cx='125' cy='135' rx='7' ry='4' transform='rotate(-20 125 135)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-18deg);
  z-index: 0;
  animation: floatDecoration 12s ease-in-out infinite;
}

.reviews-header {
  text-align: center;
  margin-bottom: 5rem;
}

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

.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-gold);
}

.review-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.review-stars .star-icon {
  width: 18px;
  height: 18px;
  fill: var(--primary-gold);
  stroke: none;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 0.3rem;
}

.author-date {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.reviews-cta {
  text-align: center;
  padding: 3rem 0;
}

.reviews-cta-text {
  font-size: 1.2rem;
  color: var(--dark-brown);
  margin-bottom: 2rem;
  font-weight: 500;
}

.reviews-cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--primary-gold);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.reviews-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  background: var(--dark-gold);
}

/* Prices Section */
.prices {
  padding: 6rem 0;
  background: white;
  position: relative;
}

.prices::before {
  content: "";
  position: absolute;
  top: 12%;
  right: 6%;
  width: 180px;
  height: 180px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.15'%3E%3Cpath d='M40 40 Q70 20 110 50 Q130 70 150 40'/%3E%3Cpath d='M50 60 Q80 40 120 70 Q140 90 160 60'/%3E%3Cellipse cx='65' cy='35' rx='8' ry='4' transform='rotate(30 65 35)'/%3E%3Cellipse cx='85' cy='30' rx='6' ry='3' transform='rotate(-20 85 30)'/%3E%3Cellipse cx='100' cy='45' rx='7' ry='4' transform='rotate(45 100 45)'/%3E%3Cellipse cx='120' cy='40' rx='8' ry='4' transform='rotate(-10 120 40)'/%3E%3Cellipse cx='135' cy='55' rx='6' ry='3' transform='rotate(60 135 55)'/%3E%3Cellipse cx='75' cy='65' rx='7' ry='4' transform='rotate(20 75 65)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-15deg);
  z-index: 0;
  animation: floatDecoration 14s ease-in-out infinite;
}

.prices::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 4%;
  width: 170px;
  height: 170px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.12'%3E%3Cpath d='M160 160 Q130 140 90 170 Q70 190 50 160'/%3E%3Cpath d='M150 140 Q120 120 80 150'/%3E%3Cellipse cx='135' cy='165' rx='8' ry='4' transform='rotate(-30 135 165)'/%3E%3Cellipse cx='115' cy='170' rx='6' ry='3' transform='rotate(20 115 170)'/%3E%3Cellipse cx='100' cy='155' rx='7' ry='4' transform='rotate(-45 100 155)'/%3E%3Cellipse cx='80' cy='160' rx='8' ry='4' transform='rotate(10 80 160)'/%3E%3Cellipse cx='65' cy='145' rx='6' ry='3' transform='rotate(-60 65 145)'/%3E%3Cellipse cx='125' cy='135' rx='7' ry='4' transform='rotate(-20 125 135)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(20deg);
  z-index: 0;
  animation: floatDecoration 18s ease-in-out infinite;
}

.prices-header {
  text-align: center;
  margin-bottom: 5rem;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.price-item:nth-child(1) {
  grid-column: 1 / 3;
}

.price-item:nth-child(2) {
  grid-column: 3 / 5;
}

.price-item:nth-child(3) {
  grid-column: 5 / 7;
}

.price-item:nth-child(4) {
  grid-column: 2 / 4;
}

.price-item:nth-child(5) {
  grid-column: 4 / 6;
}

.price-item {
  text-align: center;
  padding: 2rem;
  background: var(--cream-white);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-gold);
}

.price-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-gold);
}

.price-list {
  margin-bottom: 2rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.price-row:last-child {
  border-bottom: none;
}

.duration {
  font-weight: 500;
  color: var(--dark-brown);
  font-size: 1rem;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-gold);
}

.price-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-gold);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.price-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  background: var(--dark-gold);
}

.prices-note {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--light-cream);
  border-radius: 15px;
  border-left: 4px solid var(--primary-gold);
}

.prices-note p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark-brown) 0%, rgba(44, 24, 16, 0.95) 100%);
  color: white;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 15%;
  right: 8%;
  width: 170px;
  height: 170px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.4'%3E%3Cpath d='M50 50 Q80 30 120 60 Q140 80 160 50'/%3E%3Cpath d='M60 70 Q90 50 130 80'/%3E%3Cellipse cx='75' cy='45' rx='8' ry='4' transform='rotate(30 75 45)'/%3E%3Cellipse cx='95' cy='40' rx='6' ry='3' transform='rotate(-20 95 40)'/%3E%3Cellipse cx='110' cy='55' rx='7' ry='4' transform='rotate(45 110 55)'/%3E%3Cellipse cx='130' cy='50' rx='8' ry='4' transform='rotate(-10 130 50)'/%3E%3Cellipse cx='145' cy='65' rx='6' ry='3' transform='rotate(60 145 65)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(40deg);
  z-index: 0;
  animation: floatDecoration 14s ease-in-out infinite;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: 18%;
  left: 5%;
  width: 155px;
  height: 155px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.35'%3E%3Cpath d='M150 150 Q120 130 80 160 Q60 180 40 150'/%3E%3Cpath d='M140 130 Q110 110 70 140'/%3E%3Cellipse cx='125' cy='155' rx='8' ry='4' transform='rotate(-30 125 155)'/%3E%3Cellipse cx='105' cy='160' rx='6' ry='3' transform='rotate(20 105 160)'/%3E%3Cellipse cx='90' cy='145' rx='7' ry='4' transform='rotate(-45 90 145)'/%3E%3Cellipse cx='70' cy='150' rx='8' ry='4' transform='rotate(10 70 150)'/%3E%3Cellipse cx='55' cy='135' rx='6' ry='3' transform='rotate(-60 55 135)'/%3E%3Cellipse cx='115' cy='125' rx='7' ry='4' transform='rotate(-20 115 125)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-35deg);
  z-index: 0;
  animation: floatDecoration 16s ease-in-out infinite;
}

.contact-header {
  text-align: center;
  margin-bottom: 5rem;
}

.contact .section-title {
  color: white;
}

.contact .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.info-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  text-align: left;
}

.info-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  text-align: left;
}

.info-content a {
  color: var(--primary-gold);
  text-decoration: none;
}

.map-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.contact-map {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 15px 15px 0 0;
}

.map-address {
  padding: 1.5rem;
  text-align: center;
}

.map-address h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.map-address p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.9rem;
}

.booking-widget-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.widget-header {
  text-align: center;
  margin-bottom: 2rem;
}

.widget-header h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.widget-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.online-booking-section {
  text-align: center;
  padding: 0.1rem 0;
  margin-bottom: 0;
}

.online-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 20px 40px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  border: none;
  cursor: pointer;
  min-width: 250px;
  justify-content: center;
}

.online-booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--dark-gold) 0%, var(--primary-gold) 100%);
}

.booking-icon {
  font-size: 20px;
}

.booking-text {
  font-weight: 600;
}

.booking-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.online-booking-btn:hover .booking-arrow {
  transform: translateX(5px);
}

.booking-info {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-style: italic;
}

.contact-options-fallback {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.booking-tip {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--primary-gold);
}

.booking-tip-icon {
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.booking-tip-title {
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.booking-tip-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

.booking-tip-text strong {
  color: var(--primary-gold);
}

.booking-tip-text small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.treatment-overview {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.treatment-overview h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.treatment-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

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

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

.treatment-name {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.treatment-price {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Custom Map Marker Styles */
.custom-marker {
  background: none;
  border: none;
}

.marker-pin {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: var(--primary-gold);
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.marker-pin::after {
  content: "";
  width: 24px;
  height: 24px;
  margin: 3px 0 0 3px;
  background: white;
  position: absolute;
  border-radius: 50%;
}

.marker-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  font-size: 14px;
  z-index: 1;
}

.map-popup {
  text-align: center;
  font-family: "Inter", sans-serif;
  min-width: 200px;
}

.map-popup h3 {
  margin: 0 0 8px 0;
  color: var(--dark-brown);
  font-size: 16px;
  font-weight: 600;
}

.map-popup p {
  margin: 0 0 12px 0;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.4;
}

.directions-link {
  display: inline-block;
  padding: 8px 16px;
  background: var(--primary-gold);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.directions-link:hover {
  background: var(--dark-gold);
  transform: translateY(-1px);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
}

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

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
  pointer-events: none;
}

.modal-nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.modal-nav-btn:hover {
  background: rgba(212, 175, 55, 0.8);
  transform: scale(1.1);
}

.modal-nav-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* FAQ Section - ENHANCED RESPONSIVE FIXES */
.faq {
  padding: 6rem 0;
  background: white;
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 3%;
  width: 200px;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.15'%3E%3Cpath d='M40 40 Q70 20 110 50 Q130 70 150 40'/%3E%3Cpath d='M50 60 Q80 40 120 70 Q140 90 160 60'/%3E%3Cellipse cx='65' cy='35' rx='8' ry='4' transform='rotate(30 65 35)'/%3E%3Cellipse cx='85' cy='30' rx='6' ry='3' transform='rotate(-20 85 30)'/%3E%3Cellipse cx='100' cy='45' rx='7' ry='4' transform='rotate(45 100 45)'/%3E%3Cellipse cx='120' cy='40' rx='8' ry='4' transform='rotate(-10 120 40)'/%3E%3Cellipse cx='135' cy='55' rx='6' ry='3' transform='rotate(60 135 55)'/%3E%3Cellipse cx='75' cy='65' rx='7' ry='4' transform='rotate(20 75 65)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-8deg);
  z-index: 0;
  animation: floatDecoration 17s ease-in-out infinite;
}

.faq::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 5%;
  width: 180px;
  height: 180px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.12'%3E%3Cpath d='M160 160 Q130 140 90 170 Q70 190 50 160'/%3E%3Cpath d='M150 140 Q120 120 80 150'/%3E%3Cellipse cx='135' cy='165' rx='8' ry='4' transform='rotate(-30 135 165)'/%3E%3Cellipse cx='115' cy='170' rx='6' ry='3' transform='rotate(20 115 170)'/%3E%3Cellipse cx='100' cy='155' rx='7' ry='4' transform='rotate(-45 100 155)'/%3E%3Cellipse cx='80' cy='160' rx='8' ry='4' transform='rotate(10 80 160)'/%3E%3Cellipse cx='65' cy='145' rx='6' ry='3' transform='rotate(-60 65 145)'/%3E%3Cellipse cx='125' cy='135' rx='7' ry='4' transform='rotate(-20 125 135)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(22deg);
  z-index: 0;
  animation: floatDecoration 19s ease-in-out infinite;
}

.faq-header {
  text-align: center;
  margin-bottom: 5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--cream-white);
  border-radius: 15px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 80px;
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin: 0;
  flex: 1;
  padding-right: 1rem;
  line-height: 1.3;
}

.faq-icon {
  width: 24px;
  height: 24px;
  stroke: var(--primary-gold);
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 2rem 2rem;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

.faq-answer a {
  color: var(--primary-gold);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--dark-brown);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.1'%3E%3Cpath d='M40 40 Q70 20 110 50 Q130 70 150 40'/%3E%3Cpath d='M50 60 Q80 40 120 70 Q140 90 160 60'/%3E%3Cellipse cx='65' cy='35' rx='8' ry='4' transform='rotate(30 65 35)'/%3E%3Cellipse cx='85' cy='30' rx='6' ry='3' transform='rotate(-20 85 30)'/%3E%3Cellipse cx='100' cy='45' rx='7' ry='4' transform='rotate(45 100 45)'/%3E%3Cellipse cx='120' cy='40' rx='8' ry='4' transform='rotate(-10 120 40)'/%3E%3Cellipse cx='135' cy='55' rx='6' ry='3' transform='rotate(60 135 55)'/%3E%3Cellipse cx='75' cy='65' rx='7' ry='4' transform='rotate(20 75 65)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-15deg);
  z-index: 0;
  animation: floatDecoration 20s ease-in-out infinite;
}

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

.footer-section h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-logo-link {
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-logo-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

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

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.social-links svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* Cookie Settings Button */
.cookie-settings-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-brown) 0%, rgba(44, 24, 16, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  padding: 0;
  animation: slideInUp 0.5s ease-out;
}

.cookie-banner-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 300px;
}

.cookie-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.cookie-text-content {
  flex: 1;
}

.cookie-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.5rem 0;
}

.cookie-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-size: 0.95rem;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cookie-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.cookie-btn-outline {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.cookie-btn-outline:hover {
  background: var(--primary-gold);
  color: white;
  transform: translateY(-1px);
}

.btn-icon {
  font-size: 16px;
}

/* Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.cookie-modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border-light);
}

.cookie-modal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  color: var(--text-gray);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.cookie-modal-body {
  padding: 2rem;
  background: white;
}

.cookie-info-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--light-cream);
  border-radius: 10px;
}

.cookie-info-section h3 {
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

.cookie-info-section p {
  color: var(--text-gray);
  line-height: 1.6;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-category {
  margin-bottom: 2rem;
  background: white;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--light-cream);
  border-radius: 10px;
  border: 1px solid var(--border-light);
}

.cookie-category-info {
  flex: 1;
}

.cookie-category-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.cookie-category-description {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.cookie-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cookie-toggle input[type="checkbox"] {
  display: none;
}

.toggle-label {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  cursor: pointer;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-label .toggle-slider {
  background-color: var(--primary-gold);
}

input:checked + .toggle-label .toggle-slider:before {
  transform: translateX(26px);
}

input:disabled + .toggle-label .toggle-slider {
  background-color: var(--primary-gold);
  opacity: 0.7;
  cursor: not-allowed;
}

input:disabled + .toggle-label {
  cursor: not-allowed;
}

.toggle-status {
  font-size: 0.8rem;
  color: var(--text-gray);
  text-align: center;
}

.cookie-modal-footer {
  padding: 1rem 2rem 2rem;
  text-align: right;
}

.cookie-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.cookie-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.cookie-link {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
}

.cookie-link:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

/* Animations */
@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

/* Mobile fixes for services-preview section */
@media (max-width: 768px) {
  .content-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial-bubble {
    position: static;
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 100%;
    transform: none;
  }

  .discount-badge {
    position: static;
    margin-top: 1rem;
    display: inline-block;
    transform: none;
  }

  .image-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .floating-element {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .lotus-icon {
    width: 30px;
    height: 30px;
  }

  .booking-widget-container {
   background: rgba(255, 255, 255, 0.1);
   border-radius: 20px;
   padding: 0.5rem;
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   display: flex;
   flex-direction: column;
   gap: 0;
  }
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .header-container {
    padding: 0 30px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .content-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .text-content {
    max-width: 100%;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .prices-grid,
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .price-item:nth-child(1),
  .price-item:nth-child(2),
  .price-item:nth-child(3),
  .price-item:nth-child(4),
  .price-item:nth-child(5),
  .service-item:nth-child(1),
  .service-item:nth-child(2),
  .service-item:nth-child(3),
  .service-item:nth-child(4),
  .service-item:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 992px) {
  .nav-section {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-light);
    z-index: 1000;
  }

  .nav-section.active {
    display: flex;
  }

  .nav-link {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 30px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

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

  .hero-cta {
    padding: 14px 28px;
    font-size: 15px;
  }

  .rating-container {
    padding: 1.5rem;
  }

  .rating-stars {
    gap: 0.3rem;
  }

  .star-icon {
    width: 18px;
    height: 18px;
  }

  .rating-number {
    font-size: 1.2rem;
    margin-left: 0.6rem;
  }

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

  .rating-badge {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
  }

  .scroll-text {
    font-size: 0.75rem;
  }

  /* Enhanced FAQ Responsive Fixes */
  .faq-question {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    min-height: auto;
    padding: 1.5rem;
  }

  .faq-question h3 {
    font-size: 1.1rem;
    padding-right: 0;
    order: 1;
    width: 100%;
  }

  .faq-icon {
    order: 2;
    align-self: center;
    margin-top: 0.5rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .hero-cta-section {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta {
    width: 100%;
    text-align: center;
  }

  .reviews-cta-text {
    font-size: 1.1rem;
  }

  .reviews-cta-button {
    padding: 14px 35px;
    font-size: 15px;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-icon {
    margin-bottom: 1rem;
  }

  .info-content h3 {
    text-align: center;
  }

  .info-content p {
    text-align: center;
  }

  .map-address h4 {
    font-size: 1rem;
  }

  .map-address p {
    font-size: 0.85rem;
  }

  .online-booking-btn {
    padding: 16px 32px;
    font-size: 16px;
  }

  .booking-tip {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .booking-tip-icon {
    margin-bottom: 0.5rem;
  }

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

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

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

  .footer-section h4 {
    font-size: 1.2rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-links-list a {
    font-size: 0.9rem;
  }

  /* Enhanced FAQ Mobile Fixes */
  .faq-question {
    padding: 1.2rem;
    flex-direction: row;
    align-items: center;
  }

  .faq-question h3 {
    font-size: 1rem;
    line-height: 1.4;
    padding-right: 1rem;
    order: 1;
  }

  .faq-icon {
    order: 2;
    margin-top: 0;
    width: 20px;
    height: 20px;
  }

  .faq-answer p {
    padding: 0 1.2rem 1.2rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Cookie Banner Mobile */
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .cookie-banner-text {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: auto;
  }

  .cookie-banner-actions {
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    justify-content: center;
  }

  /* Cookie Modal Mobile */
  .cookie-modal {
    padding: 1rem;
  }

  .cookie-modal-content {
    max-height: 95vh;
  }

  .cookie-modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .cookie-modal-body {
    padding: 1.5rem;
  }

  .cookie-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
  }

  .cookie-modal-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .cookie-category-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .cookie-toggle {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }

.logo {
  height: 60px;
  width: auto;
  transition: all 0.3s ease;
}

  .header-container {
    padding: 0 20px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .section-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

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

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);

  }

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

  .rating-container {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .rating-number {
    font-size: 1.1rem;
  }

  .rating-text {
    font-size: 0.8rem;
  }

  .rating-badge {
    font-size: 0.65rem;
  }

  .scroll-text {
    display: none;
  }

  /* FAQ Ultra Mobile */
  .faq-question {
    padding: 1rem;
  }

  .faq-question h3 {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }

  .faq-answer p {
    padding: 0 1rem 1rem;
    font-size: 0.85rem;
  }

  /* Cookie Banner Ultra Mobile */
  .cookie-banner-content {
    padding: 1rem;
  }

  .cookie-title {
    font-size: 1.1rem;
  }

  .cookie-description {
    font-size: 0.9rem;
  }

  .cookie-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}
