

@media print {
    body {
        display: none!important;
    }
}
:root{
    --mainColor: linear-gradient(98deg, #df48e1, #7b0083);
    --text: #000000;
    --input-color: #000;
    --valid-input-color: #000;
}

#Contact-Us {
  border: none;
  border-radius: 50px;
  max-width: 560px;
  margin: 40px auto;
  font-family: sans-serif;
  box-shadow: 0px 0px 10px #00000030;
}

.Contact-Us-Wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 40px 40px;
  box-sizing: border-box;
}

.Contact-Us-Wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.Contact-Us-Title {
  text-align: center;
  padding: 40px 25px;
  font-size: 30px;
  background: none;
  background-image: var(--mainColor); /* Градиентные цвета */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Для Chrome и Safari */
  color: transparent; /* Для Firefox */
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 2px;
  margin: 0;
}
@media (max-width: 767px) {
  .Contact-Us-Title {
    font-size: 24px;
  }
  .Contact-Us {
    border-radius: 25px;
  }
}

.Contact-Us input {
  font-size: 16px;
  margin-bottom: 20px;
  width: 100%;
  padding: 12px 15px;
  box-sizing: border-box;
  border: 1px solid var(--mainColor);
  border-radius: 4px;
  color: var(--text);
  line-height: 1;
  font-family: sans-serif;
  background: #cbcbcb8a;
}
#Contact-Us input:focus {
  outline: 1px solid var(--mainColor);
}

.Contact-Us-Button {
  background: var(--mainColor);
  color: #fff;
  width: 100%;
  max-width: 300px;
  padding: 14px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-family: sans-serif;
  letter-spacing: 1px;
  box-shadow: 3px 3px 6px #00000030;
  border-radius: 20px;
  margin: auto;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

input.error {
  margin-bottom: 5px !important;
  background: #ff000020 !important;
  position: relative;
  color: var(--valid-input-color) !important;
}

input.error::placeholder {
  color: #000;
}

label.error {
  font-family: sans-serif;
  color: red;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.phone + label.error {
  margin: 5px 0 0 !important;
}

input.valid {
  background: #00ef0030 !important;
  color: var(--valid-input-color) !important;
}


.load {
  position: relative;
}

.load::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 1000000000000;
}

/* Коли форма в попапі — додаємо їй цей клас */
.cu-pop {
  position: relative;
  max-width: min(900px, calc(100vw - 32px));
  max-height: 85vh;
  box-sizing: border-box;
  transform: translateY(8px) scale(0.98);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.cu-modal-overlay.is-open > .cu-pop {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Білий хрестик (кнопка закриття) */
.cu-close {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #1800d2;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
  /* щоб було видно на світлому */
  transition: transform 160ms ease;
}

.cu-close:hover {
  transform: scale(1.05);
}

.cu-close:focus {
  outline: 2px solid #ffffff80;
  outline-offset: 2px;
}

.cu-close svg {
  width: 22px;
  height: 22px;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .cu-modal-overlay,
  .cu-pop {
    transition: none;
  }
}

#Contact-Us .iti__country-list {
  max-height: 200px;
  width: auto;
}

.btn.form-button {
    font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #009;
  color: #fff;
  padding: 16px;
}

#Contact-Us .citizen-check-wrapper{
  width: 100%;
  margin: 14px 0 12px;
  padding: 12px 14px;
  background: rgba(203,203,203,.16);
  border: 1px solid rgba(15,23,42,.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

#Contact-Us .citizen-check-wrapper:hover{
  transform: translateY(-1px);
  border-color: rgba(56,103,200,.35);
}

#Contact-Us .citizen-check{
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: #3867c8; 
  flex: 0 0 auto;
}

#Contact-Us .citizen-check-label{
  cursor: pointer;
  font-size: 15px;
  line-height: 1.35;
  color: #0b1220; 
  font-weight: 600;
  user-select: none;
}


#Contact-Us .citizen-check:focus-visible{
  outline: none;
}
#Contact-Us .citizen-check-wrapper:has(.citizen-check:focus-visible){
  background: rgba(255,255,255,.95);
  border-color: rgba(56,103,200,.55);
  box-shadow: 0 0 0 4px rgba(56,103,200,.18);
}

#Contact-Us .citizen-check-wrapper.is-checked{
  border-color: rgba(31,157,85,.35);
  box-shadow: 0 0 0 4px rgba(31,157,85,.10);
}

#Contact-Us .citizen-check-wrapper.is-error{
  border-color: rgba(209,26,42,.65);
  box-shadow: 0 0 0 4px rgba(209,26,42,.14);
  background: rgba(209,26,42,.06);
}

#Contact-Us .citizen-check-hint{
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(11,18,32,.65);
}
