:root {
  --brand: #098fd5;
  --brand-600: #077cb7;
  --text: #1e293b;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f7fafc;
  --surface: #ffffff;
  --border: #e5e7eb;
  --radius: 10px;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, 92%); margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.9); -webkit-backdrop-filter: saturate(180%) blur(8px); backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 12px 0; }
.brand-logo { height: 72px; width: auto; }
.primary-nav { margin-left: auto; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle-bar { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; }
.nav-list { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.nav-list a { color: var(--text); font-weight: 500; }
.header-cta .btn-outline { border: 1px solid var(--brand); color: var(--brand); padding: 8px 14px; border-radius: 999px; font-weight: 600; }
.header-cta .btn-outline:hover { background: var(--brand); color: #fff; text-decoration: none; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-block; }
  .nav-list { position: absolute; right: 4%; top: 64px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 12px; display: none; flex-direction: column; min-width: 220px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
  .nav-list.open { display: flex; }
}

/* Hero */
.hero { position: relative; min-height: 64vh; display: grid; place-items: center; text-align: center; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; filter: brightness(65%); opacity: 0; transition: opacity .8s ease; }
.hero-bg.is-visible { opacity: 1; }
.hero-content { position: relative; z-index: 1; color: #fff; padding: 80px 0; }
.hero h1 { font-family: "Raleway", sans-serif; font-weight: 900; font-size: clamp(32px, 6vw, 56px); margin: 10px 0; }
.hero p { max-width: 820px; margin: 0 auto 20px; font-size: clamp(16px, 2.5vw, 20px); }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-block; padding: 12px 18px; border-radius: 10px; font-weight: 700; background: #fff; color: var(--text); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-600); color: #fff; text-decoration: none; }

/* Sections */
.section { padding: 72px 0; }
.section.alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 28px; }
.section-header h2 { font-family: "Raleway", sans-serif; font-size: clamp(24px, 4vw, 40px); margin: 0; position: relative; display: inline-block; }
.section-header h2::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -10px; width: 80px; height: 3px; background: var(--brand); border-radius: 999px; }
.section-subtitle { color: var(--muted); margin-top: 15px; }

/* Features */
.features { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 28px; }
@media (min-width: 820px) { .features { grid-template-columns: repeat(2, 1fr); } }
/* Center the last item if odd count for nicer balance */
.features > .feature:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; max-width: 560px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; position: relative; overflow: hidden; }
.feature-card { box-shadow: 0 10px 30px rgba(0,0,0,0.06); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 200px at -10% -10%, rgba(9,143,213,0.12), transparent 50%); pointer-events: none; }
.feature-card:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: var(--brand); background: rgba(9,143,213,0.12); margin-bottom: 10px; font-size: 24px; }
.feature h3 { margin: 0 0 6px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); }
.feature h3 { margin: 0 0 8px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); }

/* Services */
.service-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-rows: auto 1fr; }
.service-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.service-card h3 { margin: 12px 0 6px; font-size: 20px; }
.service-card p { margin: 0 0 10px; color: var(--muted); }
.service-card > div { padding: 12px 14px 16px; }
.service-link { font-weight: 600; }

/* Expandable service details */
.service-more { margin-top: 6px; }
.service-more summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 6px; color: var(--brand); font-weight: 700; }
.service-more summary::-webkit-details-marker { display: none; }
.service-more[open] summary i { transform: rotate(180deg); }
.service-more i { transition: transform .2s ease; }
.service-points { margin: 8px 0 0 0; padding-left: 18px; color: var(--text); }
.service-points li { margin: 4px 0; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.gallery-item { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: #fff; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.03); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; text-align: center; }
.pricing-card h3 { margin: 0 0 6px; font-size: 20px; }
.pricing-detail { margin: 0 0 10px; color: var(--muted); }
.pricing-price { margin: 0; font-size: 22px; font-weight: 800; color: var(--brand); }
.pricing-note { margin-top: 12px; color: var(--muted); text-align: center; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 880px; margin: 0 auto; }
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.quote { font-weight: 700; font-size: 18px; margin: 0 0 8px; }
.testimonial footer { color: var(--muted); font-size: 14px; display: flex; gap: 10px; }
.testimonial footer .context::before { content: "\2014"; display: inline-block; margin: 0 0.2em; }
.reviews-summary { max-width: 880px; margin: 0 auto 12px; }
.reviews-card { display: flex; justify-content: space-between; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.reviews-score { display: flex; align-items: baseline; gap: 6px; color: #059669; }
.reviews-score-value { font-weight: 900; font-size: 28px; line-height: 1; }
.reviews-score-denom { font-weight: 700; font-size: 14px; color: #065f46; }
.reviews-stars { color: #f59e0b; margin-top: 4px; }
.reviews-stars i { margin-right: 2px; }
.reviews-meta { color: var(--muted); font-size: 14px; margin-top: 2px; display: flex; align-items: center; gap: 6px; }
.reviews-cta { text-align: center; margin-top: 14px; }
.btn.btn-outline { border: 1px solid var(--brand); color: var(--brand); padding: 8px 14px; border-radius: 999px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.btn.btn-outline:hover { background: var(--brand); color: #fff; text-decoration: none; }

/* CTA */
.cta { text-align: center; }
.cta-actions { display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; }
.or { color: var(--muted); }

/* Contact / Quote */
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.contact-cta { text-align: center; max-width: 820px; margin: 0 auto; }
.contact-cta-line { margin: 0 0 10px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.btn-lg { padding: 14px 18px; border-radius: 12px; font-size: 16px; font-weight: 800; }

/* Footer */
.site-footer { background: #111827; color: #e5e7eb; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.site-footer h3 { margin: 0 0 8px; font-size: 18px; color: #fff; }
.site-footer p { margin: 0 0 8px; color: #cbd5e1; }
.map-wrap { border-radius: 10px; overflow: hidden; border: 1px solid #374151; }
.footer-bottom { padding-top: 12px; border-top: 1px solid #374151; margin-top: 18px; text-align: center; color: #9ca3af; }
.emergency-note { margin-top: 4px; color: #fca5a5; display: flex; align-items: center; gap: 6px; }

/* Accreditations */
.badges { list-style: none; display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; margin: 0; padding: 0; }
.badge-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 10px 14px; }
.badge-item img { height: 60px; width: auto; display: block; }
