/* ============================================
   CONTACT — HERO
   ============================================ */

.ct-hero {
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}

.ct-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 224, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.ct-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Availability badge */
.ct-avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 148, 0.2);
  background: rgba(0, 255, 148, 0.04);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #00ff94;
  margin-bottom: 28px;
}

.ct-avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00ff94;
  box-shadow: 0 0 8px rgba(0, 255, 148, 0.6);
  animation: ct-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes ct-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

/* Hero title */
.ct-hero-title {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
}

.ct-hero-title span {
  background: var(--linear, linear-gradient(168deg, #00e0ff 0%, #00ff94 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ct-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: #666;
  max-width: 520px;
}


/* ============================================
   CONTACT — MAIN LAYOUT
   ============================================ */

.ct-main {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 64px;
  align-items: start;
  padding-bottom: 24px;
}


/* ============================================
   CONTACT — INFO PANEL (LEFT)
   ============================================ */

.ct-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 8px;
}

/* Stats */
.ct-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 14px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}

.ct-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--linear, linear-gradient(90deg, #00e0ff 0%, #00ff94 100%));
}

.ct-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  text-align: center;
}

.ct-stat-num {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--linear, linear-gradient(168deg, #00e0ff 0%, #00ff94 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ct-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #444;
}

.ct-stat-divider {
  width: 1px;
  height: 40px;
  background: #1e1e1e;
  flex-shrink: 0;
}

/* Process steps */
.ct-process-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3a3a3a;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 2px solid #1e1e1e;
}

.ct-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.ct-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.ct-step-num {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 224, 255, 0.22);
  background: rgba(0, 224, 255, 0.04);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00e0ff;
  flex-shrink: 0;
}

.ct-step-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(0, 224, 255, 0.18), transparent);
  margin-top: 6px;
}

.ct-step-body {
  padding-bottom: 24px;
}

.ct-step--last .ct-step-body {
  padding-bottom: 0;
}

.ct-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #e8e8e8;
  margin-bottom: 5px;
}

.ct-step-desc {
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.65;
}

/* Direct email */
.ct-direct-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3a3a3a;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 2px solid #1e1e1e;
}

/* Unified email card */
.ct-email-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  text-align: left;
  transition: border-color 220ms ease, background 220ms ease;
  position: relative;
  overflow: hidden;
}

.ct-email-card:hover {
  border-color: rgba(0, 224, 255, 0.22);
  background: rgba(0, 224, 255, 0.02);
}

.ct-email-icon-wrap {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 224, 255, 0.06);
  border: 1px solid rgba(0, 224, 255, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
}

.ct-email-info {
  flex: 1;
  min-width: 0;
}

.ct-email-info span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a3a3a;
  display: block;
}

.ct-email-info p {
  font-size: 14px;
  font-weight: 600;
  background: var(--linear, linear-gradient(168deg, #00e0ff 0%, #00ff94 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 4px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ct-copy-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2a2a2a;
  flex-shrink: 0;
  transition: color 200ms;
}

.ct-email-card:hover .ct-copy-label {
  color: #3e3e3e;
}


/* ============================================
   CONTACT — FORM CARD (RIGHT)
   ============================================ */

.ct-form-col {
  position: sticky;
  top: 96px;
}

.ct-form-card {
  background: #080808;
  border: 1px solid #1e1e1e;
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.ct-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--linear, linear-gradient(90deg, #00e0ff 0%, #00ff94 100%));
}

.ct-form-card-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #111;
}

.ct-form-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.ct-form-sub {
  font-size: 13px;
  color: #3e3e3e;
  line-height: 1.5;
}


/* ============================================
   CF7 FORM — FULL OVERRIDE
   ============================================ */

/* Form flex layout */
.ct-form-card .wpcf7 form,
.home-cta-form-card .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Hide spinner */
.ct-form-card .wpcf7-spinner,
.home-cta-form-card .wpcf7-spinner {
  display: none !important;
}

/* Field wrappers */
.ct-form-card .wpcf7-form-control-wrap,
.home-cta-form-card .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* All text / email inputs */
.ct-form-card .wpcf7 input[type="text"],
.ct-form-card .wpcf7 input[type="email"],
.ct-form-card .wpcf7 input[type="tel"],
.ct-form-card .wpcf7 input[type="url"],
.ct-form-card .wpcf7 select,
.home-cta-form-card .wpcf7 input[type="text"],
.home-cta-form-card .wpcf7 input[type="email"],
.home-cta-form-card .wpcf7 input[type="tel"],
.home-cta-form-card .wpcf7 input[type="url"],
.home-cta-form-card .wpcf7 select {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  background: #0c0c0c;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  color: #d8d8d8;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
  appearance: none;
  -webkit-appearance: none;
}

.ct-form-card .wpcf7 input[type="text"]:focus,
.ct-form-card .wpcf7 input[type="email"]:focus,
.ct-form-card .wpcf7 input[type="tel"]:focus,
.ct-form-card .wpcf7 input[type="url"]:focus,
.ct-form-card .wpcf7 select:focus,
.home-cta-form-card .wpcf7 input[type="text"]:focus,
.home-cta-form-card .wpcf7 input[type="email"]:focus,
.home-cta-form-card .wpcf7 input[type="tel"]:focus,
.home-cta-form-card .wpcf7 input[type="url"]:focus,
.home-cta-form-card .wpcf7 select:focus {
  border-color: rgba(0, 224, 255, 0.35);
  background: #111;
  box-shadow: 0 0 0 3px rgba(0, 224, 255, 0.06);
}

/* Placeholder */
.ct-form-card .wpcf7 input::placeholder,
.home-cta-form-card .wpcf7 input::placeholder {
  color: #2e2e2e;
  font-size: 13px;
}

/* Textarea */
.ct-form-card .wpcf7 textarea,
.home-cta-form-card .wpcf7 textarea {
  width: 100%;
  min-height: 150px;
  max-height: 300px;
  min-width: 100%;
  max-width: 100%;
  padding: 15px 18px;
  background: #0c0c0c;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  color: #d8d8d8;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.65;
  outline: none;
  resize: vertical;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.ct-form-card .wpcf7 textarea:focus,
.home-cta-form-card .wpcf7 textarea:focus {
  border-color: rgba(0, 224, 255, 0.35);
  background: #111;
  box-shadow: 0 0 0 3px rgba(0, 224, 255, 0.06);
}

.ct-form-card .wpcf7 textarea::placeholder,
.home-cta-form-card .wpcf7 textarea::placeholder {
  color: #2e2e2e;
  font-size: 13px;
}

/* Field groups */
.ct-form-card .wpcf7 p,
.home-cta-form-card .wpcf7 p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-form-card .wpcf7 .name-container p,
.ct-form-card .wpcf7 .email-tel-con p,
.home-cta-form-card .wpcf7 .name-container p,
.home-cta-form-card .wpcf7 .email-tel-con p {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.ct-form-card .wpcf7 .name-container p span,
.ct-form-card .wpcf7 .email-tel-con p span,
.home-cta-form-card .wpcf7 .name-container p span,
.home-cta-form-card .wpcf7 .email-tel-con p span {
  flex: 1;
  min-width: 140px;
}

/* Textarea full width */
.ct-form-card .wpcf7 .email-tel-con p .wpcf7-form-control-wrap:has(textarea),
.ct-form-card .wpcf7 p .wpcf7-form-control-wrap:has(textarea),
.home-cta-form-card .wpcf7 .email-tel-con p .wpcf7-form-control-wrap:has(textarea),
.home-cta-form-card .wpcf7 p .wpcf7-form-control-wrap:has(textarea) {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}

/* Label-like spans */
.ct-form-card .wpcf7 p > span:not(.wpcf7-form-control-wrap),
.home-cta-form-card .wpcf7 p > span:not(.wpcf7-form-control-wrap) {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #444;
  text-transform: uppercase;
}

/* Validation errors */
.ct-form-card .wpcf7-not-valid-tip,
.home-cta-form-card .wpcf7-not-valid-tip {
  font-size: 11px;
  color: #ff6b6b;
  margin-top: 4px;
  display: block;
}

.ct-form-card .wpcf7 input.wpcf7-not-valid,
.ct-form-card .wpcf7 textarea.wpcf7-not-valid,
.home-cta-form-card .wpcf7 input.wpcf7-not-valid,
.home-cta-form-card .wpcf7 textarea.wpcf7-not-valid {
  border-color: rgba(255, 107, 107, 0.4);
}

/* Submit button */
.ct-form-card .wpcf7 input[type="submit"],
.ct-form-card .wpcf7 .btn-wrap p input,
.home-cta-form-card .wpcf7 input[type="submit"],
.home-cta-form-card .wpcf7 .btn-wrap p input {
  width: 100%;
  height: 52px;
  padding: 0 24px;
  margin-top: 4px;
  background: var(--linear, linear-gradient(168deg, #00e0ff 0%, #00ff94 100%));
  color: #050505;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ct-form-card .wpcf7 input[type="submit"]:hover,
.home-cta-form-card .wpcf7 input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 224, 255, 0.18);
}

.ct-form-card .wpcf7 input[type="submit"]:active,
.home-cta-form-card .wpcf7 input[type="submit"]:active {
  transform: translateY(0);
  opacity: 1;
}

/* Response messages */
.ct-form-card .wpcf7-response-output,
.home-cta-form-card .wpcf7-response-output {
  margin: 8px 0 0 !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-family: inherit;
  border: none !important;
}

.ct-form-card .wpcf7-response-output.wpcf7-mail-sent-ok,
.home-cta-form-card .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: rgba(0, 255, 148, 0.08) !important;
  border: 1px solid rgba(0, 255, 148, 0.2) !important;
  color: #00ff94 !important;
}

.ct-form-card .wpcf7-response-output.wpcf7-validation-errors,
.ct-form-card .wpcf7-response-output.wpcf7-mail-sent-ng,
.home-cta-form-card .wpcf7-response-output.wpcf7-validation-errors,
.home-cta-form-card .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: rgba(255, 107, 107, 0.08) !important;
  border: 1px solid rgba(255, 107, 107, 0.2) !important;
  color: #ff9a9a !important;
}

/* Privacy note */
.ct-form-card .wpcf7::after,
.home-cta-form-card .wpcf7::after {
  content: '🔒  Your information is safe and will never be shared.';
  display: block;
  margin-top: 14px;
  font-size: 11px;
  color: #2e2e2e;
  text-align: center;
  letter-spacing: 0.03em;
}

/* ============================================
   LEGACY SHARED STYLES (used across pages)
   ============================================ */

.contact-cont {
  width: 100%;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-wrap-1 {
  flex: 1;
  min-width: 260px;
}

.contact-wrap-1 .p-contact {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.contact-wrap-1 .p-contact span {
  background: var(--linear, linear-gradient(168deg, #00e0ff 0%, #00ff94 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-wrap {
  width: 100%;
  max-width: 540px;
}

.contact-wrap h3,
.contact-wrap h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.contact-wrap h3 span,
.contact-wrap h2 span {
  background: var(--linear, linear-gradient(168deg, #00e0ff 0%, #00ff94 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-wrap br { display: none; }
.contact-wrap p  { margin: 0; }
.contact-wrap .wpcf7-spinner { display: none; }

.contact-wrap form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Shared form inputs (used in footer CTAs) */
.contact-wrap .wpcf7 input[type="text"],
.contact-wrap .wpcf7 input[type="email"],
.contact-wrap .wpcf7 input[type="tel"] {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  background: rgba(217, 217, 217, 0.07);
  border: 1px solid #232524;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 200ms;
}

.contact-wrap .wpcf7 input[type="text"]:focus,
.contact-wrap .wpcf7 input[type="email"]:focus {
  border-color: rgba(0, 224, 255, 0.3);
}

.contact-wrap .wpcf7 textarea {
  width: 100%;
  min-height: 140px;
  min-width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  background: rgba(217, 217, 217, 0.07);
  border: 1px solid #232524;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  outline: none;
  transition: border-color 200ms;
}

.contact-wrap .wpcf7 textarea:focus {
  border-color: rgba(0, 224, 255, 0.3);
}

.contact-wrap .wpcf7 input[type="submit"],
.btn-wrap p input {
  width: 100%;
  height: 48px;
  background: var(--linear, linear-gradient(168deg, #00e0ff 0%, #00ff94 100%));
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 200ms;
}

.contact-wrap .wpcf7 input[type="submit"]:hover { opacity: 0.85; }

.contact-wrap .wpcf7-response-output {
  font-size: 13px;
  color: #fff;
  margin: 4px 0 0 !important;
  padding: 8px 12px !important;
  border: none !important;
  border-radius: 6px !important;
}

.contact-wrap .wpcf7 p { margin: 0; }
.contact-wrap .wpcf7-spinner { display: none; }

/* Email copy button */
.email {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  padding: 8px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 8px;
  background: rgba(217, 217, 217, 0.07);
  border: 1px solid #232524;
  text-decoration: none;
  transition: border-color 200ms;
}

.email p {
  background: var(--linear, linear-gradient(168deg, #00e0ff 0%, #00ff94 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.email span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.email:hover {
  border-color: rgba(0, 224, 255, 0.25);
}

.email-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.email-con-icon {
  position: relative;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(217, 217, 217, 0.07);
  border: 1px solid #232524;
  flex-shrink: 0;
  overflow: hidden;
}

.email-con-icon img { width: 28px; height: 28px; }

/* Ripple effect */
ripple {
  position: absolute;
  background-color: #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  animation: ripple-anim 1000ms linear infinite;
  opacity: 0.15;
}

@keyframes ripple-anim {
  0%   { width: 0; height: 0; }
  50%  { width: 1000px; height: 1000px; }
  100% { opacity: 0.1; }
}

.anim-check {
  width: 52px;
  height: 52px;
  position: absolute;
  top: calc(50% - 26px);
  left: calc(50% - 26px);
  pointer-events: none;
}

.hide { display: none; }

.tooltip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 6px;
  color: #1a1a1a;
  background: #f0f0f0;
  border: none;
}

.name-container p {
  display: flex;
  gap: 12px;
  margin: 0;
}

.name-container p span input { width: 100%; }


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .ct-main {
    grid-template-columns: 1fr 460px;
    gap: 48px;
  }
  .ct-hero-title { font-size: 64px; }
}

@media (max-width: 900px) {
  .ct-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ct-form-col {
    position: static;
  }

  .ct-hero-title { font-size: 52px; }
}

@media (max-width: 600px) {
  /* Hero */
  .ct-hero          { padding: 56px 0 40px; }
  .ct-hero-title    { font-size: 40px; }
  .ct-hero-sub      { font-size: 15px; }

  /* Stats */
  .ct-stats         { flex-direction: column; gap: 16px; padding: 20px; }
  .ct-stat-divider  { width: 100%; height: 1px; }

  /* Form card */
  .ct-form-card     { padding: 20px 16px; border-radius: 16px; }

  /* Tighter form head on mobile */
  .ct-form-card-head {
    margin-bottom: 16px;
    padding-bottom: 14px;
  }
  .ct-form-title    { font-size: 20px; }

  /* Side-by-side field pairs → single column on mobile */
  .ct-form-card .wpcf7 .name-container p,
  .ct-form-card .wpcf7 .email-tel-con p,
  .home-cta-form-card .wpcf7 .name-container p,
  .home-cta-form-card .wpcf7 .email-tel-con p {
    flex-direction: column;
    gap: 10px;
  }

  /* Full-width spans inside those pairs */
  .ct-form-card .wpcf7 .name-container p span,
  .ct-form-card .wpcf7 .email-tel-con p span,
  .home-cta-form-card .wpcf7 .name-container p span,
  .home-cta-form-card .wpcf7 .email-tel-con p span {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
  }

  /* Shorter textarea on mobile */
  .ct-form-card .wpcf7 textarea,
  .home-cta-form-card .wpcf7 textarea {
    min-height: 100px;
    max-height: 180px;
  }

  /* Tighter gap between form fields */
  .ct-form-card .wpcf7 form,
  .home-cta-form-card .wpcf7 form {
    gap: 10px;
  }
}
