
/** Kontak Form */
.wpcf7-list-item-label{
	color:#fff;
}
.form-section {
	padding:30px;
  margin-bottom: 80px;
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; */
	background:#1a1a1a;
  font-family: 'Rubik',  sans-serif;
  /*background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);*/
}

.form-section .limited-offer {
  color: #fbbf24;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.form-section  .title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.form-section .subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  line-height: 1.5;
}

/* Form Styles */
.form-section .form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-section .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; 
  margin-bottom: 1.5rem;
}

.form-section .form-group p{
  margin-bottom: 0px;
}
 
.form-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-section .form-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2px;
}

.form-section .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-section .input-icon {
  position: absolute;
  left: 16px;
  width: 20px;
	top: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="url"],
.form-section textarea {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.2s ease;
}

.form-section input[type="text"]:focus,
.form-section input[type="email"]:focus,
.form-section input[type="url"]:focus,
.form-section textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(30, 41, 59, 0.9);
}

.form-section input::placeholder,
.form-section textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-section textarea {
  padding: 16px;
  resize: vertical;
  min-height: 80px;
}

/* Radio Group */
.form-section .radio-group {
  display: grid;
   
  gap: 12px;
}

.form-section .radio-option {
  position: relative;
}

.form-section .radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-section .radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.form-section .radio-option input[type="radio"]:checked + .radio-label {
  background: rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

.form-section .radio-icon {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.7);
}

.form-section .radio-option input[type="radio"]:checked + .radio-label .radio-icon {
  color: #3b82f6;
}

.form-section .radio-label span {
  font-size: 14px;
  font-weight: 500;
}

/* Select Dropdown */
.form-section .select-wrapper {
  position: relative;
}

.form-section select {
  width: 100%;
  padding: 16px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-section select:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(30, 41, 59, 0.9);
}

.form-section select option {
  background: #1e293b;
  color: #ffffff;
}

.form-section .select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.form-section .form-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* Submit Button */
.form-section .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 32px;
  background: #fbbf24;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 16px;
}

.form-section .submit-btn:hover {
  background: #f59e0b;
  transform: translateY(-1px);
}

.form-section .btn-arrow {
  width: 20px;
  height: 20px;
}

.form-section .form-footer {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

.form-section .link {
  color: #3b82f6;
  text-decoration: none;
}

.form-section .link:hover {
  text-decoration: underline;
}


@media screen and (max-width: 767px) {
  .form-section {
	  padding:10px;

  }
  .form-section .form-row {
    display: block;
  }
  
}



 

/** endKontak */

