:root {
  --primary: #57C049;
  --primary-dark: #3c8f34;
  --dark: #1a1a1a;
  --muted: #666;
  --bg: #f7f7f7;
  --radius: 8px;
  --container: 1100px;
  font-family: 'Outfit', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: var(--dark);
  line-height: 1.6;
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Layout */

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Header */

header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--dark);
}

.logo-img {
  width: 60px;
  height: auto;
  display: block;
}

.logo-text-main {
  font-weight: 700;
  font-size: 1rem;
}

.logo-text-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

nav a {
  margin: 0 0.75rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--primary);
}

.header-cta {
  background: var(--primary);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.header-cta:hover {
  background: var(--primary-dark);
}

/* Hero */

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("photos/van.png") center center / cover no-repeat;
  z-index: -2;
  filter: brightness(0.45);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  max-width: 520px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* HERO BUTTON FIX */

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-btn svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.hero-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* Stats */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0 3rem;
}

.stat {
  padding: 1.2rem 1rem;
  border-radius: var(--radius);
  background: #f9faf8;
  border: 1px solid #e3e7df;
}

.stat-value {
  font-weight: 700;
  font-size: 1.1rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Sections */

section {
  padding: 3.5rem 0;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 0.6rem;
}

.section-lead {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 520px;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #eef5ea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.service-card h3 {
  margin: 0.9rem 0 0.4rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Gallery */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

.gallery-caption {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.about-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}

/* BADGES */

.badge-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.badge-small {
  width: 120px;
  height: auto;
}

.badge-large {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin-top: 1.5rem;
  border-radius: var(--radius);
}

/* Testimonials */

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.testimonial {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: #f9faf8;
  border: 1px solid #e3e7df;
}

.testimonial p {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
}

.testimonial cite {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Reviews & Social */

.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.icon {
  width: 20px;
  height: 20px;
}

.google-btn {
  background: #4285F4;
  color: #fff;
}

.google-btn:hover {
  background: #3573d8;
}

.facebook-embed {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.facebook-embed iframe {
  border-radius: var(--radius);
}

/* Contact */

.contact-section {
  background: #f7f8f5;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-info {
  margin: 1rem 0 0;
}

.contact-info dt {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

.contact-info dd {
  margin: 0.1rem 0 0.4rem;
  font-size: 0.9rem;
}

.contact-info a {
  color: var(--dark);
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--primary);
}

/* Footer */

footer {
  background: #111;
  color: #fff;
  padding: 2.5rem 0;
  margin-top: 3rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-logo img {
  width: 140px;
  height: auto;
}

.footer-contact p {
  margin: 0.2rem 0;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #ccc;
}

/* MATCH BUTTON (Google + Facebook default) */

.match-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f1f1f1;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid #ddd;
  transition: background 0.2s ease;
}

.match-btn:hover {
  background: #e5e5e5;
}

/* BOOK ONLINE BUTTON — PRIMARY CTA */

.contact-actions .match-btn {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary-dark);
  justify-content: center;
  font-size: 0.95rem;
  padding: 0.85rem 1.4rem;
}

.contact-actions .match-btn svg {
  color: #fff;
}

.contact-actions .match-btn:hover {
  background: var(--primary-dark);
}

/* Floating Buttons */

.floating-book {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.floating-book:hover {
  background: var(--primary-dark);
}
