.elementor-988467 .elementor-element.elementor-element-b588dff{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:50px;--margin-bottom:50px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-b06236b *//* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

/* Full Screen Container */
.blinds-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  min-height: 100vh;
}

/* Header Styles */
.blinds-form h2 {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 10px;
}

.blinds-form h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #3498db;
}

.blinds-form h3 {
  color: #2c3e50;
  margin: 1.5rem 0 1rem;
  font-size: 1.5rem;
  border-bottom: 2px solid #ecf0f1;
  padding-bottom: 0.5rem;
}

/* Form Grid Layout */
@media (min-width: 768px) {
  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Category Groups */
.category-group {
  background: #f8f9fa;
  padding: 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #3498db;
  transition: all 0.3s ease;
}

.category-group:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.category-group label {
  font-weight: 600;
  color: #2c3e50;
  cursor: pointer;
  display: block;
  margin-bottom: 0.5rem;
}

/* Sub Groups */
.sub-group {
  padding: 1rem 0 0 1.5rem;
  animation: fadeIn 0.3s ease-out;
}

.sub-group label {
  display: block;
  padding: 0.5rem 0;
  font-weight: 500;
  color: #34495e;
  cursor: pointer;
  transition: color 0.2s;
}

.sub-group label:hover {
  color: #3498db;
}

/* Input Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* Checkbox Styles */
input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.2);
  accent-color: #3498db;
}

/* Calculator Styles */
.individual-calculator {
  margin: 1rem 0;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.individual-calculator table {
  width: 100%;
  border-collapse: collapse;
}

.individual-calculator th {
  background: #3498db;
  color: white;
  padding: 0.5rem;
  text-align: center;
}

.individual-calculator td {
  padding: 0.5rem;
  text-align: center;
  background: #f8f9fa;
}

.individual-calculator input[type="number"] {
  margin-bottom: 0;
}

/* Button Styles */
button.calc-btn,
input[type="submit"] {
  background: #3498db;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}

button.calc-btn:hover,
input[type="submit"]:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 2rem auto 0;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Terms Section */
hr {
  border: 0;
  height: 1px;
  background: #ecf0f1;
  margin: 2rem 0;
}

.blinds-form p {
  margin-bottom: 1rem;
  color: #7f8c8d;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .blinds-form {
    padding: 1rem;
  }
  
  .blinds-form h2 {
    font-size: 1.8rem;
  }
  
  .individual-calculator {
    overflow-x: auto;
  }
}

/* Validation Styles */
input:required:invalid {
  border-left: 3px solid #e74c3c;
}

input:required:valid {
  border-left: 3px solid #2ecc71;
}

.required-group {
  position: relative;
}

.required-group::after {
  content: '*';
  color: #e74c3c;
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 1.2rem;
}

/* Compact checkboxes for blinds form */

.blinds-form .category-group label {
  display: inline-flex;
}/* End custom CSS */