/* contactus.css - Additional styles for Contact Us page */

.contact-layout {
  display: flex;
  gap: 50px;
  padding: 60px 0;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 350px;
}

.contact-info h2 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 30px;
  color: #555;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.info-list li {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333;
}

.info-list a {
  color: #e74c3c;
  text-decoration: none;
}

.info-list a:hover {
  text-decoration: underline;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  color: #2c3e50;
  font-weight: 600;
}

.social-links a:hover {
  color: #e74c3c;
}

/* Form */
.contact-form-wrapper {
  flex: 1 1 450px;
}

.contact-form-wrapper h2 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #e74c3c;
  outline: none;
}

.checkbox-label {
  font-weight: normal !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.checkbox-label input {
  width: auto;
}

/* Map */
.map-section {
  padding-bottom: 60px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
}

.map-wrapper {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-layout {
    flex-direction: column;
  }
}

