/* --------------------------------------------------
   GLOBAL RESET & BASE
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* --------------------------------------------------
   CONTAINERS
-------------------------------------------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo svg {
  width: 40px;
  height: 40px;
  color: #57C049;
}

.logo-text-main {
  font-size: 1.25rem;
  font-weight: 700;
}

.logo-text-sub {
  font-size: 0.85rem;
  color: #57C049;
}

nav a {
  margin: 0 0.75rem;
  text-decoration: none;
  font-weight: 500;
  color: #333;
  transition: 0.2s;
}

nav a:hover {
  color: #57C049;
}

.header-cta {
  background: #57C049;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.header-cta:hover {
  background: #4cb040;
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
  position: relative;
  padding: 6rem 0;
  background: url('photos/van.jpg') center/cover no-repeat;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-tag {
  background: #57C049;
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.match-btn {
  background: #57C049;
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.match-btn:hover {
  background: #4cb040;
  transform: translateY(-3px);
}

/* --------------------------------------------------
   STATS
-------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  margin: 3rem 0;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #57C049;
}

.stat-label {
  font-size: 0.9rem;
  color: #555;
}

/* --------------------------------------------------
   SERVICES
-------------------------------------------------- */
.section-label {
  color: #57C049;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-lead {
  color: #555;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: #57C049;
  margin-bottom: 1rem;
}

/* --------------------------------------------------
   GALLERY
-------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
}

.gallery-caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

/* --------------------------------------------------
   ABOUT
-------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-list {
  margin-top: 1rem;
  list-style: none;
}

.about-list li {
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------
   TESTIMONIALS
-------------------------------------------------- */
.testimonial {
  background: #f7f7f7;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* --------------------------------------------------
   REVIEWS SECTION
-------------------------------------------------- */

/* FIXED: review-links must be vertical */
.review-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

/* NEW: layout for extra buttons */
.review-extra-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

/* NEW: branded buttons */
.facebook-btn {
  background: #1877F2;
  color: #fff;
}

.google-btn {
  background: #4285F4;
  color: #fff;
}

.facebook-embed iframe {
  width: 100%;
  max-width: 500px;
}

/* --------------------------------------------------
   CONTACT SECTION
-------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background: #f5f5f5;
  padding: 3rem 0;
  margin-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo svg {
  width: 45px;
  height: 45px;
  color: #57C049;
}

.footer-logo-main {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-logo-sub {
  font-size: 0.9rem;
  color: #57C049;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #57C049;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-icon {
  width: 20px;
  margin-right: 0.5rem;
}

.footer-qr img {
  width: 25%;
  max-width: 120px;
}

.footer-copy {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}

/* --------------------------------------------------
   RESPONSIVE DESIGN
-------------------------------------------------- */
@media (max-width: 900px) {
  .services-grid,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .services-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------
   ANIMATIONS
-------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content {
  animation: fadeUp 1s ease forwards;
}

/* --------------------------------------------------
   DARK MODE
-------------------------------------------------- */
@media (prefers-color-scheme: dark) {
  body {
    background: #111;
    color: #eee;
  }

  header {
    background: #222;
    border-bottom-color: #333;
  }

  nav a {
    color: #ccc;
  }

  nav a:hover {
    color: #57C049;
  }

  .service-card {
    background: #222;
    color: #eee;
  }

  .testimonial {
    background: #222;
    color: #eee;
  }

  footer {
    background: #222;
  }

  .footer-links a {
    color: #ccc;
  }

  .footer-links a:hover {
    color: #57C049;
  }

  .footer-copy {
    color: #aaa;
  }
}
