.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

.hero-content {
  z-index: 3;
  max-width: 650px;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #c2c9d3;
}

.hero-content p {
  margin: 12px 0 24px;
  font-size: 1rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.btn {
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.primary-btn {
  background: #ff4d4d;
  color: #fff;
}

.primary-btn:hover {
  background: #ff1a1a;
}

.secondary-btn {
  border: 2px solid white;
  color: white;
}

.secondary-btn:hover {
  background: white;
  color: black;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.stat-box .number {
  font-size: 1.2rem;
  font-weight: 700;
}

.stat-box .label {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* TABLET */
@media(min-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
  .stat-box .number {
    font-size: 1.4rem;
  }
}

/* DESKTOP */
@media(min-width: 1024px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .hero-stats {
    gap: 32px;
  }
}
/* VALUE SECTION */
.value-section {
  padding: 60px 20px;
  background: #f8f8f8;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 40px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.value-card {
  background: white;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  border: 1px solid #e4e4e4;
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.value-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* TABLET */
@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* TRANSFORM SECTION */
.transform-section {
  padding: 60px 20px;
  background: #ffffff;
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.transform-card {
  background: #f7f7f7;
  border-radius: 14px;
  padding: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.transform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.transform-img-box {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: 10px;
}

.before-img,
.after-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Hover → Reveal After Image */
.transform-img-box:hover .before-img {
  opacity: 0;
}

.transform-img-box:hover .after-img {
  opacity: 1;
}

.after-img {
  opacity: 0;
}

.transform-info {
  margin-top: 14px;
  text-align: center;
}

.transform-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.transform-info p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* TABLET */
@media (min-width: 768px) {
  .transform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .transform-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* TESTIMONIAL SECTION */
.testimonial-section {
  padding: 60px 20px;
  background: #f8f8f8;
}

.testimonial-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 85%;
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  scroll-snap-align: start;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.stars {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: #ffb400;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.85;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer h4 {
  font-size: 1rem;
  font-weight: 700;
}

.reviewer span {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* TABLET */
@media (min-width: 768px) {
  .testimonial-card {
    min-width: 45%;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .testimonial-slider {
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonial-card {
    min-width: unset;
  }
}
/* PRICING SECTION */
.pricing-section {
  padding: 60px 20px;
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pricing-card {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 26px;
  text-align: center;
  border: 1px solid #e3e3e3;
  transition: 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.plan-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.price {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.price span {
  font-size: 1rem;
  opacity: 0.7;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.features li {
  margin: 8px 0;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Popular Middle Plan */
.popular {
  background: #fff4e6;
  border: 2px solid #ff9800;
}

.badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ff9800;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.price-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  background: black;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn {
  background: #ff4d4d !important;
}

.price-btn:hover {
  opacity: 0.85;
}

/* TABLET */
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* TRAINER SECTION */
.trainer-section {
  padding: 60px 20px;
  background: #f8f8f8;
}

.trainer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.trainer-card {
  background: white;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #e4e4e4;
}

.trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.trainer-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}

.trainer-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.trainer-country {
  font-size: 0.9rem;
  opacity: 0.6;
  display: block;
  margin-bottom: 10px;
}

.trainer-bio {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 16px;
}

.trainer-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  background: #ff4d4d;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.trainer-btn:hover {
  opacity: 0.8;
}

/* TABLET */
@media (min-width: 768px) {
  .trainer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .trainer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* HOW IT WORKS SECTION */
.how-section {
  padding: 60px 20px;
  background: #ffffff;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.how-card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 26px;
  text-align: center;
  border: 1px solid #e4e4e4;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.how-card.show {
  opacity: 1;
  transform: translateY(0);
}

.how-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.how-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.how-card p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* CTA Button */
.how-cta {
  text-align: center;
  margin-top: 40px;
}

.how-btn {
  padding: 14px 28px;
  border-radius: 12px;
  background: #ff4d4d;
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.how-btn:hover {
  opacity: 0.85;
}

/* TABLET */
@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .how-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* APP FEATURES */
.app-section {
  padding: 60px 20px;
  background: #f8f8f8;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.app-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid #e6e6e6;
  transition: 0.3s ease;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.app-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.app-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.app-card p {
  font-size: 0.95rem;
  opacity: 0.75;
}

/* Tablet */
@media (min-width: 768px) {
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .app-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* COMMUNITY SECTION */
.community-section {
  padding: 60px 20px;
  background: #ffffff;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 40px;
}

.community-card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid #e4e4e4;
  transition: 0.3s ease;
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.community-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.community-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.community-card p {
  font-size: 0.95rem;
  opacity: 0.75;
}

/* CTA Button */
.community-cta {
  text-align: center;
  margin-top: 40px;
}

.community-btn {
  background: #ff4d4d;
  color: white;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.community-btn:hover {
  opacity: 0.85;
}

/* TABLET */
@media (min-width: 768px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .community-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.community-card {
  opacity: 0;
  transform: translateY(20px);
}

.community-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.5s ease;
}
/* VIRTUAL TOUR SECTION */
.tour-section {
  padding: 60px 20px;
  background: #f7f7f7;
}

.tour-preview {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 30px;
}

.tour-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.55);
  color: white;
  padding: 18px 24px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s;
}

.play-btn:hover {
  background: rgba(0,0,0,0.75);
}

/* GRID STYLES */
.tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 40px;
}

.tour-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid #e4e4e4;
  transition: 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
}

.tour-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.tour-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tour-card p {
  font-size: 0.95rem;
  opacity: 0.75;
}

/* CTA Button */
.tour-cta {
  text-align: center;
  margin-top: 40px;
}

.tour-btn {
  background: #ff4d4d;
  color: white;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.tour-btn:hover {
  opacity: 0.85;
}

/* TABLET */
@media (min-width: 768px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .tour-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* BLOG SECTION */
.blog-section {
  padding: 60px 20px;
  background: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.blog-card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e5e5e5;
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
}

.blog-img {
  height: 180px;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 14px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-tag {
  background: #ff4d4d;
  color: white;
  padding: 4px 12px;
  font-size: 0.8rem;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-desc {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: 14px;
}

.blog-link {
  font-size: 0.9rem;
  color: #ff4d4d;
  font-weight: 700;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

/* CTA Button */
.blog-cta {
  text-align: center;
  margin-top: 40px;
}

.blog-btn {
  background: #ff4d4d;
  color: white;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}

/* TABLET */
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* FAQ SECTION */
.faq-section {
  padding: 60px 20px;
  background: #f8f8f8;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: white;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-question {
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  padding: 0 16px;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 16px;
  opacity: 1;
}










/* FOOTER */
.footer {
  padding: 60px 20px 30px;
  background: #111111;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Brand text */
.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-text {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
}

/* Social icons */
.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 12px;
}

.social-icon {
  font-size: 1.4rem;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.social-icon:hover {
  opacity: 0.7;
}

/* Links */
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #dddddd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s;
}

.footer-col ul li a:hover {
  color: #ff4d4d;
}

/* Newsletter */
.footer-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-form input {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
}

.footer-form button {
  background: #ff4d4d;
  color: white;
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.footer-form button:hover {
  opacity: 0.8;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* TABLET */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}/* End custom CSS */