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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-small {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.top-bar {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.top-bar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.top-bar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Social Media - Left Side */
.social-media {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  background-color: #8bb63e;
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.top-bar .social-link:hover svg {
  color: #ffffff;
}

/* Contact Info - Right Side */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #8bb63e;
}

.contact-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contact-link span {
  white-space: nowrap;
}

/* Responsive Design - Tablet and Desktop */
@media (min-width: 640px) {
  .top-bar-content {
    flex-direction: row;
    justify-content: space-between;
  }

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

/* Responsive Design - Large Desktop */
@media (min-width: 1024px) {
  .top-bar-container {
    padding: 0 2rem;
  }
}

/* Header */
.header {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-img {
  height: 75px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.nav-link.highlight {
  font-weight: 600;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #2c3e50;
}

.mobile-menu-btn:hover {
  color: #8bb63e;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1rem;
}

.nav-mobile.active {
  display: flex;
  position: absolute;
  background-color: #fff;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0px 7px 20px 0px #00000040;
}

.nav-link-mobile {
  color: #2c3e50;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

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

/* Hero Section */
.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1760310936486-4dd450aab2a8?w=1600");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  max-width: 896px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.875rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-text {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.8;
  max-width: 768px;
  width: 100%;
  margin: 0 auto 1rem;
}

.hero-text p {
  margin-bottom: 1rem !important;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 3rem;
}
.hero-buttons .btn-primary {
  border: none;
}
.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
  margin-bottom: 62px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  color: #ffffff;
}

.check {
  color: #8bb63e;
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

.hero-features .check img {
  filter: invert(45%) sepia(48%) saturate(600%) hue-rotate(230deg)
    brightness(90%) contrast(90%);
}

.hero-features .feature-item span:not(.check) {
  max-width: calc(100% - 32px);
  width: 100%;
}

/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.2s;

  display: inline-block;
  text-decoration: none;
}

.btn-primary {
  background-color: #8bb63e;
  color: #ffffff;
  border-color: #8bb63e;
}

.btn-primary:hover {
  background-color: #7aa62e;
  border-color: #7aa62e;
}
.hero-buttons .btn-primary:focus,
.hero-buttons .btn-primary:active,
.hero-buttons .btn-primary:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  background-color: #8bb63e !important;
}

.btn-secondary {
  background-color: #ffffff;
  color: #2c3e50;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
  color: #212529 !important;
}
.hero-buttons .btn-secondary:focus,
.hero-buttons .btn-secondary:active,
.hero-buttons .btn-secondary:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  background-color: #f5f5f5 !important;
  color: #212529 !important;
}

.btn-outline {
  background-color: #ffffff;
  color: #2c3e50;
  border: 2px solid #2c3e50;
}

.btn-outline:hover {
  background-color: #f5f5f5;
}

.btn-primary-large,
.btn-secondary-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Trust Bar */
.trust-bar {
  padding: 4rem 0;
  background-color: #f9fafb;
}

.trust-text {
  text-align: center;
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-circle {
  width: 64px;
  height: 64px;
  background-color: rgba(139, 182, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-circle img {
  width: 32px;
  height: 32px;
  color: #8bb63e;
}

/* Choose Path */
.choose-path {
  padding: 5rem 0;
  background-color: #ffffff;
}

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

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

.path-card {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.path-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #8bb63e;
}

.icon-box {
  width: 64px;
  height: 64px;
  background-color: rgba(139, 182, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-box svg {
  width: 32px;
  height: 32px;
  color: #8bb63e;
}

.path-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.path-card p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Why Inspections Matter */
.why-matter {
  padding: 5rem 0;
  background-color: #f9fafb;
}

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

.why-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.why-content p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 0px;
  line-height: 1.8;
}

.why-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 1.5rem 0 1rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
}

.benefit-item svg {
  width: 24px;
  height: 24px;
  color: #8bb63e;
  margin-right: 0.75rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.benefit-item p {
  color: #2c3e50;
  font-size: 1.125rem;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background-color: #ffffff;
}

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

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 800px;
  margin: 1rem auto 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.step-item {
  text-align: center;
}

.step-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.step-icon {
  width: 96px;
  height: 96px;
  background-color: #ffffff;
  border: 4px solid #8bb63e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.step-icon img {
  width: 40px;
  height: 40px;
  color: #8bb63e;
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background-color: #8bb63e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.step-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  margin-top: 0px;
}

.step-item p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 0px;
}

/* Inspection Report */
.inspection-report {
  padding: 5rem 0;
  background-color: #f9fafb;
}

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

.report-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

.report-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.report-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(139, 182, 62, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.report-icon svg {
  width: 24px;
  height: 24px;
  color: #8bb63e;
}

.report-item p {
  color: #2c3e50;
  font-size: 1.125rem;
  padding-top: 0.5rem;
  margin-bottom: 0;
}

.report-footer {
  text-align: center;
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
}

/* Benefits */
.benefits {
  padding: 5rem 0;
  background-color: #ffffff;
}

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

.benefit-card {
  text-align: center;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(139, 182, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
  color: #8bb63e;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: #6b7280;
  line-height: 1.8;
}

/* Workshop Certification */
.workshop-cert {
  padding: 5rem 0;
  background-color: #f9fafb;
}

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

.cert-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cert-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.cert-content > p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.cert-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cert-item {
  display: flex;
  align-items: flex-start;
}

.cert-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(139, 182, 62, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.cert-icon svg {
  width: 20px;
  height: 20px;
  color: #8bb63e;
}

.cert-item p {
  color: #2c3e50;
  font-size: 1.125rem;
  padding-top: 0.25rem;
  margin-bottom: 0px;
}

/* Why Choose */
.why-choose {
  padding: 5rem 0;
  background-color: #ffffff;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.why-choose-item svg {
  width: 24px;
  height: 24px;
  color: #8bb63e;
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.why-choose-item p {
  color: #2c3e50;
  font-size: 1.125rem;
}

.why-choose-footer {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
}

/* FAQ */
.faq {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question span {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c3e50;
  padding-right: 1rem;
}

.active .faq-question svg path:nth-child(2) {
  visibility: hidden;
}

.faq-icon {
  flex-shrink: 0;
  color: #8bb63e;
}

.faq-icon svg {
  width: 20px;
  height: 20px;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.8;
}

/* CTA */
.cta {
  padding: 5rem 0;
  background-color: #2c3e50;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
#book p {
  color: oklch(87.2% 0.01 258.338);
  margin-bottom: 40px;
  font-size: 20px;
}

.cta-text {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.cta-buttons .btn.btn-primary-large:focus,
.cta-buttons .btn.btn-primary-large:active,
.cta-buttons .btn.btn-primary-large:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.cta-buttons .btn.btn-primary-large {
  background-color: #8bb63e !important;
  color: white !important;
}
.cta-buttons .btn.btn-primary-large:hover {
  background-color: #7aa62e !important;
}
.cta-buttons .btn.btn-secondary-large:hover {
  background-color: oklch(96.7% 0.003 264.542) !important;
  color: #2c3e50 !important;
}
/* Footer */
.footer {
  background-color: #f9fafb;
  color: #2c3e50;
  padding: 3rem 0;
  border-top: 1px solid #374151;
}

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

.footer-col h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 2.1rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 90px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col li {
  color: #6b7280;
  line-height: 1.8;
}

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

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

.footer-col a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.footer-col a:hover {
  color: #8bb63e;
}

/* .footer-col a:hover {
  color: #8bb63e;
}
 */
.contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.contact-list svg {
  width: 20px;
  height: 20px;
  color: #8bb63e;
  margin-right: 0.5rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: #6b7280;
  font-size: 0.875rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background-color: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

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

.social-links svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1.25rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: row;
  }

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

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

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

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

  .report-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-title {
    font-size: 3rem;
  }
}

/* Old css file code */
/*accordion*/
/* Accordion wrapper */
.wp-block-accordion {
  border-radius: 8px;
  overflow: hidden;
}

/* Each item */
.wp-block-accordion .wp-block-accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

/* Heading button */
.wp-block-accordion .wp-block-accordion-heading__toggle {
  width: 100%;
  background: #fff;
  border: none;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Hover */
.wp-block-accordion .wp-block-accordion-heading__toggle:hover {
  background: #f7f7f7;
}

/* Icon */
.wp-block-accordion .wp-block-accordion-heading__toggle-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Rotate icon when open */
.wp-block-accordion
  .wp-block-accordion-item.is-open
  .wp-block-accordion-heading__toggle-icon {
  transform: rotate(45deg);
}

/* Panel */
.wp-block-accordion .wp-block-accordion-panel {
  padding: 0 20px 18px;
  font-size: 16px;
  color: #555;
}

/* Remove default spacing */
.wp-block-accordion h3 {
  margin: 0;
}

.wp-block-accordion-heading__toggle:hover
  .wp-block-accordion-heading__toggle-title {
  text-decoration: none;
}

/*accordion*/

.btn.btn-outline-secondary {
  border-color: #6c757d !important;
}

/* graph css file code */

/* Bike Stats Section */
.bike-stats-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, #2c5f7f 0%, #1e3a52 100%);
}

/* Background Pattern */
.background-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: 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='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Container */
.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

/* Title */
.stats-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  margin-bottom: 3rem;
  letter-spacing: 0.5px;
}

/* Grid Layout */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

/* Chart Wrapper */
.chart-wrapper {
  width: 100%;
}

.chart-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
}

.chart-container {
  position: relative;
  height: 300px;
  width: 100%;
}

/* Stats Cards */
.stats-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: bold;
  color: #8bb63e;
}

/* Responsive Design - Tablet */
@media (min-width: 640px) {
  .stats-title {
    font-size: 2.25rem;
  }

  .chart-card {
    padding: 2rem;
  }

  .stat-card {
    padding: 1.5rem;
  }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
  .stats-container {
    padding: 0 2rem;
  }

  .stats-grid {
    grid-template-columns: 2fr 1fr;
  }

  .stats-title {
    font-size: 2.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }
}

/* Responsive Design - Large Desktop */
@media (min-width: 1280px) {
  .chart-container {
    height: 350px;
  }
}

.wp-block-media-text.is-image-fill-element > .wp-block-media-text__media {
  position: relative;
}

.wp-block-media-text .wp-block-media-text__media img {
  position: absolute;
  top: 0;
  left: 0;
}

.col-12 button {
  max-width: 133px;
  width: auto;
  background-color: #4ea34c;
  color: white;
  padding-block: 17px;
  padding-inline: 27px;
  border-radius: 6px;
}
.col-12 button#pay-btn {
  max-width: fit-content;
}
.wp-block-table td,
.wp-block-table th {
  border: none;
}

.wp-block-button__link.wp-element-button {
  background-color: #4ea34c;
  color: #333;
  padding-block: 14px;
  padding-inline: 28px;
}
.wp-block-button__link.wp-element-button:hover {
  background-color: #000;
  color: #ffffff;
}

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

/* Mobile → 1 column */
@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.col-4 p {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.row .col-4 p {
  display: block;
}
.col-4 p br {
  display: none;
}

.wp-block-list li {
  margin-left: 20px;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table {
  min-width: 1296px;
}

.page-header.has-bg-image {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.page-header.has-bg-image h1 {
  color: #fff;
  position: relative;
  z-index: 1;
  margin: 10px 0;
}
.page-header.has-bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.pmpro_section #loginform .login-password input {
  max-width: 296px;
  width: 100%;
}

.pmpro form .pmpro_form_submit {
  justify-content: center;
  flex-direction: column;
}

.pmpro form .pmpro_btn[type="submit"],
.slot_booking_form button.w-100,
.page-content .wp-block-button .wp-block-button__link,
.pmpro_card.pmpro_level_group .pmpro_btn.pmpro_btn-select {
  background-color: #8bb63e;
  color: #ffffff;
  border-color: #8bb63e;
  box-shadow: none;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1.125rem;
  max-width: fit-content;
}

.slot_booking_form button.w-100 {
  margin-left: 0 !important;
  margin: 0 auto !important;
  display: block;
}

.page-content .wp-block-button .wp-block-button__link strong {
  font-weight: inherit !important;
}

.pmpro form .pmpro_btn[type="submit"]:hover,
.slot_booking_form button.w-100:hover,
.page-content .wp-block-button .wp-block-button__link:hover,
.page-content .wpcf7 form .wpcf7-submit:hover,
.pmpro_card.pmpro_level_group .pmpro_btn.pmpro_btn-select:hover {
  background-color: #7aa62e;
}

.pmpro_card.pmpro_level_group .pmpro_btn.pmpro_btn-select {
  max-width: unset;
}

.pmpro_card.pmpro_level_group .pmpro_btn.pmpro_btn-outline {
  background-color: transparent;
  border-color: #8bb63e;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: #2c3e50;
  transition: all ease 0.3s;
}

.pmpro_card.pmpro_level_group .pmpro_btn.pmpro_btn-outline:hover {
  background-color: #8bb63e;
  color: #ffffff;
}

.page-content .wpcf7 form .wpcf7-submit {
  margin: 0 auto;
  display: block;
  max-width: fit-content;
  width: 100%;
  min-width: 150px;
  background-color: #8bb63e !important;
}

.page-content .wp-block-button .wp-block-button__link {
  padding: 1rem 2rem !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
}

.page-content .wpcf7 form .wpcf7-submit:hover,
.page-content .wp-block-button .wp-block-button__link:hover {
  background-color: #7aa62e !important;
}

.page-content .wpcf7 form .row:has(.col-4.pt-3.pr-6) .col-4 {
  display: none;
}

.page-content .wpcf7 form .row:has(.col-4.pt-3.pr-6) .col-4.pt-3.pr-6 {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* accordion  */
.wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon {
  font-size: 0;
  position: relative;
  width: 24px;
  height: 24px;
}

.wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon::after {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiM4YmI2M2UiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBkYXRhLWx1Y2lkZT0icGx1cyIgYXJpYS1oaWRkZW49InRydWUiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLXBsdXMgZmFxLWljb24iPjxwYXRoIGQ9Ik01IDEyaDE0Ij48L3BhdGg+PHBhdGggZD0iTTEyIDV2MTQiPjwvcGF0aD48L3N2Zz4=");
  background-size: contain;
  display: block;
  width: 24px;
  height: 24px;
}

.is-open
  .wp-block-accordion-heading
  .wp-block-accordion-heading__toggle-icon::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiM4YmI2M2UiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBkYXRhLWx1Y2lkZT0icGx1cyIgYXJpYS1oaWRkZW49InRydWUiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLXBsdXMgZmFxLWljb24iPjxwYXRoIGQ9Ik01IDEyaDE0Ij48L3BhdGg+PC9zdmc+");
  transform: unset;
}

.is-open .wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon {
  transform: unset !important;
}

/*  comment area form */
.comments-area form .comment-form-cookies-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.comments-area form .comment-form-cookies-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.comment-respond {
  width: 100%;
  margin: 0 auto;
}

.comments-area form .form-submit input[type="submit"] {
  margin: 0 auto;
  background-color: #8bb63e;
  color: #ffffff;
  border-color: #8bb63e;
}

.comments-area form .form-submit input[type="submit"]:hover {
  background-color: #7aa62e;
  border-color: #7aa62e;
}

.pmpro_section #loginform .login-submit .button {
  background-color: #8bb63e !important;
  color: #ffffff !important;
  border-color: #8bb63e !important;
}

.pmpro_section #loginform .login-submit .button:hover {
  background-color: #7aa62e !important;
  border-color: #7aa62e !important;
}

nav.nav-desktop .menu-item-has-children:not(.active-dropdown):hover .sub-menu {
  display: block;
}

nav[aria-label="Page navigation"],
.custom-nav nav {
  margin: 0 auto 50px;
}

.pagination {
  padding: 0;
}

.pagination li a,
.pagination li .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #8bb63e;
  font-size: 1.2rem;
  font-weight: 600;
  border-color: #8bb63e;
}

.page-item.disabled .page-link {
  border-color: #8bb63e;
}

.page-item.disabled .page-link {
  color: #8bb63e;
}

.pagination .active .page-link {
  background-color: #8bb63e;
  border-color: #8bb63e;
}

@media (max-width: 767px) {
  .footer-col h3 {
    margin-top: 0.5rem;
  }

  .footer-col p {
    margin-bottom: 0.5rem;
  }

  .logo-img {
    height: 65px;
  }
}
