.about-section {
  padding: 100px 20px;
  background: #f9f4fa; /* soft lavender */
  font-family: sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.badge {
  background: #803f84; /* dark purple */
  color: white;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 20px;
}

.about-title {
  font-size: 36px;
  font-weight: bold;
  color: #3e1840; /* deep plum */
  margin-bottom: 20px;
}

.about-text {
  font-size: 18px;
  color: #503556; /* muted purple */
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
}

.achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 30px;
  color: #503556;
  font-size: 14px;
}

.icon {
  color: #c97acb; /* violet accent */
  margin-right: 6px;
}

.features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-card {
  background: #ffffffdd;
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  font-size: 24px;
  background: #efd6f0; /* soft lavender bubble */
  color: #3e1840;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  line-height: 48px;
  margin: auto;
  margin-bottom: 10px;
}

.feature-card h4 {
  color: #a24fa6; /* primary purple */
  margin-bottom: 6px;
  font-size: 14px;
}

.feature-card p {
  font-size: 12px;
  color: #503556;
}

.about-right {
  position: relative;
}

.highlight-card {
  background: #a24fa6;
  color: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.highlight-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.highlight-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 20px;
}

.rating-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  margin-top: 20px;
}

.rating {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.rating-label {
  font-size: 13px;
  color: #ffffffcc;
}

.floating-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: #c97acb;
  color: #3e1840;
  padding: 8px 16px;
  border-radius: 9999px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  font-size: 14px;
}


/*form styles*/

@media (max-width: 640px) {
  .jet-form-col__start {
    display: none !important;
  }
}

input, textarea, #booking_specialty {
    padding: 0.5rem;
    border: 1px solid gray;
    border-radius: 0.5rem;
    
}
/* Smooth scrolling behavior for anchor navigation */
html {
  scroll-behavior: smooth;
}

/* Offset fix for anchor-linked sections to prevent them being hidden under fixed headers */
section[id] {
  scroll-margin-top: 80px; /* Adjust based on your header height */
}

/* Optional: Ensure AOS and animations don't break layout when scrolling fast */
[data-aos] {
  will-change: opacity, transform;
  backface-visibility: hidden;
}


