/* Utility */
.white-bg { background-color: #ffffff; }
.mint-bg { background-color: var(--light-bg); }
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}
.section-subtitle {
  margin: 1rem auto 2rem;
  max-width: 700px;
  font-weight: 500;
  text-align: center;
  font-size: 1.05rem;
}


/* Hero */
.hero {
  background: url('/assets/images/hero.png') center/cover no-repeat;
  text-align: center;
  color: var(--text-light);
  padding: 10rem 2rem 6rem;
  min-height: 100vh; /* Full screen height */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
    color: #ffffff; 
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}


.hero-btn {
  background: var(--primary);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.hero-btn:hover {
  background: var(--primary-hover);
}


/* Services Section */
.services-section {
  padding: 6rem 1.5rem;
  background-color: white;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.service-text {
  flex: 1 1 500px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.service-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #10b981; /* Soft emerald green */
  border-radius: 50%;
}

.service-btn {
  display: inline-block;
  background-color: #10b981;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-btn:hover {
  background-color: #059669;
  transform: translateY(-2px);
}

.service-image {
  flex: 1 1 500px;
  text-align: center;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

/* Preventive Tips Scroll */
.scroll-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem 0;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.scroll-content {
  display: flex;
  gap: 2rem;
}

/* Tip card styling */
.tip-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1rem;
  min-width: 220px;
  text-align: center;
}

.tip-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Google Reviews */
.google-reviews {
  padding: var(--section-padding);
  text-align: center;
}
.review-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}
.review-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width: 300px;
  text-align: left;
}
.review-card p {
  font-style: italic;
}
.review-card h4 {
  margin-top: 1rem;
  color: var(--primary);
}
.review-card span {
  color: gold;
}

/* CTA Section */
.cta {
  padding: var(--section-padding);
  text-align: center;
}
.cta .btn {
  margin: 0.5rem;
  background: var(--primary);
  color: var(--text-light);
}
.cta .btn:hover {
  background: var(--accent);
}

/* Contact */
.find {
  padding: var(--section-padding);
}
.contact-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.map-container iframe {
  width: 100%;
  height: 350px;
  border-radius: var(--radius);
  border: none;
}
.contact-info a:hover {
  color: var(--primary-hover);
}
.contact-info .btn {
  margin-top: 1rem;
  background: var(--primary);
  color: var(--text-light);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.contact-info .btn:hover {
  background: var(--primary-hover);
}