/* Contact page styling */

/* Base Styles - matching expertise.css */
.brochure-container {
  color: #333;
  background-color: #fff;
}

.brochure-section {
  margin-bottom: 60px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

/* Contact heading styling similar to expertise heading */
.contact-heading {
  font-family: 'gibson-impact', sans-serif;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  font-size: 5em;
  -webkit-text-stroke: 0.05em #111;
  paint-order: stroke fill;
  text-shadow: 0.06em 0.06em 0.12em rgba(0,0,0,0.9);
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
  background-image: url('../images/my-desk-wide.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
  padding-top: 0.25em;
  padding-left: 0.25em;
}

/* Contact form styling */
#contact-page {
  background-color: #f9f9f9;
}

.contact-wrap {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-wrap h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}

.contact-wrap h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #4ca1af;
}

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

.form-control {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 10px 15px;
}

.btn-primary {
  background-color: #4ca1af;
  border-color: #4ca1af;
  padding: 10px 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #3a8a98;
  border-color: #3a8a98;
}

/* Direct contact info styling */
.contact-wrap p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-wrap a {
  color: #4ca1af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-wrap a:hover {
  color: #3a8a98;
  text-decoration: underline;
}

/* Contact item styling */
.contact-info {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.contact-item i {
  font-size: 1.8rem;
  color: #4ca1af;
  margin-right: 15px;
  margin-top: 5px;
  width: 30px;
  text-align: center;
}

.contact-details {
  flex: 1;
}

.contact-details h3 {
  margin: 0 0 5px 0;
  color: #2c3e50;
  font-size: 1.2rem;
}

.contact-details p {
  margin: 0;
  font-size: 1.1rem;
}

/* Availability info styling */
.availability-info {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #4ca1af;
}

.availability-info h3 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.availability-info p {
  margin-bottom: 20px;
}

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

  .col-md-6 {
    width: 100%;
  }

  .availability-info {
    margin-top: 20px;
  }

  .contact-heading {
    font-size: 3.5em;
    padding-bottom: 3rem;
  }
}
