/* ============================================================
   花語花舍 Floral Whisper — Shared Styles
   no-slop-ui: clean, restrained, fresh.
   Palette: Teal-green primary (natural) + rose accent.
   ============================================================ */

/* --- Design Tokens (Light) --- */
:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-hover: #f4f4f5;
  --primary: #0f766e;
  --primary-hover: #115e59;
  --primary-light: #ccfbf1;
  --secondary: #14b8a6;
  --accent: #e11d48;
  --accent-hover: #be123c;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-inverse: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --focus-ring: #0f766e;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --font: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 150ms ease;
}

/* --- Dark Mode --- */
[data-theme="dark"] {
  --bg: #0f172a;
  --surface: #1e293b;
  --surface-hover: #273449;
  --primary: #2dd4bf;
  --primary-hover: #5eead4;
  --primary-light: #134e4a;
  --secondary: #5eead4;
  --accent: #fb7185;
  --accent-hover: #f43f5e;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-inverse: #0f172a;
  --border: #334155;
  --border-light: #1e293b;
  --focus-ring: #2dd4bf;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.15);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.25);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: bodyFadeIn 0.4s ease;
}

@keyframes bodyFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--primary-hover); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
  margin-top: 0;
}

h1 { font-size: clamp(1.75rem, 1.3rem + 2vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem); }
h3 { font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem); }

p { margin: 0 0 1rem; color: var(--text-muted); }

/* --- Accessibility --- */
:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: var(--text-inverse);
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
  font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Announcement Bar --- */
.announcebar {
  background: var(--primary);
  color: var(--text-inverse);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.announcebar a {
  color: var(--text-inverse);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Navigation --- */
.navbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand .brand-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--text-inverse);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--surface-hover);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
}
.theme-toggle:hover { background: var(--surface-hover); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition);
}

/* --- Mobile Nav --- */
@media (max-width: 991px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.5rem;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.75rem 1rem; }
  .nav-phone { display: none; }
}

/* --- Page Header --- */
.page-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.page-header h1 {
  margin-bottom: 0.5rem;
}
.page-header p {
  font-size: 1.0625rem;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
}
.breadcrumb li { color: var(--text-muted); }
.breadcrumb li + li::before {
  content: '/';
  margin-right: 0.5rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--text); }

/* --- Sections --- */
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p {
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  line-height: 1.4;
}
.btn:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }

.btn-primary {
  background: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--text-inverse);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--surface-hover);
  border-color: var(--text-muted);
  color: var(--text);
}

.btn-accent {
  background: var(--accent);
  color: var(--text-inverse);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--text-inverse);
}

.btn-lg {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.375rem 0.875rem;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
  animation: heroReveal 0.6s ease;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content { animation: none; }
}

.hero-content h1 {
  font-size: clamp(2rem, 1.5rem + 3vw, 3.25rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-actions .btn-hero {
  background: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background var(--transition);
}
.hero-actions .btn-hero:hover {
  background: var(--primary-hover);
  color: var(--text-inverse);
}

.hero-actions .btn-hero-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.5);
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}
.hero-actions .btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: #ffffff;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat-number {
  font-size: 1.375rem;
  font-weight: 800;
  color: #ffffff;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: box-shadow var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
}
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.service-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.service-card .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0.75rem 0 0.25rem;
}
.service-card .price small {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* --- News / Blog Cards --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.news-card:hover {
  box-shadow: var(--shadow-md);
}
.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-card-body {
  padding: 1.25rem;
}
.news-card-body h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}
.news-card-body .date {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* --- Why Us / Mission --- */
.why-us {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.why-us-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.why-us-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.why-us-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-us .container {
  position: relative;
  z-index: 1;
}
.why-us-content {
  max-width: 720px;
}
.why-us-content h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}
.why-us-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
}
.why-us-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.why-us-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}
.why-us-stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
}

/* --- Mission Statement --- */
.mission-section {
  background: var(--surface);
  padding: 4rem 0;
  text-align: center;
}
.mission-section blockquote {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.8;
  border: none;
  padding: 0;
}
.mission-section blockquote::before { content: '\201C'; color: var(--primary); font-size: 2rem; }
.mission-section blockquote::after { content: '\201D'; color: var(--primary); font-size: 2rem; }

/* --- Logo Strip --- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.logo-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--primary);
  color: var(--text-inverse);
  text-align: center;
  padding: 3rem 0;
}
.cta-banner h2 {
  color: var(--text-inverse);
  margin-bottom: 0.5rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}
.cta-banner .btn-primary {
  background: var(--text-inverse);
  color: var(--primary);
  border-color: var(--text-inverse);
}
.cta-banner .btn-primary:hover {
  background: var(--surface-hover);
  color: var(--primary-hover);
  border-color: var(--bg);
}

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.about-image img {
  width: 100%;
  border-radius: var(--radius-md);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.value-card .value-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

/* --- Team Profiles --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
}
.team-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.team-card-body {
  padding: 1.25rem;
  text-align: center;
}
.team-card-body h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}
.team-card-body .role {
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 600;
}

/* --- Certifications --- */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.cert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.cert-card .cert-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.cert-card .cert-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* --- Blog Page --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body {
  padding: 1.25rem;
}
.blog-card-body .date {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}
.blog-card-body h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}
.blog-card-body .excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* --- Pagination --- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.page-link:hover {
  background: var(--surface-hover);
  color: var(--text);
}
.page-link.active {
  background: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
}
.page-link[aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item .icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.contact-info-item .info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.125rem;
}
.contact-info-item .info-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.map-placeholder {
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* --- Form --- */
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  line-height: 1.5;
}
.form-control:focus {
  outline: none;
  border-color: var(--focus-ring);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}
.form-control.is-invalid {
  border-color: var(--accent);
}
.form-error {
  color: var(--accent);
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

/* --- Thank You --- */
.thank-you {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.thank-you .icon-check {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* --- Card --- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.card-body {
  padding: 1.5rem;
}

/* --- Footer --- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  font-size: 0.875rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.footer h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Service Detail Page --- */
.service-detail {
  margin-bottom: 3rem;
}
.service-detail .service-detail-header {
  margin-bottom: 1rem;
}
.service-detail-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}
.service-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 1rem 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.service-detail-meta strong {
  color: var(--text);
}
