.rating-text {
  font-size: 16px;
  margin: 0;
  display: inline;
}
  

.tab-buttons {
  margin-bottom: 1.5rem;
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

  
  .testimonial-wrapper {
      overflow: hidden;
      position: relative;
    }
    .testimonial-track {
      display: flex;
      transition: transform 0.5s ease;
      gap: 1.5rem;
    }
    .testimonial-card {
      background-color: #ffffff;
      border: none;
      padding: 1.5rem;
      border-radius: 0.5rem;
      box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
      flex: 0 0 calc((100% - 3rem) / 3);
      max-width: calc((100% - 3rem) / 3);
    }
    .testimonial-card .stars {
      color: #ffc107;
      margin-bottom: 0.5rem;
      font-size: 1.25rem;
    }
   
    .testimonial-card .card-body {
      padding: 0;
    }
    .testimonial-card .card-text {
      font-style: italic;
    }
    .testimonial-card .card-footer {
      background-color: transparent;
      border-top: none;
      font-weight: bold;
    }
    .testimonial-controls {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }
    @media (max-width: 768px) {
      .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
      }
      .rating {}
    }
  
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
  margin-bottom: 20px;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}
  
  
/* --- FAQ Accordion Styles --- */
        .faq-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1rem; /* space-y-4 */
        }

        .faq-item {
            background-color: #fff;
            border-radius: 0.75rem; /* rounded-xl */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
            overflow: hidden;
            border: 1px solid #e5e7eb;
            transition: box-shadow 0.3s ease-in-out;
          margin-bottom: 10px;
        }
        .faq-item:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* hover:shadow-xl */
        }

        /* Summary (Question) Styles */
        .faq-item summary {
            display: flex;
            align-items: center;
            padding: 1.25rem; /* p-5 */
            cursor: pointer;
            font-size: 1.125rem; /* text-lg */
            font-weight: 600; /* font-semibold */
            color: #000000;
            transition: background-color 0.15s ease-in-out;
            list-style: none; /* Remove default marker */
        }

        .faq-item summary:hover {
            color: #A31824;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        /* Chevron Icon Styles */
        .chevron-icon {
            width: 1.25rem; /* w-5 */
            height: 1.25rem; /* h-5 */
            margin-right: 1rem; /* mr-4 */
            flex-shrink: 0;
            transition: transform 0.3s ease-in-out;
        }

        /* Rotate the chevron when the details element is open */
        .faq-item[open] .chevron-icon {
            transform: rotate(90deg);
        }

        /* Answer Content Styles */
        .faq-answer {
            padding: 0 1.25rem 1.25rem 1.25rem; /* px-5 pb-5 pt-3 */
            color: #374151;
            border-top: 1px solid #e5e7eb;
        }

        .faq-answer p {
            margin-top: 0.75rem;
            line-height: 1.6;
        }
