:root {
  --bg: #101317;
  --bg-soft: #171c23;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --surface-strong: #eef2f7;
  --text: #15202b;
  --muted: #5b6776;
  --line: rgba(21, 32, 43, 0.1);
  --brand: #ef4444;
  --brand-dark: #c22626;
  --accent: #f59e0b;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 18px 44px rgba(16, 19, 23, 0.14);
  --shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

h1, h2, h3, p, ul {
  margin-top: 0;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 19, 23, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #ff7b36);
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.32);
}

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

.nav a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav a[href]:active,
.nav a[href].active {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.nav a:hover,
.footer-wrap a:hover,
.contact-card a:hover,
.text-link:hover {
  opacity: 0.85;
}

.menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

.hero,
.page-hero {
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1216, #1b222c 56%, #101317);
  padding: 5.6rem 0 4.2rem;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: brightness(0.92) saturate(0.92) contrast(1.04);
}

.hero::before {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.58) 0%, rgba(8, 10, 13, 0.44) 38%, rgba(8, 10, 13, 0.22) 100%),
    linear-gradient(180deg, rgba(8, 10, 13, 0.18), rgba(8, 10, 13, 0.44)),
    radial-gradient(circle at 15% 15%, rgba(239, 68, 68, 0.09), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(245, 158, 11, 0.035), transparent 22%);
}

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

.page-hero {
  background:
    linear-gradient(rgba(16, 19, 23, 0.7), rgba(16, 19, 23, 0.9)),
    radial-gradient(circle at 15% 15%, rgba(239, 68, 68, 0.32), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(245, 158, 11, 0.14), transparent 22%),
    linear-gradient(135deg, #0f1216, #1b222c 56%, #101317);
  padding: 4.8rem 0 3.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.hero-grid.single {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
}

.breadcrumb {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.breadcrumb a {
  text-decoration: none;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  color: #ffb9b9;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow.dark,
.panel-label.dark {
  color: var(--brand-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  max-width: 13ch;
  margin-bottom: 1rem;
}

.page-hero h1 {
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 0.55rem;
}

.lead {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
  margin-bottom: 1.6rem;
}

.hero-actions,
.contact-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-points,
.notice-list,
.inline-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-points,
.inline-pills {
  margin-top: 1.25rem;
}

.hero-points span,
.notice-list span,
.inline-pills span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-photo-card,
.panel-card,
.service-card,
.notice-card,
.about-box,
.contact-card,
.highlight-card,
.detail-card,
.faq-card,
.cta-strip {
  border-radius: var(--radius);
}

.hero-photo-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
  background: #0b0d10;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 19, 23, 0.18), rgba(16, 19, 23, 0.74));
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.9) contrast(1.04);
}

.hero-photo-copy {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
}

.hero-photo-title {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 700;
}

.panel-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem;
  box-shadow: var(--shadow-strong);
}

.panel-highlight {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.18), rgba(255, 255, 255, 0.05));
}

.panel-label {
  color: #ffd7d7;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.panel-label.subtle {
  color: rgba(255, 255, 255, 0.78);
}

.panel-card p,
.panel-card li,
.panel-card a {
  color: rgba(255, 255, 255, 0.9);
}

.panel-card ul,
.about-box ul,
.issue-list,
.check-list,
.detail-card ul {
  margin-bottom: 0;
  padding-left: 1.15rem;
}

.trust-bar {
  background: #0d1014;
  color: var(--white);
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-grid div {
  padding: 0.4rem 0.7rem;
}

.trust-grid strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 0.2rem;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--surface-soft);
}

.section-dark {
  background: #101317;
  color: var(--white);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-intro,
.service-card p,
.about-box li,
.contact-card p,
.issue-list li,
.notice-card p,
.highlight-card p,
.detail-card p,
.faq-card p,
.detail-card li,
.check-list li {
  color: var(--muted);
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.74);
}

.service-grid,
.highlight-grid,
.detail-grid,
.faq-grid,
.issue-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.highlight-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid,
.about-grid,
.contact-grid,
.issue-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.service-card,
.about-box,
.contact-card,
.notice-card,
.highlight-card,
.detail-card,
.faq-card,
.cta-strip {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.notice-card {
  background: linear-gradient(180deg, #fff7ef, #ffffff);
  border-color: rgba(245, 158, 11, 0.22);
}

.card-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.1);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-link {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 700;
}

.issue-list li,
.check-list li,
.detail-card li {
  margin-bottom: 0.7rem;
}

.notice-list span {
  border-color: rgba(194, 38, 38, 0.14);
  background: rgba(194, 38, 38, 0.05);
  color: var(--text);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid article {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #ff9b9b;
  font-weight: 800;
  font-size: 0.92rem;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-card a {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 600;
}

.hours-box {
  margin: 1.2rem 0;
  padding: 1rem 1rem 0.2rem;
  border-radius: 16px;
  background: var(--surface-strong);
}

.map-wrap iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1.12rem;
  border-radius: 12px;
  border: 1px solid var(--brand);
  background: linear-gradient(180deg, #f25555, var(--brand-dark));
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.24);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.btn-small {
  min-height: 42px;
  padding: 0.56rem 0.92rem;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.btn-light {
  background: var(--white);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.site-footer {
  background: #0d1014;
  color: rgba(255, 255, 255, 0.74);
  padding: 1.2rem 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-wrap a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .hero-grid.single,
  .process-grid,
  .detail-grid,
  .issue-grid,
  .about-grid,
  .contact-grid,
  .trust-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem;
    background: #101317;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.open {
    display: flex;
  }

  .nav-wrap .btn-small {
    display: none;
  }

  h1,
  .page-hero h1 {
    max-width: none;
  }

  .cta-strip,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-photo-card {
    min-height: 420px;
  }

  .map-wrap iframe {
    min-height: 320px;
  }
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Contact Form Styles */
.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button[type="submit"] {
  width: 100%;
  cursor: pointer;
}

/* Card Hover Animation */
.service-card,
.highlight-card,
.detail-card,
.faq-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.highlight-card:hover,
.detail-card:hover,
.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(16, 19, 23, 0.18);
}

/* Image Container */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

/* Mobile Menu Close Button */
.menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

@media (min-width: 981px) {
  .menu-close {
    display: none;
  }
}
