/* General Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #f4f7f9; /* Light background */
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin-top: 10rem;
}

/* Main Contact Container */
.contact-container {
    display: flex;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Ensures child elements respect border-radius */
}

/* Section Titles */
.section-title {
  font-size: 1.8em;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  border-bottom: 3px solid #ff5722; /* Accent color for underline */
  display: inline-block;
  padding-bottom: 5px;
}

/* Left Section: Contact Details */
.contact-details {
  flex: 1;
  padding: 40px;
  background-color: #f9f9f9;
}

.intro-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 1em;
  color: #555;
}

.contact-info-item i {
  color: #ff5722; /* Icon color */
  margin-right: 15px;
  font-size: 1.2em;
  width: 25px; /* Fixed width for consistent alignment */
  text-align: center;
}

/* Social Links */
.social-links {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1em;
  transition: transform 0.3s, opacity 0.3s;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.facebook {
  background-color: #3b5998;
}
.twitter {
  background-color: #1da1f2;
}
.pinterest {
  background-color: #bd081c;
}
.linkedin {
  background-color: #0077b5;
}

/* Right Section: Contact Form */
.contact-form {
  flex: 1;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group-inline {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-inline input {
  flex: 1;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: #fcfcfc;
}

input:focus,
textarea:focus {
  border-color: #ff5722;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 87, 34, 0.2);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.submit-button {
  background-color: #ff5722;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-button:hover {
  background-color: #e64a19;
}

.submit-button:active {
  transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 800px) {
  .contact-container {
    flex-direction: column; /* Stacks the two sections vertically */
  }

  .contact-details,
  .contact-form {
    padding: 30px;
  }

  .form-group-inline {
    flex-direction: column;
    gap: 0;
  }

  .form-group-inline input {
    margin-bottom: 20px;
  }
}
