/*
 * House Moving Form CSS - Simplified
 */

/* Form Layout */
.form-image-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1400px;
  margin: 30px auto 0;
  padding: 0 20px;
}

.hero-form-container {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #eaeef2;
  width: 100%;
}

.form-fields-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

/* Form Fields */
.house-moving-form-group {
  margin-bottom: 25px;
}

.address-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #007bff;
  display: inline-block;
}

.address-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.address-field-full {
  grid-column: 1 / -1;
}

.address-field-half {
  display: flex;
  flex-direction: column;
}

.property-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1rem;
}

.form-input {
  padding: 14px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  background-color: #f9fbfd;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: #007bff;
  outline: none;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}

.form-input:disabled {
  background-color: #e9ecef;
  border-color: #ced4da;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.5;
}

.form-help {
  color: #666;
  font-size: 0.9rem;
  margin-top: 4px;
  display: block;
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  padding: 12px;
  border-radius: 8px;
}

.hero-form-container input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #007bff;
}

.checkbox-label {
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 500;
  cursor: pointer;
}

/* Radio Buttons */
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  padding: 12px 20px;
  border-radius: 8px;
  border: 2px solid #e1e5e9;
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 1;
  justify-content: center;
}

.radio-option:hover {
  border-color: #007bff;
  background: #f0f8ff;
}

.radio-option:has(input:checked) {
  border-color: #007bff;
  background: #e3f2fd;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}

.hero-form-container input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #007bff;
  margin: 0;
}

.radio-label {
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}

/* Enhanced Hero Section Styles */
.house-moving-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    padding: 80px 20px;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.house-moving-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,102,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.house-moving-hero > * {
    position: relative;
    z-index: 2;
}

/* Hero Content Styling */
.hero-main-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-main-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.hero-main-content h1 .subtitle {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 10px;
    background: linear-gradient(135deg, #007bff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #e9ecef;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Service Features */
.hero-service-features {
    margin-bottom: 50px;
}

.features-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-item:hover {
    background: rgba(0, 123, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    color: #007bff;
    font-weight: bold;
    background: rgba(0, 123, 255, 0.2);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #007bff;
}

/* Buttons */
.submit-button {
  padding: 20px 30px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  width: 100%;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.5);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.secondary-button {
  display: inline-block;
  margin-top: 15px;
  color: #1a1a1a;
  text-decoration: underline;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.secondary-button:hover {
  color: #007bff;
}
/* Custom Select Dropdown */
.custom-select {
  position: relative;
  width: 100%;
}

._selectedOption_sxhhb_18 {
  padding: 14px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  color: #1a1a1a;
  font-size: 1rem;
  background-color: #f9fbfd;
  transition: all 0.3s ease;
}

._selectedOption_sxhhb_18:focus {
  border-color: #007bff;
  outline: none;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}

._options_sxhhb_60 {
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
  position: absolute;
  width: 100%;
  background: #fff;
  border: 2px solid #007bff;
  border-radius: 8px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: none;
  left: 0;
  top: 100%;
}

._options_sxhhb_60 li {
  padding: 12px 14px;
  cursor: pointer;
  transition: background 0.2s;
  color: #1a1a1a;
  border-bottom: 1px solid #f0f0f0;
}

._options_sxhhb_60 li:hover {
  background: #f8f9fa;
}

._options_sxhhb_60 li:last-child {
  border-bottom: none;
}

.sub-options {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 5px;
  width: 100%;
  background: #fff;
  border: 2px solid #007bff;
  border-radius: 8px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 1001;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .form-image-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .address-fields-grid,
  .property-type-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .address-field-full,
  .address-field-half {
    grid-column: 1;
  }
  
  .radio-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .radio-option {
    justify-content: flex-start;
  }
  
  .hero-form-container {
    padding: 20px;
  }
  
  .form-image-container {
    padding: 0 10px;
  }
  
  /* Mobile dropdown positioning */
  ._options_sxhhb_60, .sub-options {
    position: fixed !important;
    left: 10px !important;
    right: 10px !important;
    width: calc(100vw - 20px) !important;
    top: 30% !important;
    z-index: 9999 !important;
    max-height: 50vh !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 480px) {
  .form-image-container {
    padding: 0 5px;
  }
  
  .hero-form-container {
    padding: 15px;
    border-radius: 8px;
  }
}
  