.contactus_form {
  padding: var(--space-section) 0;
}
.cu-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}
@media (max-width: 1000px) {
  .cu-grid {
    grid-template-columns: 1fr;
  }
}
.cu-left {
  padding: var(--space-lg);
}
.cu-left h2 {
  margin-bottom: var(--space-sm);
}
.cu-left p {
  margin-bottom: var(--space-md);
}
.cu-errors {
  background: #fee2e2;
  color: #7f1d1d;
  border: 1px solid #fecaca;
  border-radius: var(--border-radius-md);
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.cu-form .fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.cu-form .field {
  display: grid;
  gap: 0.4rem;
}
.cu-form .field.full {
  grid-column: 1/-1;
}
.cu-form label {
  font-weight: 600;
}
.cu-terms {
  display: block;
  margin-top: var(--space-sm);
  color: #64748b;
  line-height: 1.5;
}
.cu-terms a {
  text-decoration: underline;
  color: var(--nv-white);
  opacity: .875;
}
.cu-terms a:hover{
  opacity: 1;
}

.cu-form .actions {
  margin-top: var(--space-md);
  display: flex;
  justify-content: center;
}
.cu-submit {
  min-width: 260px;
  padding: 14px 40px;
}
@media (max-width: 640px) {
  .cu-form .fields {
    grid-template-columns: 1fr;
  }
}
.scheme-white .cu-left {
  background: var(--nv-blue);
  color: var(--nv-white);
}
.scheme-white .cu-left h2,
.scheme-white .cu-left p,
.scheme-white .cu-form label {
  color: var(--nv-white);
}
.scheme-white .cu-terms {
  color: color-mix(in srgb, var(--nv-white) 75%, transparent);
}
.scheme-white input,
.scheme-white textarea,
.scheme-white select {
  background: #fff;
  border-color: #d1d5db;
  color: var(--text-color);
}
.scheme-white .cu-submit {
  background: var(--nv-orange);
}
.scheme-white .cu-submit:hover {
  outline-color: var(--nv-white);
}
.scheme-blue .cu-left {
  background: #fff;
  color: var(--text-color);
}
.scheme-blue .cu-submit {
  background: var(--nv-blue);
}
.scheme-blue .cu-submit:hover {
  outline-color: #fff;
}
.cu-right {
  display: flex;
  min-height: 500px;
}
#cu-carousel {
  position: relative;
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: #f1f5f9;
  width: 100%;
}
.cu-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.cu-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.cu-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.cu-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cu-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem 0.8rem;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.3rem;
}
.cu-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--nv-blue) 85%, #fff);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: background 0.2s ease;
}
.cu-nav:hover {
  background: var(--nv-blue);
}
.cu-nav.prev {
  left: 8px;
}
.cu-nav.next {
  right: 8px;
}
.cu-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  gap: 6px;
  justify-content: center;
  z-index: 10;
}
.cu-dots button {
  width: 8px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.2s ease;
}
.cu-dots button:hover {
  background: rgba(255, 255, 255, 0.8);
}
.cu-dots button[aria-current="true"] {
  background: #fff;
}
.contactus-bar {
  height: 8px;
  background: var(--nv-orange);
  width: 100%;
}