:root {
  --primary: #62392b;
  --secondary: #ffeeeb;
  --accent: #ff7345;
  --text: #b5918b;
  --text-dark: #62392b;
  --hero-bg: #ffefec;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(98, 57, 43, 0.1);
  --radius: 7px;
  --container: 1200px;
  --header-height: 90px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Alata", sans-serif;
  color: var(--primary);
  line-height: 1.3;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--accent);
  font-family: "Alata", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-label::after {
  content: "";
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: var(--primary);
}

.section-label.center {
  justify-content: center;
}

.section-label.center::before,
.section-label.center::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 18px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-family: "Alata", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  background: transparent;
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.logo img {
  height: 70px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: "Alata", sans-serif;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* Hero */
.hero {
  background: var(--hero-bg);
  padding: 8rem 0 5rem;
  margin-top: calc(var(--header-height) * -1);
  padding-top: calc(8rem + var(--header-height));
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(253, 253, 253, 0.5);
  pointer-events: none;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.375rem);
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 2rem;
  max-width: 500px;
}

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

.hero-image img {
  max-width: 420px;
  margin-inline: auto;
}

/* About */
.about {
  padding: 6rem 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("../images/51TOv8trudL.jpg") center bottom / cover no-repeat;
}

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

.about-image {
  min-height: 450px;
  border-radius: var(--radius);
  background: url("../images/WhatsApp-Image-2023-10-04-at-6.56.45-PM-2.jpeg") center / cover no-repeat;
}

.about h2 {
  font-size: clamp(1.8rem, 3vw, 3.125rem);
  margin-bottom: 1.5rem;
}

.about p {
  margin-bottom: 1rem;
}

/* Services */
.services {
  padding: 6rem 0;
  background: var(--secondary);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
}

.services .container {
  position: relative;
  z-index: 1;
}

.services h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.125rem);
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

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

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
  text-align: center;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 14px;
  margin-bottom: 1rem;
}

.service-card .read-more {
  color: var(--accent);
  font-family: "Alata", sans-serif;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card .read-more:hover {
  color: var(--primary);
}

/* Stats */
.stats {
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.stat-number {
  font-family: "Alata", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
}

body.menu-open {
  overflow: hidden;
}

.stat-label {
  font-family: "Alata", sans-serif;
  color: var(--primary);
  margin-top: 0.5rem;
}

/* Gallery */
.gallery {
  padding: 5rem 0;
}

.gallery h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

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

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-col img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

/* Features */
.features {
  padding: 4rem 0;
  background: var(--secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-item h5 {
  font-size: 1.1rem;
}

/* Pricing */
.pricing {
  padding: 5rem 0;
  text-align: center;
  background: var(--hero-bg);
}

.pricing h3 {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.5;
}

/* FAQ */
.faq {
  padding: 5rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.faq-image {
  min-height: 400px;
  border-radius: var(--radius);
  background: url("../images/premium_photo-1672292536258-19fbad644434-1.webp") center / cover no-repeat;
}

.faq h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.faq-intro {
  margin-bottom: 2rem;
}

.accordion-item {
  border: 1px solid rgba(98, 57, 43, 0.15);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Alata", sans-serif;
  font-size: 1rem;
  color: var(--primary);
}

.accordion-header i {
  color: var(--accent);
  transition: transform 0.3s;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

.accordion-body p {
  padding: 0 1.25rem 1rem;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: var(--secondary);
}

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

.testimonials-header h6 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.testimonial-card {
  flex: 0 0 50%;
  min-width: 50%;
  padding: 0 0.75rem;
}

.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

.testimonial-text {
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

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

.testimonial-author strong {
  display: block;
  color: var(--primary);
  font-family: "Alata", sans-serif;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(98, 57, 43, 0.3);
  cursor: pointer;
}

.testimonial-dots button.active {
  background: var(--accent);
}

/* Contact */
.contact {
  padding: 5rem 0;
}

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

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  border-radius: var(--radius);
}

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

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 0.25rem;
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--white);
  font-size: 1.1rem;
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 0.85;
}

.social-links .facebook { background: #3b5998; }
.social-links .instagram { background: #262626; }
.social-links .whatsapp { background: #25d366; }
.social-links .youtube { background: #cd201f; }

/* Footer */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.site-footer h2,
.site-footer h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}

.site-footer a:hover {
  color: var(--accent);
}

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

.footer-address a {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem 0;
  text-align: center;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  max-width: 700px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url("../images/female-fitness-instructor-using-laptop-teach-class-from-home_23-2149320120-1.webp") center / cover no-repeat;
  color: var(--white);
  padding: 3rem 2.5rem;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.modal hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.modal p {
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Article pages */
.article-hero {
  background: var(--hero-bg);
  padding: 8rem 0 3rem;
  margin-top: calc(var(--header-height) * -1);
  padding-top: calc(6rem + var(--header-height));
}

.article-hero .meta {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.article-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.article-content {
  padding: 3rem 0 5rem;
  max-width: 800px;
  margin-inline: auto;
}

.article-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.article-content p,
.article-content li {
  margin-bottom: 1rem;
}

.article-content ul {
  list-style: disc;
  padding-left: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-toggle {
    position: relative;
    z-index: 1002;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .faq-image {
    display: none;
  }

  .about-image {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .stats-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}
