.elementor-kit-1464{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-1464 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ============================================
   BIKEBUILDERS - FIX OBOK SIEBIE
   Wymusza pola obok siebie w .row.two
   ============================================ */

/* KONTENER */
.repair-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background: #1a1a1a;
  border-radius: 12px;
}

/* WSZYSTKIE RZĘDY */
.repair-form .row {
  margin-bottom: 30px;
  width: 100%;
}

/* PEŁNA SZEROKOŚĆ - textarea */
.repair-form .row.full {
  display: block;
  width: 100%;
}

.repair-form .row.full textarea {
  width: 100%;
  max-width: 100%;
}

/* DWIE KOLUMNY - WYMUSZENIE OBOK SIEBIE */
.repair-form .row.two {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap; /* ← WYŁĄCZ zawijanie! */
}

/* Każdy element w .row.two */
.repair-form .row.two > * {
  flex: 1 1 0; /* ← Równa szerokość, elastyczny */
  min-width: 0; /* ← WAŻNE: pozwala się zmniejszać */
}

/* Label i input w .row.two muszą się mieścić */
.repair-form .row.two label,
.repair-form .row.two input,
.repair-form .row.two select {
  width: 100%;
  min-width: 0;
}

/* SERWISANT - max 400px */
.repair-form .row.one-third {
  display: block;
  width: 100%;
}

.repair-form .row.one-third label,
.repair-form .row.one-third select {
  max-width: 400px;
}

/* LABELS */
.repair-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

/* INPUT / TEXTAREA / SELECT */
.repair-form input[type="text"],
.repair-form input[type="email"],
.repair-form input[type="tel"],
.repair-form textarea,
.repair-form select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-family: inherit;
  box-sizing: border-box;
}

.repair-form input:focus,
.repair-form textarea:focus,
.repair-form select:focus {
  outline: none;
  border-color: #ff6b00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

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

.repair-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}

/* CHECKBOXY */
.repair-form .service-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.repair-form .service-tiles .wpcf7-list-item {
  flex: 1 1 calc(20% - 12px);
  min-width: 120px;
  margin: 0;
}

.repair-form .service-tiles input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.repair-form .service-tiles .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 12px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.repair-form .service-tiles .wpcf7-list-item-label:hover {
  background: rgba(255, 107, 0, 0.2);
  border-color: rgba(255, 107, 0, 0.6);
  transform: translateY(-2px);
}

.repair-form .service-tiles input[type="checkbox"]:checked + .wpcf7-list-item-label {
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  border-color: #ff6b00;
  font-weight: 700;
}

/* PRZYCISK */
.repair-form .row.submit {
  display: flex;
  justify-content: center;
  margin: 40px 0 30px 0;
}

.repair-form input[type="submit"] {
  min-width: 280px;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
  transition: all 0.3s ease;
}

.repair-form input[type="submit"]:hover {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  transform: translateY(-3px);
}

/* USUŃ MARGINESY CF7 */
.repair-form p {
  margin: 0;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .repair-form .row.two {
    flex-wrap: wrap; /* ← Na mobile pozwól zawijać */
  }
  
  .repair-form .row.two > * {
    flex: 1 1 100%;
  }
  
  .repair-form .service-tiles .wpcf7-list-item {
    flex: 1 1 calc(33.333% - 12px);
  }
  
  .repair-form .row.one-third label,
  .repair-form .row.one-third select {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .repair-form {
    padding: 15px;
  }
  
  .repair-form .service-tiles .wpcf7-list-item {
    flex: 1 1 calc(50% - 12px);
  }
}/* End custom CSS */