:root {
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --primary: #f7b500;       /* sunshine yellow */
  --primary-dark: #e09f00;
  --accent: #1f2933;        /* dark slate */
  --text: #1f2933;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius: 8px;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --max-width: 1120px;
}

/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--accent);
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.1rem;
}

/* Layout */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-light {
  background-color: var(--bg-alt);
}

.section-intro {
  max-width: 640px;
  color: var(--text-muted);
}

.section-actions {
  margin-top: 2rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease,
    box-shadow 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #111827;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--border);
}

.btn-outline:hover {
  background-color: var(--bg-alt);
}

.btn-secondary {
  background-color: var(--accent);
  color: #f9fafb;
}

.btn-secondary:hover {
  background-color: #111827;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

.logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
}

.logo span {
  color: var(--primary-dark);
}

.main-nav ul {
  display: flex;
  gap: 1.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--accent);
}

.header-cta {
  margin-left: 1rem;
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Hero */

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 2.5rem;
}

.hero-text p {
  margin-top: 0.75rem;
}

.hero-text > p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-trust {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-phone {
  margin-top: 0.3rem;
  font-size: 0.9rem;
}

.hero-image img {
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* Cards grid */

.cards-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #ffffff;
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.card p {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
}

/* Benefits */

.benefits-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.benefit {
  padding: 1.4rem;
  background-color: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Testimonials */

.testimonials-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  margin: 0;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.testimonial blockquote {
  margin: 0 0 0.75rem;
  font-style: italic;
  color: var(--text);
}

.testimonial figcaption {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.reviews-link {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

/* Gallery */

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.gallery-note {
  margin-top: 1rem;
  color: var(--text-muted);
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

/* Contact & Hours */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-area {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-form {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 0.9rem;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  font: inherit;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 1px rgba(240, 180, 0, 0.3);
}

.contact-alt {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

/* FAQ */

.faq-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: #ffffff;
}

.faq-item p {
  margin: 0.4rem 0 0;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  background-color: #0b1120;
  color: #e5e7eb;
  margin-top: 3rem;
  padding-top: 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  padding: 0 1.5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-name {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  margin: 0;
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #e5e7eb;
}

.footer-links a:hover {
  color: #fbbf24;
}

.footer-contact {
  font-size: 0.9rem;
}

.footer-contact a {
  color: #fbbf24;
}

.footer-social {
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  text-align: center;
  padding: 0.75rem 1.5rem 1.3rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-inner {
    gap: 1.8rem;
  }

  .hero-image {
    order: -1;
  }

  .header-inner {
    padding-inline: 1.2rem;
  }

  .main-nav ul {
    gap: 1rem;
  }
}

@media (max-width: 720px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 56px;
    right: 1.5rem;
    background-color: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    display: none;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.6rem;
  }

  .main-nav.nav-open {
    display: block;
  }

  .nav-toggle {
    display: block;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.image-container {
  display: flex;          /* Enables flexbox layout for the container */
  justify-content: center; /* Centers the images horizontally */
  align-items: center;     /* Centers the images vertically */
  gap: 20px;              /* Adds space between images */
}

.image-container img {
  width: 150px;           /* Set a consistent width for images */
  height: auto;           /* Maintain aspect ratio */
}

