/* ---------- Reset & base ---------- */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f7f6;
  color: #333333;
  margin: 0;
  padding: 0;
  text-align: center;
}

h1, h2, h3 {
  color: #1a252f;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Header ---------- */
.site-header {
  padding: 1.5rem 1rem;
}

.site-logo {
  font-size: 1.75rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.logo-img {
  height: 2.5rem;
  width: auto;
}

.site-header h1 {
  font-size: 2rem;
  max-width: 50rem;
  margin: 1rem auto;
  padding: 0 1rem;
}

.tagline {
  font-size: 1.125rem;
  color: #555555;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
}

.header-cta {
  margin-top: 1rem;
}

.phone-link {
  display: inline-block;
  width: 100%;
  max-width: 22rem;
  font-size: 1.25rem;
  color: #1a252f;
  font-weight: bold;
  text-decoration: none;
  background-color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.3rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ---------- Services ---------- */
.services-section {
  padding: 2.5rem 1rem;
}

.services-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  max-width: 68.75rem;
  margin: 0 auto;
}

.service-card {
  background: white;
  width: 100%;
  max-width: 25rem;
  flex: 1 1 17.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  text-align: left;
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-content {
  padding: 1.25rem;
}

.card-content h3 {
  margin: 0 0 0.5rem;
}

.card-content p {
  margin: 0;
  color: #555555;
  font-size: 1rem;
}

/* ---------- Why choose us ---------- */
.why-choose-us-section {
  padding: 2.5rem 1rem;
  background-color: #f8f9fa;
}

.why-choose-us-section h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #0f2d4a;
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 68.75rem;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  padding: 0.9rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 1px solid #eef0f2;
  color: #333;
  margin: 0;
}

/* ---------- Work gallery ---------- */
.gallery-container {
  padding: 2.5rem 1rem;
}

.gallery-container h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #0f2d4a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 68.75rem;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.6rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.gallery-item {
  position: relative;
  flex: 1 1 10rem;
  margin: 0;
  overflow: hidden;
  border-radius: 0.375rem;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 0.25rem;
  margin: 0;
}

.before .badge {
  background-color: rgba(220, 53, 69, 0.9);
}

.after .badge {
  background-color: rgba(40, 167, 69, 0.9);
}



/* ---------- Testimonials ---------- */
.testimonials-section {
  padding: 2.5rem 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 1.5rem;
  max-width: 68.75rem;
  margin: 0 auto;
  align-items: stretch;
  
}

.testimonial-box {
  background-color: #ffffff;
  border-left: 5px solid #007BFF;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 25rem;
  margin: 0 auto;
}

.testimonial-stars {
  color: #ffcc00;
  font-size: 1.375rem;
  letter-spacing: 0.125rem;
  margin-bottom: 0.625rem;
}

.testimonial-text {
  color: #4A5568;
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 1rem;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  border: none;
}

.testimonial-author {
  font-weight: bold;
  font-style: normal;
  color: #1A202C;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
}

.read-review-link {
  font-size: 0.8125rem;
  color: #007BFF;
  text-decoration: none;
  font-weight: 600;
}

.read-review-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 2rem 1rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: #555555;
}
