/*
  Hand-written stylesheet for the public site (no Tailwind/build step at
  runtime - this file is plain, static CSS shipped as-is). Design tokens
  mirror the previous Next.js project's globals.css: warm off-white light
  mode, deep navy dark mode, gold accent, dot-grid textures on hero/CTA/footer.
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --navy: #0f1b2d;
  --charcoal: #2a3142;
  --background: #fafaf8;
  --surface: #ffffff;
  --surface-elevated: #f5f3ef;
  --foreground: #1a1f2e;
  --muted-foreground: #5c6370;
  --subtle-foreground: #8b919a;
  --accent: #c9a227;
  --accent-hover: #b8921f;
  --accent-subtle: #f5edd4;
  --border: #e8e4de;
  --ring: #c9a227;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe57;
  --radius-lg: 16px;
  --radius-md: 10px;
  --container-max: 1280px;
}
html.dark {
  --background: #0d1117;
  --surface: #151b24;
  --surface-elevated: #1c2430;
  --foreground: #f0ede8;
  --muted-foreground: #a8a29e;
  --subtle-foreground: #7d8590;
  --accent: #d4af37;
  --accent-hover: #e0bc4a;
  --accent-subtle: #2a2413;
  --border: #2a3444;
  --ring: #d4af37;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  transition: background-color .2s ease, color .2s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0; line-height: 1.65; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }
.text-balance { text-wrap: balance; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent); color: var(--navy); padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; }

/* ---------------------------------------------------------------- layout */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
.section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.section-lg { padding: 80px 0; border-bottom: 1px solid var(--border); }
@media (min-width: 768px) { .section { padding: 80px 0; } .section-lg { padding: 112px 0; } }
.section:last-child, .section-lg:last-child { border-bottom: none; }
.bg-surface { background: var(--surface); }
.bg-surface-elevated { background: var(--surface-elevated); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-charcoal { background: var(--charcoal); color: #fff; }
.bg-navy .muted, .bg-charcoal .muted { color: rgba(255,255,255,.65); }

.bg-dot-grid {
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
}
.bg-dot-grid-invert {
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 24px 24px;
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.muted { color: var(--muted-foreground); }
.subtle { color: var(--subtle-foreground); }

/* ---------------------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-md); font-weight: 600; font-size: 14.5px;
  padding: 0 20px; height: 44px; border: 1px solid transparent; cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s, transform .1s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { height: 36px; padding: 0 14px; font-size: 13px; }
.btn-lg { height: 52px; padding: 0 26px; font-size: 15.5px; }
.btn-primary { background: var(--accent); color: var(--navy); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary { background: transparent; color: var(--foreground); border-color: var(--border); }
.btn-secondary:hover { background: var(--surface-elevated); }
.btn-secondary.on-dark { color: #fff; border-color: rgba(255,255,255,.3); }
.btn-secondary.on-dark:hover { background: rgba(255,255,255,.08); }
.btn-ghost { background: transparent; color: var(--foreground); }
.btn-ghost:hover { background: var(--surface-elevated); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-hover); }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: var(--radius-md); border: 1px solid var(--border); background: var(--surface); }
.icon { width: 18px; height: 18px; flex-shrink: 0; }
.icon-lg { width: 24px; height: 24px; }

/* ---------------------------------------------------------------- card/badge */
.card { border: 1px solid var(--border); background: var(--surface); border-radius: 14px; padding: 24px; }
.card-interactive { transition: border-color .2s, box-shadow .2s; }
.card-interactive:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.badge { display: inline-block; padding: 3px 12px; border-radius: 999px; background: var(--surface-elevated); color: var(--muted-foreground); font-size: 12px; font-weight: 600; }

/* ---------------------------------------------------------------- section header */
.section-header { max-width: 640px; margin-bottom: 40px; }
.section-header.align-center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.eyebrow::before { content: ''; width: 24px; height: 1px; background: currentColor; }
.section-title { font-size: 28px; line-height: 1.2; }
@media (min-width: 768px) { .section-title { font-size: 36px; } }
.section-description { margin-top: 14px; color: var(--muted-foreground); font-size: 16px; max-width: 640px; }

/* ---------------------------------------------------------------- header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250,250,248,.85); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: all .2s; }
html.dark .site-header { background: rgba(13,17,23,.85); }
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: 0 1px 12px rgba(0,0,0,.04); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; transition: height .2s; }
.site-header.scrolled .container { height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 17px; }
.logo img { height: 32px; width: auto; }
.logo .tagline { display: block; font-size: 11px; font-weight: 500; color: var(--muted-foreground); }
.primary-nav { display: none; align-items: center; gap: 28px; }
@media (min-width: 1024px) { .primary-nav { display: flex; } }
.primary-nav a { font-size: 14.5px; font-weight: 500; color: var(--muted-foreground); position: relative; padding: 6px 0; }
.primary-nav a:hover, .primary-nav a.active { color: var(--foreground); }
.primary-nav a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .desktop-only { display: none; }
@media (min-width: 1024px) { .header-actions .desktop-only { display: flex; align-items: center; gap: 10px; } }
.lang-switch { display: flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.lang-switch a { padding: 6px 12px; font-size: 12.5px; font-weight: 700; color: var(--muted-foreground); }
.lang-switch a.active { background: var(--accent); color: var(--navy); }
.mobile-toggle { display: inline-flex; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-nav-overlay { position: fixed; inset: 0; background: var(--background); z-index: 200; display: flex; flex-direction: column; padding: 20px 24px; transform: translateX(100%); transition: transform .25s ease; }
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-nav-overlay .mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav-overlay a.nav-link { display: block; font-size: 20px; font-weight: 700; padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-nav-overlay .mobile-nav-bottom { margin-top: auto; display: flex; flex-direction: column; gap: 14px; padding-top: 20px; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,.85); padding: 64px 0 28px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr repeat(auto-fit, minmax(140px, 1fr)); } }
.footer-brand p { color: rgba(255,255,255,.6); margin-top: 12px; max-width: 320px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.75); font-size: 14px; padding: 6px 0; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: rgba(255,255,255,.1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.55); }
.footer-bottom .legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }
.harbee-credit { margin-top: 8px; font-size: 12.5px; color: rgba(255,255,255,.45); }
.harbee-credit a { color: rgba(255,255,255,.7); font-weight: 600; }

/* ---------------------------------------------------------------- whatsapp floating button */
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 150; width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.whatsapp-float:hover { background: var(--whatsapp-hover); }
.whatsapp-float .icon { width: 28px; height: 28px; color: #fff; }
.whatsapp-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--whatsapp); animation: wa-ping 2s cubic-bezier(0,0,.2,1) infinite; opacity: .5; z-index: -1; }
@keyframes wa-ping { 75%, 100% { transform: scale(1.6); opacity: 0; } }

/* ---------------------------------------------------------------- hero */
.hero-grid { display: grid; gap: 48px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-title { font-size: 34px; line-height: 1.15; margin-top: 14px; }
@media (min-width: 768px) { .hero-title { font-size: 48px; } }
@media (min-width: 1024px) { .hero-title { font-size: 56px; } }
.hero-description { margin-top: 18px; font-size: 17px; color: var(--muted-foreground); max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted-foreground); }
.hero-badge .icon { color: var(--accent); }
.hero-image-wrap { position: relative; }
.hero-image { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--surface-elevated); color: var(--subtle-foreground); font-size: 14px; text-align: center; padding: 20px; }
.hero-image-offset { position: absolute; inset: -16px -16px auto auto; width: 60%; height: 60%; border: 2px solid var(--accent-subtle); border-radius: var(--radius-lg); z-index: -1; display: none; }
@media (min-width: 480px) { .hero-image-offset { display: block; } }

/* ---------------------------------------------------------------- statistics */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 20px; text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-value { font-size: 38px; font-weight: 800; color: var(--accent); }
@media (min-width: 768px) { .stat-value { font-size: 46px; } }
.stat-label { margin-top: 6px; font-size: 13.5px; color: rgba(255,255,255,.7); }
.stats-heading { text-align: center; text-transform: uppercase; letter-spacing: .06em; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 32px; }

/* ---------------------------------------------------------------- services grid (editorial list) */
.services-list { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.service-row { display: flex; flex-direction: column; gap: 18px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.service-row:last-child { border-bottom: none; }
@media (min-width: 768px) { .service-row { flex-direction: row; align-items: center; } }
.service-row-main { display: flex; gap: 18px; flex: 1; align-items: flex-start; }
.service-index { font-size: 15px; font-weight: 700; color: var(--subtle-foreground); width: 32px; flex-shrink: 0; padding-top: 10px; }
.service-icon-box { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--accent-subtle); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-row h3 { font-size: 18px; }
.service-row:hover h3 { color: var(--accent); }
.service-row p { margin-top: 6px; color: var(--muted-foreground); font-size: 14.5px; }
.service-thumb { width: 100%; height: 160px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); flex-shrink: 0; transition: transform .3s; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) { .service-thumb { width: 192px; height: 128px; } }
.service-row:hover .service-thumb { transform: scale(1.02); }

/* ---------------------------------------------------------------- timeline */
.timeline-list { display: grid; grid-template-columns: 1fr; gap: 32px; counter-reset: step; }
@media (min-width: 768px) { .timeline-list { grid-template-columns: repeat(4, 1fr); } }
.timeline-step { position: relative; }
.timeline-step .step-circle { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--accent); color: var(--accent); font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: var(--surface-elevated); position: relative; z-index: 1; }
.timeline-step::after { content: ''; position: absolute; top: 22px; left: 44px; right: -50%; height: 2px; background: var(--border); display: none; }
@media (min-width: 768px) { .timeline-step::after { display: block; } }
.timeline-step:last-child::after { display: none; }
.timeline-step h3 { font-size: 16px; }
.timeline-step p { margin-top: 6px; color: var(--muted-foreground); font-size: 14px; }

/* ---------------------------------------------------------------- facility */
.facility-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .facility-grid { grid-template-columns: 1fr 1fr; } }
.facility-image { aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.facility-image img { width: 100%; height: 100%; object-fit: cover; }
.facility-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.facility-gallery img { aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; }
.facility-location { display: flex; align-items: center; gap: 6px; color: var(--accent); font-size: 13.5px; font-weight: 600; margin-bottom: 10px; }
.facility-features { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 20px 0; }
@media (min-width: 640px) { .facility-features { grid-template-columns: 1fr 1fr; } }
.facility-feature { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--border); border-radius: 10px; font-size: 14px; }
.facility-feature .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ---------------------------------------------------------------- certificates */
.certificate-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 640px) { .certificate-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .certificate-grid { grid-template-columns: repeat(4, 1fr); } }
.certificate-card { text-align: center; padding: 24px 16px; }
.certificate-card img { height: 64px; margin: 0 auto 14px; object-fit: contain; filter: grayscale(1); transition: filter .2s; }
.certificate-card:hover img { filter: grayscale(0); }
.certificate-card h3 { font-size: 14.5px; }
.certificate-card p { margin-top: 4px; font-size: 12.5px; color: var(--muted-foreground); }

/* ---------------------------------------------------------------- harbee banner */
.harbee-banner-inner { display: grid; gap: 24px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .harbee-banner-inner { grid-template-columns: 1fr auto; } }
.harbee-banner-image { width: 224px; height: 160px; border-radius: var(--radius-md); overflow: hidden; display: none; }
@media (min-width: 768px) { .harbee-banner-image { display: block; } }
.harbee-banner-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------- testimonials */
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
.testimonial-card .icon-lg { color: var(--accent); margin-bottom: 14px; }
.testimonial-quote { font-size: 17px; line-height: 1.5; }
.testimonial-footer { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-avatar-fallback { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-subtle); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testimonial-author { font-weight: 700; font-size: 14px; }
.testimonial-role { font-size: 12.5px; color: var(--muted-foreground); }

/* ---------------------------------------------------------------- blog preview / index */
.blog-header-row { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
@media (min-width: 768px) { .blog-header-row { flex-direction: row; justify-content: space-between; align-items: flex-end; } }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card-image { aspect-ratio: 16/10; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); margin-bottom: 14px; background: var(--surface-elevated); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-card-image img { transform: scale(1.03); }
.blog-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--subtle-foreground); border: 1px dashed var(--border); border-radius: var(--radius-md); }
.blog-card h3 { font-size: 16px; margin-top: 4px; }
.blog-card p { margin-top: 6px; font-size: 14px; color: var(--muted-foreground); }

/* ---------------------------------------------------------------- faq */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; padding: 4px 20px; }
.faq-item[open] { border-color: var(--accent); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; font-weight: 600; font-size: 15px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .2s; font-size: 15px; }
.faq-item[open] summary .plus { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.faq-answer { padding: 0 0 18px; color: var(--muted-foreground); font-size: 14.5px; }
.faq-answer p { margin-bottom: 10px; }

/* ---------------------------------------------------------------- cta */
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-title { font-size: 28px; }
@media (min-width: 768px) { .cta-title { font-size: 36px; } }
.cta-description { margin-top: 14px; color: rgba(255,255,255,.7); }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }

/* ---------------------------------------------------------------- rich text content */
.rich-text-content h2 { font-size: 24px; margin: 28px 0 12px; }
.rich-text-content h3 { font-size: 19px; margin: 22px 0 10px; }
.rich-text-content p { margin-bottom: 14px; color: var(--foreground); }
.rich-text-content ul, .rich-text-content ol { margin: 0 0 14px 22px; }
.rich-text-content li { margin-bottom: 6px; }
.rich-text-content a { color: var(--accent); text-decoration: underline; }
.rich-text-content img { border-radius: var(--radius-md); margin: 16px 0; }

/* ---------------------------------------------------------------- forms */
.form-card { max-width: 640px; margin: 0 auto; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 14.5px; background: var(--surface); color: var(--foreground);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: 2px solid var(--ring); outline-offset: 1px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr; gap: 0 16px; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-alert { padding: 14px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 20px; }
.form-alert.success { background: #eaf6ea; color: #2e7d32; }
html.dark .form-alert.success { background: #16321a; color: #7fd88a; }
.form-alert.error { background: #fdecea; color: #c0392b; }
html.dark .form-alert.error { background: #3a1a17; color: #f19c92; }

/* ---------------------------------------------------------------- service detail / generic page hero */
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--muted-foreground); margin-bottom: 20px; }
.back-link:hover { color: var(--foreground); }
.service-detail-icon { width: 56px; height: 56px; border-radius: var(--radius-md); background: var(--accent-subtle); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.detail-hero-image { width: 100%; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); margin: 28px 0; aspect-ratio: 16/9; }
.detail-hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------- 404 */
.not-found { text-align: center; padding: 120px 24px; }
.not-found .code { font-size: 88px; font-weight: 800; color: var(--accent); }

/* ---------------------------------------------------------------- coming soon */
.coming-soon-box { text-align: center; padding: 80px 24px; border: 1px dashed var(--border); border-radius: var(--radius-lg); }
