/* Import Google Reviews Widget Styles */
/* Floating Review Widget */
.review-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 280px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.review-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.review-widget:active {
  transform: translateY(-1px) scale(0.98);
}

.widget-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.google-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.widget-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.rating-container {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.rating-value {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-right: 8px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 16px;
  height: 16px;
  fill: #fbbf24;
}

.review-count {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.review-count:hover {
  color: #4285f4;
}

.recent-review {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.reviewer-info {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.reviewer-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4285f4;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  margin-right: 8px;
  overflow: hidden;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.reviewer-avatar .initials {
  display: none;
}

.reviewer-avatar.fallback img {
  display: none;
}

.reviewer-avatar.fallback .initials {
  display: flex;
}

.reviewer-name {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.review-text {
  font-size: 13px;
  line-height: 1.4;
  color: #555;
  margin-bottom: 8px;
}

.review-date {
  font-size: 12px;
  color: #999;
}

/* Hidden state */
.review-widget.hidden {
  transform: translateX(320px);
  opacity: 0;
  pointer-events: none;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  .review-widget {
    width: 200px;
    right: 20px;
    padding: 16px;
  }
  .recent-review {
    display: none;
  }
  .widget-title {
    font-size: 14px;
  }
  .rating-value {
    font-size: 20px;
  }
  .review-count {
    font-size: 13px;
  }
}
/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.modal-close:hover {
  background-color: #f5f5f5;
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #333;
}

.modal-google-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.modal-google-logo {
  font-size: 18px;
  font-weight: 500;
  margin-right: 8px;
}

.modal-google-logo .google-g {
  color: #4285f4;
}

.modal-google-logo .google-o1 {
  color: #ea4335;
}

.modal-google-logo .google-o2 {
  color: #fbbc05;
}

.modal-google-logo .google-g2 {
  color: #4285f4;
}

.modal-google-logo .google-l {
  color: #34a853;
}

.modal-google-logo .google-e {
  color: #ea4335;
}

.modal-rating-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.modal-rating-value {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

.modal-stars {
  display: flex;
  gap: 2px;
}

.modal-star {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
}

.modal-review-count {
  color: #666;
  font-size: 16px;
}

.review-google-btn {
  background: #4285f4;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 16px;
}

.review-google-btn:hover {
  background: #3367d6;
}

.modal-content {
  padding: 0 24px 24px;
  max-height: 400px;
  overflow-y: auto;
}

.review-item {
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.review-item:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4285f4;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  margin-right: 12px;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.review-avatar .initials {
  display: none;
}

.review-avatar.fallback img {
  display: none;
}

.review-avatar.fallback .initials {
  display: flex;
}

.review-info {
  flex: 1;
}

.review-author {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 2px;
}

.review-date {
  font-size: 12px;
  color: #666;
}

.review-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 8px;
}

.review-star {
  width: 14px;
  height: 14px;
  fill: #fbbf24;
}

.review-text {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 8px;
}

.review-source {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #666;
}

.review-source svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.load-more-btn {
  width: 100%;
  padding: 12px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 16px;
}

.load-more-btn:hover {
  background: #f0f0f0;
}

/* Mobile specific button styles */
@media (max-width: 640px) {
  .load-more-btn {
    padding: 14px 12px;
    font-size: 16px;
    min-height: 48px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 20px;
    -webkit-appearance: none;
    appearance: none;
  }
  .modal {
    max-height: 85vh;
    width: 95%;
  }
  .modal-content {
    max-height: calc(85vh - 200px);
    padding-bottom: 80px; /* Extra space for button */
  }
  .modal-header {
    padding: 20px 16px 16px;
  }
}
/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) and (max-height: 667px) {
  .modal {
    max-height: 90vh;
    width: 98%;
  }
  .modal-content {
    max-height: calc(90vh - 180px);
    padding-bottom: 100px; /* More space for button */
  }
}
body {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* Minimal Design Enhancements */
.font-light {
  font-weight: 300;
}

/* Enhanced button styles */
.bg-gray-900 {
  transition: all 0.3s ease;
}

/* Image hover effects */
img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

section img:hover {
  transform: scale(1.02);
}

/* Typography adjustments for minimal aesthetic */
h1, h2, h3 {
  letter-spacing: 0.05em;
}

/* Smooth transitions for all interactive elements */
a, button {
  transition: all 0.3s ease;
}

/* Responsive typography */
@media (max-width: 768px) {
  .text-4xl {
    font-size: 2rem;
  }
  .text-5xl {
    font-size: 2.5rem;
  }
}

/*# sourceMappingURL=styles.css.map */