* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto flex", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: #ded6c7;
}

/* //Floating whatsapp icon */
#whatsapp .wtsapp{
  position: fixed;
  transform: all .5s ease;
  background-color: #25d366;
  display: block;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  border-right: none;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  bottom: 70px;
  right: 40px;
  border: 0;
  z-index: 100;
  width: 50px;
  height: 50px;
  line-height: 50px;
}
#whatsapp .wtsapp::before{
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}
#whatsapp .wtsapp:focus{
  border: none;
  outline: none;
}

@keyframes pulse-border {
  0%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1); opacity: 1;}
  100%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5); opacity: 0;}
}

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

.instagram .container a {
  margin-top: 20px;
}

.container h1{
  font-family: "zilla slab", serif;
}

.container h2{
  font-family: "zilla slab", serif;
}

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

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8b4513;
}

.logo span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: #8b4513;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8b4513;
  transition: width 0.3s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.book-btn {
  background: #8B4513;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(57, 139, 19, 0.3);
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(57, 139, 19, 0.4);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding-top: 80px;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.mobile-nav-link {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #8b4513;
}

.mobile-book-btn {
  margin-top: 1rem;
}

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

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
  position: relative;
}

.hero-content img {
  height: 550px;
  width: 100%;
  margin-top: 0;
  object-fit: cover;
  filter: brightness(80%);
}

.hero-text {
  position: absolute;
  top: 50%;
  padding: 0 0 0 5%;
  z-index: 10;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: "zilla Slab";
  line-height: 1.2;
  margin-bottom: 1rem;
  background: rgba( 255, 255, 255, 0.95) ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.2rem;
  color: rgba( 255, 255, 255, 0.95);
  font-weight: 400;
  margin-bottom: 2rem;
}

.cta-btn {
  background: #8B4513;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(53, 139, 19, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 139, 19, 0.4);
}

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

.hero-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f1f3f4' fill-opacity='0.4'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #333;
}

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

.service-card {
  background: #eeebe8;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

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

.service-image {
  height: 250px;
  overflow: hidden;
}

.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 {
  padding: 2rem;
  text-align: center;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

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

.service-btn {
  background: #8b4513;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.view-more-container {
  text-align: center;
  margin-top: 3rem;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #114d29, #104726);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(53, 139, 19, 0.3);
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(63, 139, 19, 0.4);
}

.view-more-btn i {
  transition: transform 0.3s ease;
}

.view-more-btn:hover i {
  transform: translateX(5px);
}

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

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

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

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #333;
}

.story-card {
  background: transparent;
  padding: 2rem;
  border-radius: 15px;
}

.story-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #8b4513;
}

.story-card p {
  color: #494949;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 300;
}

/* Consultation Section */
.consultation {
  padding: 100px 0;
  background: white;
}

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

.consultation-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

.consultation-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.consultation-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.feature i {
  color: #8b4513;
  font-size: 1.2rem;
  width: 20px;
}

.consultation-btn {
  background: #8B4513;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(47, 139, 19, 0.3);
}

.consultation-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(53, 139, 19, 0.4);
}

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

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

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

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

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #8b4513;
}

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

.contact-card i {
  color: #8b4513;
  margin-right: 0.5rem;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
}

.map-container {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #666;
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #8b4513;
}

/* Instagram Section */
/* Instagram Section */
.instagram {
    padding: 100px 0;
    background: white;
    position: relative;
}

.instagram-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.instagram-carousel::-webkit-scrollbar {
    display: none;
}

.instagram-item {
    flex: 0 0 300px;
    height: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.instagram-item:hover .play-overlay {
    background: rgba(139, 69, 19, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

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

.carousel-btn {
    background: #8B4513;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #8B4513;
}

#modalVideo {
    width: 100%;
    height: auto;
    max-height: 80vh;
    border-radius: 10px;
}

.instagram-link {
  display: flex;
  color: #8b4513;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s ease;
  gap: 0.5rem;
}

.instagram-link i {
  font-size: 2rem;
}

.instagram-link:hover {
  color: #a0522d;
}

/* Treatments Page */
.treatments-hero {
  padding: 150px 0 100px;
  background: #F5EBE1;
  text-align: center;
}

.treatments-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.treatments-hero p {
  font-size: 1.2rem;
  color: #666;
}

.all-treatments {
  padding: 100px 0;
  background: #ded6c7;
}



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

/* Footer */
/* Footer */
footer{
      width: 100%;
      height: 100px;
      background: #757473;
      color: #fffafa;
      padding: 5px 10% 20px 10%;
  }
  .footer_content{
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  .logo2 {
      width: 90px;
      height: 90px;
      border-radius: 50%;
    }
  .location h2{
      font-size: 24px;
      font-weight: 500;
  font-family: "zilla slab", serif;
      padding-bottom: 5px;
      
  }
  .location p{
      line-height: 1;
      font-size: 12px;
  }
  .footer_content p{
      font-size: 16px;
      font-family: 'roboto flex';
  }

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .book-btn {
    display: none;
  }

  .hero {
  padding-top: 10px;
  min-height: 80vh;
}

/* .hero-content {
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
  position: relative;
} */

.hero-content img {
  height: 450px;
  width: 100%;
  margin-top: 70px;
  filter: brightness(80%);
}

.hero-text {
  top: 50%;
}

.hero-text h1 {
  color: #c6975d;
}


.hero-text p {
  font-size: 1.1rem;
  color: #fcfcfc;
  font-weight: 400;
  margin-bottom: 2rem;
}

.cta-btn {
  padding: 10px 25px;
  font-size: 1rem;
}


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

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

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

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

  .contact-info {
    grid-template-columns: 1fr;
  }

  .instagram-slide {
    min-width: 250px;
    height: 250px;
  }

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

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

   footer{
          padding: 20px 4% 20px 4%;
      }
  
      .location h2{
          font-size: 10px;
      }
      .location p{
          line-height: 1.2;
          font-size: 4px;
      }
      .footer_content p{
          font-size: 10px;
      }
      .logo2 {
          width: 80px;
          height: 80px;
          border-radius: 50%;
        }
}

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

  .hero-text h1 {
    font-size: 1.6rem;
  }

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

  .instagram-slide {
    min-width: 200px;
    height: 200px;
  }
}

/* Mobile Menu Animation */
.mobile-menu.active {
  display: block;
}

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

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

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