/* ============================================================
   DCSWare, Inc. — Shared Styles
   ============================================================ */

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

:root {
  --navy: #1E2D3E;
  --navy-deep: #141f2b;
  --navy-light: #2a3f55;
  --navy-mid: #243546;
  --gold: #D8B76C;
  --gold-light: #e8cc8c;
  --gold-dark: #b89a50;
  --gold-glow: rgba(216, 183, 108, 0.12);
  --white: #FFFFFF;
  --off-white: #f5f3ee;
  --warm-gray: #eae6de;
  --text-light: #c4c9cf;
  --text-muted: #6b7685;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(20, 31, 43, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.25);
}

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

.nav-logo img { height: 44px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--white); }

.nav-links a.active {
  color: var(--gold);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== SECTION LABELS & TITLES ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
}

.section-label--gold { color: var(--gold-dark); }
.section-label--gold::before { background: var(--gold); }
.section-label--light { color: var(--gold); }
.section-label--light::before { background: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(216, 183, 108, 0.2);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s;
}

.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: 1.5px solid var(--gold);
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(216, 183, 108, 0.08);
  transform: translateY(-2px);
}

.btn-secondary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s;
}

.btn-secondary:hover svg { transform: translateX(3px); }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--navy-deep);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
}

.page-hero .hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  animation: gridDrift 50s linear infinite;
  background-image: radial-gradient(circle, rgba(216, 183, 108, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero .hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(216, 183, 108, 0.04) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 70%, var(--navy-deep) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.page-hero .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-hero .hero-label::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-hero .hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
  max-width: 560px;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ===== CONTENT SECTIONS ===== */
.section-light {
  padding: 90px 0;
  background: var(--off-white);
}

.section-white {
  padding: 90px 0;
  background: var(--white);
}

.section-dark {
  padding: 90px 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.section-dark .dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(216, 183, 108, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-title em { color: var(--gold); }

/* Content grid: text + features side by side */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.content-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.section-dark .content-text p {
  color: var(--text-light);
}

/* ===== FEATURE CARDS ===== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 24px;
  transition: border-color 0.3s;
}

.feature-card:hover { border-color: rgba(216, 183, 108, 0.2); }

.feature-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(216, 183, 108, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.feature-card h4 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Feature cards on light background */
.feature-card--light {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-card--light:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-card--light h4 { color: var(--navy); }

/* ===== CREDENTIAL CALLOUT ===== */
.callout {
  background: linear-gradient(135deg, rgba(216, 183, 108, 0.08), rgba(216, 183, 108, 0.03));
  border: 1px solid rgba(216, 183, 108, 0.2);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 28px 32px;
  margin: 32px 0;
}

.callout h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.callout p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-light);
}

.callout--light {
  background: linear-gradient(135deg, rgba(216, 183, 108, 0.06), rgba(216, 183, 108, 0.02));
  border-color: rgba(216, 183, 108, 0.15);
  border-left-color: var(--gold);
}

.callout--light p {
  color: var(--text-muted);
}

/* ===== SERVICE BLOCKS (homepage) ===== */
.service-block {
  background: var(--white);
  border-radius: 4px;
  padding: 40px 36px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.service-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.service-block-icon {
  width: 48px;
  height: 48px;
  background: var(--navy-deep);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-block-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.service-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-block > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-block .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap 0.25s;
}

.service-block:hover .learn-more { gap: 10px; }

.service-block .learn-more svg {
  width: 14px;
  height: 14px;
}

/* ===== DETAIL LIST (for service pages) ===== */
.detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
}

.detail-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-light .detail-item:not(:last-child),
.section-white .detail-item:not(:last-child) {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.detail-item-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(216, 183, 108, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.detail-item-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.section-light .detail-item-icon,
.section-white .detail-item-icon {
  background: var(--gold-glow);
}

.section-light .detail-item-icon svg,
.section-white .detail-item-icon svg {
  color: var(--gold-dark);
}

.detail-item h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.section-light .detail-item h5,
.section-white .detail-item h5 {
  color: var(--navy);
}

.detail-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-dark .detail-item p {
  color: var(--text-light);
}

/* ===== VALUE PROPS (horizontal strip) ===== */
.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-item {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.value-item-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  background: rgba(216, 183, 108, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.value-item h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip .dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(216, 183, 108, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cta-strip-content {
  position: relative;
  z-index: 1;
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-strip h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-strip p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--white);
  border-radius: 4px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--off-white);
  border: 1.5px solid transparent;
  border-radius: 3px;
  font-size: 0.92rem;
  color: var(--navy);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a8a095;
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7685' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 2px;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(216, 183, 108, 0.25);
}

/* ===== CONTACT INFO ===== */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}

.contact-info-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--gold-glow);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
}

.contact-info-item h5 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-info-item a:hover { color: var(--gold-dark); }

.contact-expect {
  background: var(--white);
  border-radius: 4px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-expect h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-expect li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-expect li svg {
  width: 16px;
  height: 16px;
  color: var(--gold-dark);
  min-width: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  padding: 52px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand img { height: 32px; margin-bottom: 14px; }

.footer-brand p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-col p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  background: rgba(20, 31, 43, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 24px;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a.active { color: var(--gold); }

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.process-step:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-light .process-step:not(:last-child),
.section-white .process-step:not(:last-child) {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.process-step-num {
  counter-increment: step;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(216, 183, 108, 0.1);
  border: 1px solid rgba(216, 183, 108, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.section-light .process-step h4,
.section-white .process-step h4 {
  color: var(--navy);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-dark .process-step p {
  color: var(--text-light);
}

/* ===== SECTION PHOTO ===== */
.section-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  max-height: 420px;
}

.section-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.section-photo--overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 45, 62, 0.15), rgba(20, 31, 43, 0.35));
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .value-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }

  .page-hero { padding: 110px 0 60px; }
  .page-hero h1 { font-size: 2rem; }

  .section-light, .section-white, .section-dark { padding: 64px 0; }

  .feature-grid { grid-template-columns: 1fr; }
  .value-strip { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .cta-strip { padding: 60px 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
