/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
  line-height: 1.6;
  font-family: "roboto flex", sans-serif;
  background: var(--colorbody);
}

:root {
  --colorfooter: #936045;
  --colorHeader: #c6975d;
  --colorbody: #ded6c7;
  --bodylight: #faf5eb;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* topbar section */
.topbar {
  display: flex;
  position: absolute;
  background-color: var(--colorHeader);
  width: 100%;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px 5px 10px;
}
.topleft {
  padding-left: 70px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.topleft .material-symbols-outlined {
  font-size: 25px;
  font-weight: 600;
  color: rgb(255, 255, 255);
}
.topleft p {
  color: rgb(255, 255, 255);
  padding-right: 30px;
  padding-left: 5px;
  font-size: 14px;
  font-family: "gotham";
}
.topright {
  padding: 0 40px 0 0;
}
.topright i {
  font-size: 25px;
  color: rgb(255, 255, 255);
  padding: 0 5px 0 5px;
  cursor: pointer;
  transition: 0.6s ease-in-out;
}

.topright i:hover {
  color: #0f0f0f;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 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(73, 139, 19, 0.3);
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(73, 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;
}

/* Breadcrumb */
.breadcrumb {
  padding: 10px 40px;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #777;
  margin-top: 110px;
}

/* Hero Section */
.hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 800px;
  height: 500px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-info {
  position: absolute;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  max-width: 300px;
  text-align: center;
}

.treatment-info h1 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 10px;
}

.treatment-info .subtitle {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.treatment-info .duration {
  font-size: 14px;
  color: #777;
}

/* Treatment Description */
.treatment-description {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  padding: 0 20px;
}

.treatment-description p {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
}

.treatment-description a {
  text-decoration: underline;
  font-size: 18px;
}

.book-button {
  margin-top: 30px;
}

/* Treatment Experience */
.treatment-experience {
  display: flex;
  width: 100%;
  margin: 60px auto;
  padding: 0 40px;
  background: var(--bodylight);
}

.experience-content {
  flex: 1;
  padding: 0 50px;
}

.experience-content h2 {
  font-size: 30px;
  font-weight: 600;
  font-family: "zilla slab", serif;
  margin-bottom: 20px;
  color: #333;
}

.experience-content p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}

.experience-video {
  flex: 1;
}

.video-container {
  position: relative;
  width: 100%;
  height: 400px;
}

.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-exosomes {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 90px;
}

.about-exosomes h2 {
  font-size: 24px;
  font-weight: 500;
  font-family: "zilla slab", serif;
  margin-bottom: 20px;
  color: #333;
}

.about-exosomes p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}

.about-exosomes ul {
  list-style-type: disc;
  padding-left: 20px;
}

.about-exosomes li {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.about-exosomes li::marker {
  color: #333;
}

.Ext-exosome {
  width: 100%;
  margin: 60px auto;
  padding: 0 70px;
  background: var(--bodylight);
}

.Ext-exosome h2 {
  font-size: 24px;
  font-weight: 500;
  font-family: "zilla slab", serif;
  margin-bottom: 20px;
  margin-top: 10px;
  color: #333;
}

.Ext-exosome p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}

.Ext-exosome span {
  font-weight: 500;
}

/* Benefits */
.benefits {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 90px;
}

.benefits h2 {
  font-size: 24px;
  font-weight: 500;
  font-family: "zilla slab", serif;
  margin-bottom: 20px;
  color: #333;
}

.benefits ul {
  list-style-type: disc;
  padding-left: 20px;
}

.benefits li {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.benefits li::marker {
  color: #333;
}

/* Testimonial */
.testimonial {
  width: 100%;
  margin: 60px auto;
  padding: 10px 70px;
  text-align: center;
  background: var(--bodylight);
}

.testimonial blockquote {
  font-style: italic;
  font-weight: 300;
  padding: 50px 140px;
  font-size: 18px;
  line-height: 1.8;
}

.testimonial cite {
  display: block;
  margin-top: 20px;
  font-style: 300;
  font-size: 16px;
  color: #777;
}

/* Pre and Post Care & FAQ */
.care,
.faq {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 140px;
}

.care h2,
.faq h2 {
  font-size: 24px;
  font-weight: 500;
  font-family: "zilla slab", serif;
  margin-bottom: 30px;
  color: #333;
}

.accordion_item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header h3 {
  font-size: 16px;
  font-weight: normal;
}

.accordion_content {
  padding: 5px 0;
  line-height: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.accordion_text {
  font-size: 16px;
  color: #555;
  font-weight: 300;
}

.accordion-header.active .plus {
  transform: rotate(45deg);
}

.accordion-header.active + .accordion_content {
  max-height: 600px;
}

.plus {
  font-size: 20px;
  color: #777;
  transition: transform 0.5s ease-in-out;
}

/* Pricing */
.pricing {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.pricing h2 {
  font-size: 24px;
  font-weight: 500;
  font-family: "zilla slab", serif;
  margin-bottom: 10px;
  color: #333;
}

.pricing p {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 200;
}

.appointment {
  padding: 0.5rem 1.5rem;
  background: #8B4513;
  border-radius: 25px;
  width: 50%;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}
.appointment:hover {
  background: #619345;
}
.appointment a {
  color: #f1efef;
}

/* 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: "montserrat", sans-serif;
}

/* Responsive Design */

/* For tablets (width between 768px and 1024px) */
@media (max-width: 1024px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }

  header {
    flex-wrap: wrap;
    padding: 5px 10px;
  }

  .nav_menu ul {
    flex-direction: column;
    text-align: center;
  }

  .nav_menu ul li a {
    padding: 10px 0;
  }
}
@media (max-width: 768px) {
  body {
    position: relative;
  }
  .topbar {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .book-btn {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  .logo img {
    width: 80px;
    height: 80px;
  }
  button {
    display: none;
  }

  .hero-image {
    height: 300px;
    width: 400px;
  }

  .treatment-info {
    position: relative;
    right: auto;
    max-width: 100%;
    margin-top: -20px;
  }

  .treatment-experience {
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 0 5px;
  }
  .experience-content {
    padding: 0 20px;
    margin-bottom: 10px;
  }
  .experience-content h2 {
    text-align: center;
  }

  .about-exosomes {
    padding: 0 5px;
    margin: 0 5px;
  }

  .Ext-exosome {
    padding: 0 30px;
  }

  .benefits {
    padding: 0 30px;
  }

  .testimonial blockquote {
    padding: 20px 0;
    font-size: 16px;
    line-height: 1.2;
  }

  .care,
  .faq {
    padding: 0 70px;
  }

  .appointment a {
    font-size: 16px;
    font-weight: 400;
  }

  footer {
    padding: 20px 4% 20px 4%;
    margin-top: -10%;
  }

  .location h2 {
    font-size: 10px;
  }
  .location p {
    line-height: 1.2;
    font-size: 4px;
  }
  .footer_content p {
    font-size: 10px;
  }
  .logo2 {
    width: 80px;
    height: 70px;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .hero-image {
    height: 300px;
  }

  .treatment-info {
    padding: 20px;
  }

  .treatment-info h1 {
    font-size: 20px;
  }

  .video-container {
    height: 250px;
  }
  .topbar {
    display: none;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 25px;
  }
}
@media (max-width: 380px) {
  .hamburger {
    margin-left: 60%;
  }
}

/* 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);
}
