:root {
  --c-primary: #003874;
  --c-accent:  #006c49;
  --c-light:   #eff4ff;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: #0d1c2e; background: #f8f9ff; line-height: 1.6; }
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* Nav */
.nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2.5rem; background: var(--c-primary); color: #fff; }
.logo { font-weight: 700; font-size: 1.25rem; }
.nav-links { display: flex; gap: 1.5rem; font-size: 0.9rem; opacity: 0.9; }
.nav-links a:hover { opacity: 1; text-decoration: underline; }

/* Hero */
.hero { position: relative; background: var(--c-primary); color: #fff; text-align: center; padding: 5rem 2rem; }
.hero-img { width: 100%; max-height: 420px; object-fit: cover; position: absolute; inset: 0; opacity: 0.25; }
.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: 2.8rem; font-weight: 700; margin-bottom: 1rem; }
.hero-sub { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn-primary { display: inline-block; background: var(--c-accent); color: #fff; padding: 0.75rem 2rem; border-radius: 0.5rem; font-weight: 600; transition: opacity 0.2s; }
.btn-primary:hover { opacity: 0.9; }

/* Sections */
.about, .services, .testimonials, .gallery, .contact { padding: 4rem 0; }
.about { background: #fff; }
.services { background: #f8f9ff; }
.testimonials { background: var(--c-light); }
.gallery { background: #fff; }
.contact { background: var(--c-primary); color: #fff; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--c-primary); }
.contact h2 { color: #fff; }
.contact a { color: #6cf8bb; }
.contact p { margin-bottom: 0.5rem; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.service-card { background: #fff; border-radius: 0.75rem; padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #e6eeff; }
.icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--c-primary); }

/* Testimonials */
blockquote { background: #fff; border-left: 4px solid var(--c-accent); padding: 1.2rem 1.5rem; margin-bottom: 1.2rem; border-radius: 0 0.5rem 0.5rem 0; }
blockquote footer { margin-top: 0.5rem; font-size: 0.9rem; color: #424751; }
.stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 0.05em; margin-bottom: 0.4rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 1rem; }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 0.5rem; }

/* Footer */
footer { background: #0d1c2e; color: #aac7ff; text-align: center; padding: 1.5rem; font-size: 0.9rem; }

@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .nav-links { display: none; }
}
.location { background: #f8fafc; }
.location h2 { color: var(--c-primary); }
.hours-grid { margin: 1.5rem 0; }
.hours-grid h3 { font-size: 1.1rem; font-weight: 600; color: var(--c-primary); margin-bottom: 0.75rem; }
.hours-grid ul { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 0.4rem; }
.hours-grid li { padding: 0.5rem 0.75rem; background: #fff; border-radius: 0.5rem; border: 1px solid #e6eeff; font-size: 0.9rem; color: #424751; }
.location > p { margin-top: 1rem; color: #555; }
.logo-img { height: 40px; max-width: 160px; object-fit: contain; vertical-align: middle; }

:root{--c-primary:#006c49;--c-primary2:#009966;--c-accent:#1a4f95;--c-light:#f0fff8;--c-on-dark:#a8f5c9;}
