html, body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Roboto', 'Segoe UI', Arial, sans-serif;
  color: #222;
  background: #f6f7f9;
}

.main-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
/* Footer Section */
.main-footer {
  background: #1b2531;
  color: #fff;
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  margin-top: 0;
  flex-shrink: 0;
}
.footer-top-bar {
  height: 12px;
  background: #00c6a2;
  width: 100%;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem 1.2rem 1.2rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
  justify-content: flex-start;
  margin-bottom: 2.2rem;
}
.footer-col {
  min-width: 180px;
  flex: 1 1 180px;
}
.footer-col-title {
  font-weight: 700;
  font-size: 1.09rem;
  margin-bottom: 1.1rem;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul li a {
  color: #cfd8e3;
  text-decoration: none;
  font-size: 1.01rem;
  transition: color 0.18s;
}
.footer-col ul li a:hover {
  color: #00c6a2;
}
.footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232f3e;
  border-radius: 6px;
  width: 34px;
  height: 34px;
  transition: background 0.18s;
}
.footer-socials a:hover {
  background: #00c6a2;
}
.footer-socials img {
  width: 22px;
  height: 22px;
  opacity: 0.85;
}
.footer-contact {
  margin-top: 0.7rem;
}
.footer-contact-title {
  font-weight: 600;
  font-size: 1.01rem;
  margin-bottom: 0.3rem;
  color: #fff;
}
.footer-email, .footer-phone {
  color: #cfd8e3;
  text-decoration: none;
  font-size: 1.01rem;
  transition: color 0.18s;
}
.footer-email:hover, .footer-phone:hover {
  color: #00c6a2;
}
.footer-divider {
  border: none;
  border-top: 1px solid #263142;
  margin: 2.2rem 0 1.2rem 0;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  font-size: 1.18rem;
  font-weight: 700;
  color: #00c6a2;
  letter-spacing: -1px;
}
.footer-brand img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  vertical-align: middle;
}
.footer-brand-name {
  color: #00c6a2;
  font-weight: 700;
  font-size: 1.18rem;
}
.footer-links-bottom {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.footer-link {
  color: #cfd8e3;
  text-decoration: none;
  font-size: 1.01rem;
  transition: color 0.18s;
}
.footer-link:hover {
  color: #00c6a2;
}
.footer-copyright {
  color: #cfd8e3;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .footer-links {
    flex-direction: column;
    gap: 2rem 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
}
.hero-search-description {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 2.08rem;
  color: #ffffff;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(24px);
  animation: heroSearchDescriptionFadeIn 1s ease 0.6s forwards;
  z-index: -12;
}

@keyframes heroSearchDescriptionFadeIn {
  from { opacity: 0; transform: translateY(24px);}
  to { opacity: 1; transform: translateY(0);}
}
/* How Fyndii Works Section */
.how-it-works-section {
  background: #e6f8f7;
  padding: 4rem 0 3.5rem 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 5rem; /* Adjusted margin-top for spacing */
}
.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.how-it-works-section h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #222;
}
.how-it-works-subtitle {
  text-align: center;
  color: #3a4656;
  font-size: 1.13rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.how-steps-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.how-step-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  max-width: 340px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 1.5rem;
}
.how-step-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0,198,162,0.10);
  transform: translateY(-4px) scale(1.03);
}
.how-step-icon {
  background: #e6fcf8;
  color: #00c6a2;
  font-size: 1.45rem;
  font-weight: 700;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px 0 rgba(0,198,162,0.07);
}
.how-step-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #22313f;
  margin-bottom: 0.5rem;
  text-align: center;
}
.how-step-desc {
  color: #444;
  font-size: 1.01rem;
  text-align: center;
}
/* Popular Service Categories Section */
.popular-categories-section {
  padding: 3.5rem 0 2.5rem 0;
  background: #f7f8fa;
  width: 102%;
  overflow: hidden;
  margin-top: 1rem;
}
.popular-categories-container {
  max-width: 1200px;
  margin: 0 auto;
}
.popular-categories-section h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.popular-categories-section p {
  text-align: center;
  color: #444;
  font-size: 1.13rem;
  margin-bottom: 2.2rem;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}

@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}
.category-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.03);
}
.category-card:hover {
  box-shadow: 0 4px 18px 0 rgba(0,198,162,0.10);
  border: 1.5px solid #00c6a2;
  transform: translateY(-3px) scale(1.025);
}
.category-icon {
  background: #e6fcf8;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 2rem;
  box-shadow: 0 2px 8px 0 rgba(0,198,162,0.07);
}
.category-title {
  font-weight: 700;
  font-size: 1.18rem;
  margin-bottom: 0.4rem;
  text-align: center;
}
.category-desc {
  color: #666;
  font-size: 1.01rem;
  text-align: center;
}
.categories-link {
  text-align: center;
  margin-top: 2.2rem;
}
.categories-link a {
  color: #00c6a2;
  font-weight: 600;
  font-size: 1.09rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.18s;
}
.categories-link a:hover {
  color: #008c7a;
}
#allServicesList {
  display: none;
}
#allServicesList.show {
  display: block !important;
}
/* Ensure overlays are always hidden when .hidden is present */
.hidden {
  display: none !important;
}

/* Header Styles */

/* Testimonials Section */
.testimonials-section {
  background: #fff;
  padding: 4.5rem 0 3.5rem 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 1;
}
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.testimonials-section h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #222;
}
.testimonials-section p {
  text-align: center;
  color: #3a4656;
  font-size: 1.13rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.testimonials-slider {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  position: relative;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  max-width: 350px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 1.5rem;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0,198,162,0.10);
  transform: translateY(-4px) scale(1.03);
}
.testimonial-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  display: flex;
  gap: 0.1rem;
}
.testimonial-text {
  color: #222;
  font-size: 1.05rem;
  margin-bottom: 1.3rem;
  min-height: 70px;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
}
.testimonial-avatar {
  background: #e6fcf8;
  color: #00c6a2;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(0,198,162,0.07);
}
.testimonial-user-info {
  display: flex;
  flex-direction: column;
}
.testimonial-user-name {
  font-weight: 700;
  color: #22313f;
  font-size: 1.05rem;
}
.testimonial-user-role {
  color: #888;
  font-size: 0.97rem;
}
.testimonials-arrow {
  background: #fff;
  border: 1.5px solid #e6fcf8;
  color: #00c6a2;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px 0 rgba(0,198,162,0.07);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.testimonials-arrow:hover {
  background: #e6fcf8;
  color: #008c7a;
  border: 1.5px solid #00c6a2;
}
.testimonials-arrow.left {
  left: -54px;
}
.testimonials-arrow.right {
  right: -54px;
}
@media (max-width: 1100px) {
  .testimonials-slider {
    gap: 1.2rem;
  }
  .testimonials-arrow.left {
    left: -24px;
  }
  .testimonials-arrow.right {
    right: -24px;
  }
}
@media (max-width: 900px) {
  .testimonials-slider {
    flex-direction: column;
    align-items: center;
  }
  .testimonials-arrow.left,
  .testimonials-arrow.right {
    display: none;
  }
}
.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0.7rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Grow Your Business With Fyndii Section */
.grow-business-section {
  background: #e6f8f7;
  padding: 4.5rem 0 3.5rem 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 1;
}
.grow-business-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.grow-business-left {
  flex: 1 1 380px;
  min-width: 320px;
  max-width: 520px;
  padding: 2.2rem 0 2.2rem 0;
}
.grow-business-left h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #22313f;
  margin-bottom: 1.1rem;
}
.grow-business-left p {
  color: #3a4656;
  font-size: 1.13rem;
  margin-bottom: 2.1rem;
  font-weight: 500;
}
.grow-business-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
}
.grow-business-list li {
  display: flex;
  align-items: center;
  color: #222;
  font-size: 1.07rem;
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.grow-business-list .material-icons {
  color: #00c6a2;
  font-size: 1.3rem;
  margin-right: 0.7rem;
}
.grow-business-btn {
  display: inline-block;
  background: #00c6a2;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0.85rem 2.1rem;
  font-size: 1.13rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s;
  box-shadow: 0 2px 8px 0 rgba(0,198,162,0.07);
}
.grow-business-btn:hover {
  background: #00a78a;
}
.grow-business-right {
  flex: 1 1 380px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grow-business-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.09);
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.grow-business-icon {
  background: #e6fcf8;
  color: #00c6a2;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px 0 rgba(0,198,162,0.07);
}
.grow-business-story-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #22313f;
  margin-bottom: 0.7rem;
  text-align: center;
}
.grow-business-story-text {
  color: #222;
  font-size: 1.07rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.grow-business-user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  width: 100%;
}
.grow-business-avatar {
  background: #e6fcf8;
  color: #00c6a2;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(0,198,162,0.07);
}
.grow-business-user-info {
  display: flex;
  flex-direction: column;
}
.grow-business-user-name {
  font-weight: 700;
  color: #22313f;
  font-size: 1.05rem;
}
.grow-business-user-role {
  color: #888;
  font-size: 0.97rem;
  margin-bottom: 0.2rem;
}
.grow-business-stars {
  color: #ffc107;
  font-size: 1.1rem;
  display: flex;
  gap: 0.1rem;
}
@media (max-width: 1100px) {
  .grow-business-container {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
  }
  .grow-business-left, .grow-business-right {
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }
  .grow-business-card {
    margin: 0 auto;
  }
}
.main-header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.main-header-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
  letter-spacing: -1px;
}
.main-header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
.main-header-nav a {
  color: #444;
  text-decoration: none;
  font-size: 1.08rem;
  transition: color 0.18s;
}
.main-header-nav a:hover {
  color: #00c6a2;
}
.main-header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.main-header-login {
  color: #444;
  text-decoration: none;
  font-size: 1.08rem;
  transition: color 0.18s;
}
.main-header-login:hover {
  color: #00c6a2;
}
.main-header-register {
  background: #00c6a2;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.3rem;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.08rem;
  transition: background 0.18s;
}
.main-header-register:hover {
  background: #00a78a;
}

/* Pricing Section */
.pricing-section {
  background: #fff;
  padding: 4.5rem 0 3.5rem 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 1;
}
.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.pricing-section h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #222;
}
.pricing-section p {
  text-align: center;
  color: #3a4656;
  font-size: 1.13rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.pricing-cards {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.pricing-card {
  background: #fff;
  border: 1.5px solid #e0f3f0;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  max-width: 370px;
  min-width: 270px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
  margin-bottom: 1.5rem;
  position: relative;
}
.pricing-card-premium {
  border: 2px solid #00c6a2;
  box-shadow: 0 4px 24px 0 rgba(0,198,162,0.10);
}
.pricing-card-header {
  font-size: 1.35rem;
  font-weight: 700;
  color: #22313f;
  margin-bottom: 0.7rem;
  text-align: center;
}
.pricing-badge {
  background: #00c6a2;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 600;
  border-radius: 7px;
  padding: 0.18rem 0.8rem;
  margin-left: 0.7rem;
  vertical-align: middle;
}
.pricing-card-price {
  font-size: 2.3rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 0.2rem;
  text-align: center;
}
.pricing-amount {
  font-size: 2.3rem;
  font-weight: 800;
  color: #00c6a2;
}
.pricing-duration {
  font-size: 1.1rem;
  color: #888;
  font-weight: 400;
  margin-left: 0.2rem;
}
.pricing-card-desc {
  color: #3a4656;
  font-size: 1.09rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
  width: 100%;
}
.pricing-features li {
  display: flex;
  align-items: center;
  font-size: 1.07rem;
  margin-bottom: 1.1rem;
  font-weight: 500;
  color: #222;
}
.pricing-features .material-icons {
  font-size: 1.3rem;
  margin-right: 0.7rem;
}
.pricing-features .included .material-icons {
  color: #00c6a2;
}
.pricing-features .excluded {
  color: #bbb;
  text-decoration: line-through;
}
.pricing-features .excluded .material-icons {
  color: #bbb;
}
.pricing-btn {
  display: inline-block;
  background: #00c6a2;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0.85rem 2.1rem;
  font-size: 1.13rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s;
  box-shadow: 0 2px 8px 0 rgba(0,198,162,0.07);
  width: 100%;
  text-align: center;
}
.pricing-btn:hover {
  background: #00a78a;
}
.pricing-btn-outline {
  background: #fff;
  color: #00c6a2;
  border: 2px solid #00c6a2;
  box-shadow: none;
}
.pricing-btn-outline:hover {
  background: #e6fcf8;
}
/* CTA Section: Ready to Grow Your Business? */
.cta-section {
  background: #00c6a2;
  padding: 3.5rem 0 3.5rem 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 1;
  text-align: center;
}
.cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
}
.cta-section p {
  color: #e6fcf8;
  font-size: 1.13rem;
  margin-bottom: 2.2rem;
  font-weight: 500;
}
.cta-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-block;
  font-size: 1.09rem;
  font-weight: 600;
  border-radius: 7px;
  padding: 0.85rem 2.1rem;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border 0.18s;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  min-width: 180px;
  text-align: center;
}
.cta-btn-primary {
  background: #fff;
  color: #00c6a2;
  border: 2px solid #fff;
}
.cta-btn-primary:hover {
  background: #e6fcf8;
  color: #00a78a;
  border: 2px solid #e6fcf8;
}
.cta-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cta-btn-outline:hover {
  background: #00a78a;
  color: #fff;
  border: 2px solid #00a78a;
}
@media (max-width: 700px) {
  .cta-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .cta-btn, .cta-btn-primary, .cta-btn-outline {
    min-width: 100%;
  }
}
@media (max-width: 1100px) {
  .pricing-cards {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
  }
  .pricing-card {
    max-width: 100%;
    min-width: 0;
    margin: 0 auto 1.5rem auto;
  }
}

/* Suggestions Dropdown Styles */
.suggestions-list {
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.07);
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #eee;
}
.suggestions-list li {
  padding: 0.75rem 1.1rem;
  cursor: pointer;
  font-size: 1.08rem;
  color: #222;
  transition: background 0.16s, color 0.16s;
}
.suggestions-list li:hover,
.suggestions-list li.active {
  background: #e6fcf8;
  color: #00c6a2;
}

/* Hero Section Styles */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 3.5rem 1rem 2.5rem 1rem;
  background: #00c6a2 url('/Assets/Images/Fyndii_Background_IMG.webp') no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #222;
  text-align: center;
  margin-bottom: 1.1rem;
  letter-spacing: -1px;
  margin-right: 1150px;
  opacity: 0;
  animation: heroFadeIn 1.1s ease 0.1s forwards;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #000000;
  text-align: center;
  margin-bottom: 2.2rem;
  font-weight: 400;
  margin-right: 1150px;
  opacity: 0;
  animation: heroFadeIn 1.1s ease 0.4s forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.07);
  padding: 0.5rem 0.7rem 0.5rem 1.2rem;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 2.1rem auto;
  opacity: 0;
  transform: translateY(32px);
  animation: heroSearchFadeIn 1.1s ease 0.7s forwards;
}

@keyframes heroSearchFadeIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-search-box input[type="text"] {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.13rem;
  background: transparent;
  color: #222;
  padding: 0.7rem 0.5rem 0.7rem 0;
  opacity: 0;
  transform: translateY(16px);
  animation: heroSearchInputFadeIn 0.8s ease 1.2s forwards;
}

@keyframes heroSearchInputFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-search-box button {
  background: #00c6a2;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0.7rem 1.5rem;
  font-size: 1.13rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-left: 0.7rem;
  opacity: 0;
  transform: scale(0.95);
  animation: heroSearchButtonFadeIn 0.7s ease 1.5s forwards;
}
.hero-search-box button:hover {
  background: #00a78a;
  box-shadow: 0 2px 8px 0 rgba(0,198,162,0.13);
  transform: scale(1.05);
}

@keyframes heroSearchButtonFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}


.hero-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  justify-content: center;
  margin-top: 0.5rem;
  position: relative;
  z-index: -1;
}

.hero-service-tag {
  background: #e6fcf8;
  color: #00c6a2;
  border-radius: 20px;
  padding: 0.5rem 1.3rem;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, opacity 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.03);
  opacity: 0;
  transform: translateY(24px);
  animation: heroServiceTagFadeIn 0.6s forwards;
}

.hero-service-tag:nth-child(1) { animation-delay: 0.1s; }
.hero-service-tag:nth-child(2) { animation-delay: 0.22s; }
.hero-service-tag:nth-child(3) { animation-delay: 0.34s; }
.hero-service-tag:nth-child(4) { animation-delay: 0.46s; }
.hero-service-tag:nth-child(5) { animation-delay: 0.58s; }
.hero-service-tag:nth-child(6) { animation-delay: 0.7s; }
.hero-service-tag:nth-child(7) { animation-delay: 0.82s; }
.hero-service-tag:nth-child(8) { animation-delay: 0.94s; }
.hero-service-tag:nth-child(9) { animation-delay: 1.06s; }
.hero-service-tag:nth-child(10) { animation-delay: 1.18s; }

@keyframes heroServiceTagFadeIn {
  from { opacity: 0; transform: translateY(24px);}
  to { opacity: 1; transform: translateY(0);}
}

.hero-service-tag:hover, .hero-service-tag:focus {
  background: #00c6a2;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(0,198,162,0.13);
}

/* Dropdown Styles */
.all-services-dropdown {
  display: inline-block;
  position: relative;
}

#toggleAllServices.hero-service-tag {
  background: #f3f3f3;
  color: #333;
  border: 1px solid #e0e0e0;
  font-weight: 600;
  margin-bottom: 0.3rem;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
#toggleAllServices.hero-service-tag:hover, #toggleAllServices.hero-service-tag:focus {
  background: #e6fcf8;
  color: #00c6a2;
  border: 1px solid #00c6a2;
}

#allServicesList {
  display: none;
  position: absolute;
  right: 0 !important;
  left: auto !important;
  top: 110%;
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.13);
  border-radiu0: 12px;
  padding: 1rem 0.7rem 1rem 0.7rem;
  max-height: 340p2;
  overflow-y: auto;
  min-width: 240px;
  z-index: 9999;
  border: 1px solid #e0e0e0;
  animation: dropdownFadeIn 0.18s;
}

#allServicesList .hero-service-tag {
  display: block;
  width: 100%;
  margin: 0 0 8px 0;
  text-align: left; 0 9rder-radius: 14px;
  font-size: 1.01rem;
  padding: 0.48rem 1.1rem;
  background: #f8f8f8;
  color: #00c6a2;
  border: none;
  box-shadow: none;
  transition: background 0.16s, color 0.16s;
}
#allServicesList .hero-service-tag:hover, #allServicesList .hero-service-tag:focus {
  background: #00c6a2;
  color: #fff;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
