/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f4f8;
}

#contact-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #f8fafc;
}

.contact-section-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
}

.contact-section-subtitle {
  font-size: 18px;
  color: #000000;
  margin-bottom: 30px;
}

/* Contact Widget */
.contact-widget {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}

.contact-form, .company-info {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 48%;
  box-sizing: border-box;
}

/* Form Input Styling */
.contact-form label {
  display: block;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

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

.contact-form button {
  background-color: #800000;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e20909;
}

/* Company Info Styles */
.company-info h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.company-info p {
  color: #555;
  font-size: 16px;
  margin: 10px 0;
}

.company-info a {
  color: #007bff;
  text-decoration: none;
}

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

/* Map Container */
.map-container {
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

/* Social Media Links */
.social-media {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-media a {
  color: #800000;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.social-media a i {
  font-size: 20px;
}

.social-media a:hover {
  color: #e20909;
}

/* Responsive Layout Adjustments */
@media (max-width: 768px) {
  .contact-widget {
      flex-direction: column;
      align-items: center;
  }

  .contact-form, .company-info {
      max-width: 100%;
  }
}
