/* Contact Page Styles */
.section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: 48px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-header .lead-text {
  font-size: 24px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}

.contact-info-section {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-section h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

.contact-info-section > p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-details {
  display: grid;
  gap: 30px;
}

.contact-item {
  padding-left: 20px;
  border-left: 3px solid #007bff;
}

.contact-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.contact-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.contact-form-section {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form-section h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #007bff;
  outline: none;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

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

.checkbox-group {
  margin-bottom: 25px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.checkbox-container:hover input ~ .checkmark {
  border-color: #007bff;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #007bff;
  border-color: #007bff;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-text {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  padding-top: 2px;
}

.checkbox-text a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.checkbox-text a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.button.w-button {
  background-color: #007bff;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.button.w-button:hover {
  background-color: #0056b3;
}

.map-section {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.map-section h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}

.map-container {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 5px;
  text-align: center;
}

.map-placeholder {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .contact-header h1 {
    font-size: 40px;
  }
  
  .contact-header .lead-text {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
  
  .contact-header {
    margin-bottom: 40px;
  }
  
  .contact-header h1 {
    font-size: 32px;
  }
  
  .contact-info-section,
  .contact-form-section,
  .map-section {
    padding: 30px;
  }
  
  .contact-details {
    gap: 20px;
  }
}

@media (max-width: 479px) {
  .contact-header h1 {
    font-size: 28px;
  }
  
  .contact-header .lead-text {
    font-size: 18px;
  }
  
  .contact-info-section,
  .contact-form-section,
  .map-section {
    padding: 20px;
  }
} 