/**
 * MCI 流動驗車 - 全站樣式
 * 白色極簡 + 深色對沖 + 紅色點綴
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --bg: #ffffff;
  --fg: #111111;
  --muted: #6b7280;
  --line: #e5e7eb;
  --dark: #1a365d;
  --dark2: #0d1b2a;
  --accent: #e67e22;
  --accent-hover: #d35400;
  
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --header-h: 72px;
  --container: 1200px;
  --gap: 24px;
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg);
  background: var(--bg);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

p { color: var(--muted); }

.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.text-small { font-size: 0.875rem; }

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

section {
  padding: 80px 0;
}

.section--dark {
  background: var(--dark);
  color: var(--bg);
}

.section--dark p,
.section--dark .text-muted {
  color: rgba(255,255,255,0.7);
}

.section--gray {
  background: #f9fafb;
}

.section--border {
  border-top: 1px solid var(--line);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--gap);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
}

/* Flex */
.flex {
  display: flex;
  gap: var(--gap);
}

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

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.two-col--sidebar {
  grid-template-columns: 2fr 1fr;
}

@media (max-width: 768px) {
  .two-col,
  .two-col--sidebar {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.header > .container {
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.125rem;
}

.header__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg);
  transition: color 0.2s;
}

.header__nav a:hover {
  color: var(--accent);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  font-size: 0.9375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__phone svg {
  width: 18px;
  height: 18px;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 10001;
  position: relative;
  background: transparent;
  border: none;
  padding: 10px;
  margin-left: auto;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  transition: all 0.3s;
  pointer-events: none;
}

.mobile-toggle:focus {
  outline: none;
}

.mobile-toggle:active {
  opacity: 0.7;
}

/* Toggle animation */
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 9998;
  padding: calc(var(--header-h) + 24px) 24px 24px;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.active {
  display: flex !important;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.mobile-nav__links a {
  display: flex;
  align-items: center;
  padding: 18px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  min-height: 56px;
}

.mobile-nav__links a:hover {
  color: var(--accent);
}

.mobile-nav__cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav__cta .btn {
  width: 100%;
  justify-content: center;
}

.mobile-nav__contact {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.mobile-nav__contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.mobile-nav__contact svg {
  width: 20px;
  height: 20px;
}

/* Body scroll lock */
body.nav-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
  
  .header__actions {
    display: none;
  }
  
  .mobile-toggle {
    display: flex !important;
  }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--bg);
  padding: 60px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.footer__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--bg);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.footer__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--bg);
}

.footer__contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.footer__bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

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

.btn-dark {
  background: var(--dark);
  color: var(--bg);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark2);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--fg);
}

.btn-ghost--white {
  color: var(--bg);
  border-color: rgba(255,255,255,0.3);
}

.btn-ghost--white:hover {
  border-color: var(--bg);
  background: rgba(255,255,255,0.1);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ============================================
   Media Placeholder
   ============================================ */
.media {
  position: relative;
  overflow: hidden;
}

.media.placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
}

.media.placeholder--light {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: rgba(0,0,0,0.3);
}

.media.placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.aspect-video { aspect-ratio: 16/9; }
.aspect-square { aspect-ratio: 1; }
.aspect-4-3 { aspect-ratio: 4/3; }

/* ============================================
   Hero
   ============================================ */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  min-height: calc(100vh - var(--header-h) - 200px);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__title {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 1.0625rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__meta {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 100px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.hero__meta-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
}

.hero__meta-label {
  font-size: 0.8125rem;
  color: var(--muted);
}

.hero__media {
  background: var(--dark);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  
  .hero__content {
    padding: var(--gap);
    order: 2;
  }
  
  .hero__media {
    order: 1;
    min-height: 300px;
  }
  
  .hero__title {
    font-size: 2rem;
  }
}

/* ============================================
   Page Hero (内页)
   ============================================ */
.page-hero {
  background: var(--dark);
  color: var(--bg);
  padding: 80px 0;
  text-align: center;
}

.page-hero__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.page-hero__desc {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Section Header
   ============================================ */
.section-header {
  margin-bottom: 48px;
}

.section-header--center {
  text-align: center;
}

.section-header__label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-header__title {
  margin-bottom: 16px;
}

.section-header__desc {
  max-width: 600px;
}

.section-header--center .section-header__desc {
  margin: 0 auto;
}

.section--dark .section-header__label {
  color: var(--accent);
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  transition: border-color 0.2s;
}

.card:hover {
  border-color: var(--muted);
}

.card__media {
  aspect-ratio: 16/10;
}

.card__body {
  padding: 24px;
}

.card__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.card__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.card__price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

.card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
}

/* Service Card */
.service-card {
  padding: 32px;
  border: 1px solid var(--line);
  transition: all 0.2s;
}

.service-card:hover {
  border-color: var(--dark);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--dark);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.service-card__link:hover {
  color: var(--accent);
}

.service-card__link svg {
  width: 16px;
  height: 16px;
}

/* Feature Card */
.feature-card {
  display: flex;
  gap: 16px;
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card__icon svg {
  width: 20px;
  height: 20px;
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 0.9375rem;
  color: var(--muted);
}

.section--dark .feature-card__desc {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   Process / Steps
   ============================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}

.process__item {
  padding: 32px;
  border-right: 1px solid var(--line);
  counter-increment: step;
  position: relative;
}

.process__item:last-child {
  border-right: none;
}

.process__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  margin-bottom: 20px;
}

.process__number::before {
  content: counter(step, decimal-leading-zero);
}

.process__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.process__desc {
  font-size: 0.875rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process__item:nth-child(2) {
    border-right: none;
  }
  
  .process__item:nth-child(1),
  .process__item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .process {
    grid-template-columns: 1fr;
  }
  
  .process__item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  
  .process__item:last-child {
    border-bottom: none;
  }
}

/* ============================================
   Pricing Table
   ============================================ */
.pricing-card {
  border: 1px solid var(--line);
  padding: 32px;
}

.pricing-card--featured {
  border-color: var(--accent);
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  right: 24px;
  background: var(--accent);
  color: var(--bg);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.pricing-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-card__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.pricing-card__features {
  margin-bottom: 24px;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
}

.pricing-card__features svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__content {
  padding-bottom: 24px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ============================================
   Forms
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-label .required {
  color: var(--accent);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  font-size: 0.9375rem;
  transition: border-color 0.2s;
  background: var(--bg);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--fg);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Contact Info
   ============================================ */
.contact-item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  background: var(--dark);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 24px;
  height: 24px;
}

.contact-item__label {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-item__value {
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-item__value a {
  transition: color 0.2s;
}

.contact-item__value a:hover {
  color: var(--accent);
}

/* ============================================
   Stats
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat:last-child {
  border-right: none;
}

.stat__value {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .stat:nth-child(2) {
    border-right: none;
  }
  
  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: none;
  }
}

/* ============================================
   Content Sections
   ============================================ */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-block--reverse .content-block__media {
  order: -1;
}

.content-block__title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.content-block__text {
  color: var(--muted);
  margin-bottom: 24px;
}

.content-block__list {
  margin-bottom: 24px;
}

.content-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
}

.content-block__list svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .content-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .content-block--reverse .content-block__media {
    order: 0;
  }
}

/* ============================================
   Document List
   ============================================ */
.doc-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.doc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--line);
  transition: border-color 0.2s;
}

.doc-item:hover {
  border-color: var(--accent);
}

.doc-item__icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.doc-item__icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.doc-item__title {
  font-size: 0.9375rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .doc-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .doc-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CTA Section
   ============================================ */
.section--cta {
  background: var(--dark);
  color: var(--bg);
  padding: 0;
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
  gap: 40px;
}

.cta__content {
  flex: 1;
  max-width: 600px;
}

.cta__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--bg);
}

.cta__desc {
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.cta__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 48px 0;
  }
  
  .cta__content {
    max-width: 100%;
  }
  
  .cta__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Report Sample
   ============================================ */
.report-sample {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}

.report-toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: #f9fafb;
  padding: 32px;
}

.report-toc__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.report-toc__list li {
  margin-bottom: 12px;
}

.report-toc__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--muted);
  transition: color 0.2s;
}

.report-toc__list a:hover {
  color: var(--fg);
}

.report-toc__list span {
  width: 24px;
  height: 24px;
  background: var(--dark);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .report-sample {
    grid-template-columns: 1fr;
  }
  
  .report-toc {
    position: static;
  }
}

/* ============================================
   Team / About
   ============================================ */
.value-item {
  padding: 32px;
  border-left: 3px solid var(--accent);
  background: #f9fafb;
}

.value-item__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-item__desc {
  font-size: 0.9375rem;
  color: var(--muted);
}

/* ============================================
   Service Areas
   ============================================ */
.area-card {
  text-align: center;
  padding: 24px;
  border: 1px solid var(--line);
}

.area-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.area-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
}

.area-card__note {
  color: var(--accent);
  font-size: 0.75rem;
}

/* ============================================
   Quick Actions Grid
   ============================================ */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.quick-actions a {
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}

.quick-actions a:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

.quick-actions svg {
  margin-bottom: 16px;
}

.quick-actions__title {
  font-weight: 600;
  margin-bottom: 4px;
}

.quick-actions__desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .quick-actions {
    grid-template-columns: 1fr;
  }
}

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

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* ============================================
   WhatsApp Float
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   Mobile Responsive Enhancements
   ============================================ */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 48px 0;
  }
  
  h1 { font-size: 1.625rem; }
  h2 { font-size: 1.375rem; }
  
  /* Hero Mobile */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero__content {
    padding: 32px 16px;
    order: 2;
  }
  
  .hero__media {
    order: 1;
    min-height: 200px;
  }
  
  .hero__title {
    font-size: 1.625rem;
  }
  
  .hero__desc {
    font-size: 1rem;
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero__meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .hero__meta-item {
    min-width: auto;
    padding: 12px 16px;
  }
  
  .hero__meta-value {
    font-size: 1.25rem;
  }
  
  /* Page Hero Mobile */
  .page-hero {
    padding: 48px 0;
  }
  
  .page-hero__title {
    font-size: 1.5rem;
  }
  
  /* Section Header Mobile */
  .section-header {
    margin-bottom: 32px;
  }
  
  /* Process Mobile */
  .process {
    grid-template-columns: 1fr;
  }
  
  .process__item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }
  
  .process__item:last-child {
    border-bottom: none;
  }
  
  .process__number {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  /* Stats Mobile */
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat {
    padding: 24px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .stat:nth-child(2) {
    border-right: none;
  }
  
  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: none;
  }
  
  .stat__value {
    font-size: 2rem;
  }
  
  /* Content Block Mobile */
  .content-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .content-block--reverse .content-block__media {
    order: 0;
  }
  
  .content-block__title {
    font-size: 1.25rem;
  }
  
  /* Cards Mobile */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .service-card,
  .pricing-card {
    padding: 24px;
  }
  
  .pricing-card__price {
    font-size: 2rem;
  }
  
  /* CTA Mobile - handled by main .cta styles */
  
  /* Contact Items Mobile */
  .contact-item {
    padding: 16px 0;
  }
  
  .contact-item__icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-item__value {
    font-size: 1rem;
  }
  
  /* Forms Mobile */
  .form-row {
    grid-template-columns: 1fr;
  }
  
  /* Two Column Layouts Mobile */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns:2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Report Sample Mobile */
  .report-sample {
    grid-template-columns: 1fr;
  }
  
  .report-toc {
    position: static;
  }
  
  /* Footer Mobile */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer {
    padding: 48px 0 24px;
  }
  
  /* Quick Actions Mobile */
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  
  /* FAQ Mobile */
  .faq-item summary {
    padding: 20px 0;
    font-size: 0.9375rem;
  }
  
  .faq-item__content {
    padding-bottom: 20px;
    font-size: 0.875rem;
  }
  
  /* Feature Cards Mobile */
  .feature-card {
    gap: 12px;
  }
  
  .feature-card__icon {
    width: 36px;
    height: 36px;
  }
  
  /* Buttons Mobile */
  .btn {
    padding: 12px 24px;
  }
  
  .btn-lg {
    padding: 14px 28px;
  }
  
  /* WhatsApp Float Mobile */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }
  
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hero__meta {
    gap: 16px;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .stat {
    border-right: none;
  }
  
  .stat:nth-child(1),
  .stat:nth-child(2),
  .stat:nth-child(3) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

/* ========================================
   MVI WordPress Theme Additional Styles
   ======================================== */

/* Form Styles Enhancement */
.mvi-form .form-input,
.mvi-form .form-select,
.mvi-form .form-textarea {
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mvi-form .form-input:focus,
.mvi-form .form-select:focus,
.mvi-form .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 0, 26, 0.1);
  outline: none;
}

.form-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-section__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section__title i {
  color: var(--accent);
}

.form-message {
  padding: 16px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-message--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Booking Sidebar */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-info-card {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.booking-info-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-info-card h4 i {
  color: var(--accent);
}

.booking-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-info-card ul li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--muted);
}

.booking-info-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.booking-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f8f9fa;
  margin-top: 12px;
  color: var(--fg);
  text-decoration: none;
  transition: background 0.3s ease;
}

.booking-contact:hover {
  background: #e9ecef;
}

/* Report TOC */
.report-sample {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}

.report-toc {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.report-toc__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.report-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.report-toc__list li {
  margin-bottom: 8px;
}

.report-toc__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  color: var(--fg);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.report-toc__list a:hover {
  background: #f8f9fa;
  color: var(--accent);
}

.report-toc__list a span {
  width: 24px;
  height: 24px;
  background: var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.report-toc__list a:hover span {
  background: var(--accent);
  color: #fff;
}

/* Value Item */
.value-item {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.value-item__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-item__desc {
  color: var(--muted);
  line-height: 1.7;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  font-size: 24px;
}

.whatsapp-float span {
  font-weight: 500;
}

/* Content Text */
.content-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg);
}

.content-text p {
  margin-bottom: 1.5em;
}

/* Responsive */
@media (max-width: 768px) {
  .report-sample {
    grid-template-columns: 1fr;
  }
  
  .report-toc {
    position: static;
  }
  
  .whatsapp-float span {
    display: none;
  }
  
  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }
}

/* Placeholder Media */
.media.placeholder {
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.media.placeholder i {
  font-size: 48px;
  opacity: 0.5;
}

/* Two Column Sidebar Layout */
.two-col--sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}

@media (max-width: 992px) {
  .two-col--sidebar {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Area Cards (Contact Page)
   ======================================== */
.area-card {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.area-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.area-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.area-card__note {
  font-size: 0.75rem;
  color: var(--accent);
}

/* ========================================
   Hero Service Variant
   ======================================== */
.hero--service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.hero--service .hero__content {
  animation: none;
}

.hero--service .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(196, 0, 26, 0.1);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero--service .hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero--service .hero__desc {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero--service .hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero--service .hero__media {
  animation: none;
}

.hero--service .hero__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 992px) {
  .hero--service {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }
  
  .hero--service .hero__title {
    font-size: 2rem;
  }
  
  .hero--service .hero__media {
    order: -1;
  }
}

/* ========================================
   Section Dark
   ======================================== */
.section--dark {
  background: var(--dark);
  color: var(--bg);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--bg);
}

/* ========================================
   Button Ghost White
   ======================================== */
.btn-ghost--white {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

.btn-ghost--white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* ========================================
   Area Card (Contact Page)
   ======================================== */
.area-card {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.3s ease;
}

.area-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.area-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.area-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0;
}

.area-card__note {
  display: block;
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 8px;
}

/* ========================================
   Hero Service (Sanitize Page)
   ======================================== */
.hero--service {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.hero--service .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero--service .hero__title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero--service .hero__desc {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero--service .hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero--service .hero__media {
  position: relative;
}

.hero--service .hero__media img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero--service {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 24px;
  }
  
  .hero--service .hero__title {
    font-size: 1.75rem;
  }
  
  .hero--service .hero__media {
    order: -1;
  }
}

/* ========================================
   Form Enhancements
   ======================================== */
.form-input,
.form-select,
.form-textarea {
  border: 1px solid var(--line) !important;
  background: var(--bg);
  padding: 12px 16px;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(196, 0, 26, 0.1);
  outline: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.form-label .required {
  color: var(--accent);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Button Ghost White */
.btn-ghost--white {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

.btn-ghost--white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Section Dark */
.section--dark {
  background: var(--dark);
  color: var(--bg);
}

/* Container Narrow */
.container--narrow {
  max-width: 900px;
}

/* ========================================
   Additional Mobile Menu Styles
   ======================================== */
.nav-open {
  overflow: hidden;
}

.mobile-nav {
  transition: all 0.3s ease;
}

/* Form Message Icon */
.form-message i {
  margin-right: 8px;
}

/* Two Column Sidebar Layout */
.two-col--sidebar {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
}

@media (max-width: 992px) {
  .two-col--sidebar {
    grid-template-columns: 1fr;
  }
}

/* Booking Form Styles */
.mvi-form .form-input,
.mvi-form .form-select,
.mvi-form .form-textarea {
  border: 1px solid var(--line) !important;
  background: var(--bg);
  padding: 12px 16px;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.mvi-form .form-input:focus,
.mvi-form .form-select:focus,
.mvi-form .form-textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(196, 0, 26, 0.1);
  outline: none;
}

/* RTL Support */
[dir="rtl"] .header__nav {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .header__actions {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .mobile-toggle {
  left: 16px;
  right: auto;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .mobile-nav,
  .whatsapp-float,
  .scroll-progress,
  .section--cta {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
}

/* ========================================
   Page Hero with Background
   ======================================== */
.page-hero--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.page-hero--bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 15, 20, 0.85) 0%, rgba(11, 15, 20, 0.7) 100%);
  z-index: 1;
}

.page-hero--bg .container {
  position: relative;
  z-index: 2;
}

.page-hero--bg .page-hero__title,
.page-hero--bg .page-hero__desc {
  color: #fff;
}

.page-hero--bg .page-hero__desc {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .page-hero--bg {
    min-height: 220px;
  }
}

/* ============================================
   V3.2 多彩樣式
   ============================================ */

/* 顏色變量 */
:root {
  --orange: #e67e22;
  --orange-bg: #fef3e2;
  --green: #27ae60;
  --green-bg: #e8f5e9;
  --blue: #2980b9;
  --blue-bg: #e3f2fd;
  --teal: #16a085;
  --teal-bg: #e0f2f1;
  --purple: #9b59b6;
  --purple-bg: #f3e5f5;
}

/* Hero 標題強調色 */
.hero__title em {
  color: var(--accent);
  font-style: normal;
}

/* Highlights Bar */
.highlights-bar {
  display: flex;
  gap: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 32px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.highlight-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.highlight-icon--orange { background: var(--orange-bg); color: var(--orange); }
.highlight-icon--green { background: var(--green-bg); color: var(--green); }
.highlight-icon--blue { background: var(--blue-bg); color: var(--blue); }
.highlight-icon--teal { background: var(--teal-bg); color: var(--teal); }

.highlight-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.highlight-item span {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Service Card 多彩邊框 */
.service-card--orange:hover { border-color: var(--orange); }
.service-card--green:hover { border-color: var(--green); }
.service-card--blue:hover { border-color: var(--blue); }

.service-card__icon--orange { background: var(--orange-bg); color: var(--orange); }
.service-card__icon--green { background: var(--green-bg); color: var(--green); }
.service-card__icon--blue { background: var(--blue-bg); color: var(--blue); }

.service-card__link--orange { color: var(--orange); }
.service-card__link--green { color: var(--green); }
.service-card__link--blue { color: var(--blue); }

/* Gradient Section */
.section--gradient {
  background: linear-gradient(135deg, var(--dark) 0%, #2c5282 50%, var(--dark2) 100%);
  padding: 80px 0;
}

/* Feature Box (深色背景用) */
.feature-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}

.feature-box:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.feature-box__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.feature-box__icon--orange { background: rgba(230, 126, 34, 0.2); color: #f39c12; }
.feature-box__icon--blue { background: rgba(41, 128, 185, 0.2); color: #3498db; }
.feature-box__icon--green { background: rgba(39, 174, 96, 0.2); color: #2ecc71; }
.feature-box__icon--purple { background: rgba(155, 89, 182, 0.2); color: #bb6bd9; }

.feature-box__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.feature-box__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* Colorful Process Steps */
.process-colorful {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.process-step__number--orange { background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%); box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3); }
.process-step__number--blue { background: linear-gradient(135deg, #2980b9 0%, #3498db 100%); box-shadow: 0 8px 20px rgba(41, 128, 185, 0.3); }
.process-step__number--green { background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%); box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3); }
.process-step__number--teal { background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%); box-shadow: 0 8px 20px rgba(22, 160, 133, 0.3); }

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--line) 0%, var(--line) 100%);
}

.process-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.process-step__desc {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Colorful Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.pricing-card--orange:hover { border-color: var(--orange); }
.pricing-card--blue:hover { border-color: var(--blue); }
.pricing-card--green:hover { border-color: var(--green); }

.pricing-card--featured {
  border-color: var(--accent);
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(230, 126, 34, 0.15);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, #f39c12 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
}

.pricing-card__header {
  margin-bottom: 24px;
}

.pricing-card__name {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card--orange .pricing-card__price { color: var(--orange); }
.pricing-card--blue .pricing-card__price { color: var(--blue); }
.pricing-card--green .pricing-card__price { color: var(--green); }

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-card__note {
  font-size: 0.875rem;
  color: var(--accent);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #d35400 100%);
  padding: 60px 0;
}

.cta-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner__icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}

.cta-banner__text {
  flex: 1;
  min-width: 250px;
}

.cta-banner__text h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 4px;
}

.cta-banner__text p {
  color: rgba(255,255,255,0.85);
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
}

/* Hero floating badges position fix */
.hero__media {
  position: relative;
}

/* 響應式 */
@media (max-width: 1024px) {
  .highlights-bar {
    flex-wrap: wrap;
  }
  .highlight-item {
    flex: 1 1 45%;
  }
  .process-colorful {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step::after {
    display: none;
  }
  .feature-box {
    margin-bottom: 16px;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  .pricing-card--featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .highlights-bar {
    flex-direction: column;
    margin-top: -30px;
    padding: 20px;
  }
  .highlight-item {
    flex: 1 1 100%;
  }
  .cta-banner__content {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner__actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .process-colorful {
    grid-template-columns: 1fr;
  }
}

/* Service Detail Images */
.service-detail__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* Equipment Card Images */
.equipment-card__img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}
