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

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #8b4513;
  margin-bottom: 0;
}

.logo span {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

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

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #8b4513;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  border: none;
  background: transparent;
  z-index: 10000;
  position: relative;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 100px 2rem 2rem;
  background: linear-gradient(135deg, #f5f3f0 0%, #e8e2d8 100%);
  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><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(139,69,19,0.05)"/><stop offset="100%" style="stop-color:rgba(139,69,19,0.1)"/></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23a)"/></svg>')
    repeat;
  opacity: 0.3;
  z-index: 1;
}

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

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: #8b4513;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-image {
  flex: 1;
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Hero Contact Buttons */
.hero-contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-contact-buttons .cta-button {
  flex: 1;
  min-width: 120px;
  text-align: center;
  justify-content: center;
}

/* CTA Button Base Styles */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 15px 30px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* CTA Button Variants */
.cta-button.primary {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.cta-button.secondary {
  background: linear-gradient(135deg, #8b4513 0%, #6b3410 100%);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.cta-button.secondary:hover {
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.4);
}

.cta-button.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.cta-button.whatsapp-btn:hover {
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.cta-button.sms-btn {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.cta-button.sms-btn:hover {
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.cta-button.telegram-btn {
  background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.cta-button.telegram-btn:hover {
  box-shadow: 0 10px 25px rgba(0, 136, 204, 0.4);
}

.cta-button.email-btn {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.cta-button.email-btn:hover {
  box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #fff;
}

.services h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 3rem;
}

.services-note {
  text-align: center;
  background: #f5f3f0;
  padding: 1rem 2rem;
  border-radius: 10px;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: #8b4513;
  border-left: 4px solid #8b4513;
}

/* Time Services */
.time-services {
  margin-bottom: 4rem;
}

.time-services h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #8b4513;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.time-services h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #8b4513;
  border-radius: 2px;
}

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

.time-service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

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

.time-service-card.featured {
  border: 3px solid #8b4513;
  background: linear-gradient(135deg, #f5f3f0 0%, #e8e2d8 100%);
  transform: scale(1.05);
}

.time-service-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #8b4513;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.time-service-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.time-duration {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #8b4513;
  font-weight: 700;
  margin-bottom: 1rem;
}

.time-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #25d366;
  margin-bottom: 2rem;
}

.time-service-card.featured .time-price {
  color: #8b4513;
}

/* Digital Services & Massage Services */
.digital-services,
.massage-services {
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.digital-services h3,
.massage-services h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #8b4513;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.digital-services h3::after,
.massage-services h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #8b4513;
  border-radius: 2px;
}

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

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

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

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

.service-content {
  position: relative;
  z-index: 2;
}

.service-content h3,
.service-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #8b4513;
  margin-bottom: 1rem;
}

.service-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #25d366;
  margin-bottom: 1.5rem;
}

.service-note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Service Buttons */
.service-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

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

.service-btn.view-gallery {
  background: linear-gradient(135deg, #8b4513 0%, #6b3410 100%);
  color: white;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.service-btn.view-gallery:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Service CTA Buttons */
.service-cta-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-cta-buttons .cta-button {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  text-align: center;
  justify-content: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.service-cta-buttons .cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.service-cta-buttons .cta-button:hover::after {
  left: 100%;
}

/* About Section */
.about {
  padding: 100px 0;
  background: #f5f3f0;
}

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

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-text p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.features {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8b4513;
  font-weight: 600;
}

.feature i {
  font-size: 1.2rem;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-buttons .cta-button {
  flex: 1;
  min-width: 140px;
}

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

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Meet Your Therapist Section */
.meet-therapist {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f6f3 0%, #e8e2d8 100%);
  position: relative;
  overflow: hidden;
}

.meet-therapist::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.therapist-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.therapist-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 2rem;
  text-align: left;
}

.therapist-intro h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
  position: relative;
}

.therapist-intro h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #8b4513);
  border-radius: 2px;
}

.therapist-intro p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.therapist-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.credential-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.credential-item i {
  font-size: 1.2rem;
  color: #d4af37;
}

.credential-item span {
  color: #666;
  font-weight: 500;
  font-size: 0.95rem;
}

.therapist-quote {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #d4af37;
  margin-bottom: 2rem;
  position: relative;
}

.therapist-quote::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #d4af37;
  font-family: "Playfair Display", serif;
  opacity: 0.3;
}

.therapist-quote blockquote {
  font-style: italic;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.therapist-quote cite {
  color: #8b4513;
  font-weight: 600;
  font-style: normal;
}

.therapist-contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.therapist-images {
  position: relative;
}

.main-therapist-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}

.therapist-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-therapist-image:hover .therapist-photo {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  text-align: center;
}

.therapist-name {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.therapist-title {
  font-size: 1.1rem;
  opacity: 0.9;
  font-style: italic;
}

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

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

.gallery-image:hover {
  transform: translateY(-5px) scale(1.02);
}

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

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

/* Responsive Design for Meet Therapist */
@media (max-width: 768px) {
  .therapist-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .therapist-text h2 {
    font-size: 2rem;
    text-align: center;
  }

  .therapist-credentials {
    grid-template-columns: 1fr;
  }

  .therapist-contact-buttons {
    justify-content: center;
  }

  .main-therapist-image {
    margin-bottom: 1.5rem;
  }

  .therapist-photo {
    height: 400px;
  }

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

  .gallery-image img {
    height: 200px;
  }
}

/* Professional Info Section */
.professional-info {
  padding: 80px 0;
  background: #fff;
}

.professional-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.conduct-section h2,
.payment-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #8b4513;
  margin-bottom: 2rem;
  text-align: center;
}

.conduct-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conduct-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f5f3f0;
  border-radius: 15px;
  border-left: 4px solid #8b4513;
}

.conduct-item i {
  font-size: 1.5rem;
  color: #8b4513;
}

.conduct-item p {
  color: #666;
  font-size: 1.1rem;
}

.payment-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.payment-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f5f3f0;
  border-radius: 15px;
  border-left: 4px solid #8b4513;
}

.payment-item i {
  font-size: 1.5rem;
  color: #8b4513;
  margin-top: 0.2rem;
}

.payment-item h3 {
  color: #8b4513;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.payment-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: #f5f3f0;
}

.gallery h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 3rem;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
}

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

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

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-cta h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #8b4513;
  margin-bottom: 1.5rem;
}

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

.gallery-contact-buttons .cta-button {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: #fff;
}

.testimonials h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 3rem;
}

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

.testimonial {
  background: #f5f3f0;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-content p {
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

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

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  color: #8b4513;
  margin-bottom: 0.2rem;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: #f5f3f0;
  border-radius: 20px;
}

.testimonials-cta h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #8b4513;
  margin-bottom: 1.5rem;
}

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

.testimonials-contact-buttons .cta-button {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #8b4513 0%, #6b3410 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.cta-buttons .cta-button {
  min-width: 160px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: #f5f3f0;
}

.contact h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 3rem;
}

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

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  font-size: 1.5rem;
  color: #8b4513;
  margin-top: 0.2rem;
}

.contact-item h3 {
  color: #8b4513;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
  line-height: 1.6;
}

.contact-link {
  color: #8b4513;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #6b3410;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
  color: #8b4513;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #8b4513;
}

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

.social-links a {
  color: #ccc;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #8b4513;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #ccc;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

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

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
}

.close:hover {
  color: #8b4513;
}

#modalTitle {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #8b4513;
  margin-bottom: 2rem;
  text-align: center;
}

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

.modal-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

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

.time-service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.time-service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.time-service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.time-service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.time-service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.time-service-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border: none;
    background: transparent;
    z-index: 10001;
    position: relative;
  }

  .nav-menu {
    position: fixed !important;
    top: 70px !important;
    left: -100% !important;
    width: 100% !important;
    height: calc(100vh - 70px) !important;
    background-color: white !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 2rem 0 !important;
    z-index: 10000 !important;
    transition: left 0.3s ease !important;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15) !important;
    overflow-y: auto !important;
    margin: 0 !important;
    list-style: none !important;
    gap: 0 !important;
    display: flex !important;
  }

  .nav-menu.active {
    left: 0 !important;
    border: 3px solid red !important; /* DEBUG: Remove this after testing */
    background-color: yellow !important; /* DEBUG: Remove this after testing */
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .nav-menu a {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
  }

  .nav-menu a:hover {
    background-color: #f8f8f8;
    color: #8b4513;
  }

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

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

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

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 1rem 2rem;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }

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

  .hero-image {
    max-width: 100%;
  }

  .hero-image img {
    transform: none;
  }

  .hero-contact-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-contact-buttons .cta-button {
    min-width: auto;
    width: 100%;
  }

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

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .features {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .time-service-card.featured {
    transform: none;
  }

  .service-cta-buttons {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gallery-contact-buttons,
  .testimonials-contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gallery-contact-buttons .cta-button,
  .testimonials-contact-buttons .cta-button {
    width: 100%;
    max-width: 280px;
  }

  .services-note {
    padding: 1rem;
    font-size: 1rem;
  }

  .time-duration {
    font-size: 1.3rem;
  }

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

  .digital-services h3,
  .massage-services h3,
  .time-services h3 {
    font-size: 1.5rem;
  }

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

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

  .services {
    padding: 60px 0;
  }

  .services h2 {
    font-size: 2rem;
  }

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

  .whatsapp-float a {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

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

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

  .time-service-card {
    padding: 1.5rem;
  }

  .time-price {
    font-size: 1.8rem;
  }

  .gallery-cta,
  .testimonials-cta {
    padding: 1.5rem;
  }

  .gallery-cta h3,
  .testimonials-cta h3 {
    font-size: 1.5rem;
  }

  .services-note {
    font-size: 0.9rem;
  }

  .service-cta-buttons .cta-button {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

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

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

  .modal-content {
    margin: 10% auto;
    width: 95%;
    padding: 1.5rem;
  }

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

  .nav-container {
    padding: 1rem;
  }

  .logo h1 {
    font-size: 1.5rem;
  }
}

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

.booking-modal-content {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  margin: 5% auto;
  padding: 2.5rem;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.booking-close {
  color: #aaa;
  float: right;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-close:hover,
.booking-close:focus {
  color: #8b4513;
  transform: scale(1.1);
}

.booking-modal h2 {
  color: #8b4513;
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  text-align: center;
  border-bottom: 3px solid #f4c2a1;
  padding-bottom: 1rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b4513;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
  transform: translateY(-1px);
}

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

.booking-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.booking-buttons .cta-button {
  flex: 1;
  min-width: 140px;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.book-service-btn,
.book-now-btn {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  border: none;
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  min-width: 140px;
  justify-content: center;
}

.book-service-btn:hover,
.book-now-btn:hover {
  background: linear-gradient(135deg, #a0522d 0%, #8b4513 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

/* Responsive Design for Booking Form */
@media (max-width: 768px) {
  .booking-modal-content {
    margin: 5% auto;
    padding: 2rem;
    width: 95%;
  }

  .booking-modal h2 {
    font-size: 1.8rem;
  }

  .booking-buttons {
    flex-direction: column;
  }

  .booking-buttons .cta-button {
    min-width: 100%;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem;
  }
}

/* Enhanced CTA Button Styles */
.cta-button.primary {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  color: white;
  border: none;
}

.cta-button.secondary {
  background: transparent;
  color: #8b4513;
  border: 2px solid #8b4513;
}

.cta-button.secondary:hover {
  background: #8b4513;
  color: white;
}

/* Service Button Layout Improvements */
.service-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.service-buttons .cta-button,
.service-buttons .service-btn {
  flex: 1;
  min-width: 120px;
}

@media (max-width: 480px) {
  .service-buttons {
    flex-direction: column;
  }

  .service-buttons .cta-button,
  .service-buttons .service-btn {
    min-width: 100%;
  }
}
