@import url("fonts.css");
@import url("variables.css");

/* Contact Section Styling */
.contact-section {
  background-color: var(--white);
}

.contact-header {
  background-color: var(--smart-blue); /* Orange background */
  padding: 2rem;
  /* border-radius: 8px; */
  margin-top: 125px;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--smart-blue); /* Dark blue */
  margin-bottom: 1rem;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--white);
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
}

.contact-content {
  background-color: var(--smart-orange); /* Orange background */
  padding: 2rem;
  /* border-radius: 8px; */
}

.contact-info {
  max-width: 400px;
  background-color: var(--white);
  /* border-radius: 8px; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-img {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.info-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--smart-blue);
  margin-bottom: 0.5rem;
}

.contact-info p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-form {
  /* background-color: var(--white); */
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.contact-form .form-control {
  background-color: var(--white);
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 15px;
}

.contact-form .btn-primary {
  background-color: var(--smart-blue);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 4px;
}

.contact-form .btn-primary:hover {
  background-color: var(--smart-blue);
}

.map-section {
  background-color: var(--smart-orange); /* Orange background */
  padding: 2rem;
}

.map-title {
  font-size: 1.5rem;
  color: var(--smart-blue);
}

#map {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-links {
  background-color: var(--smart-orange); /* Orange background */
  padding: 2rem;
}

.social-title {
  font-size: 1.5rem;
  color: var(--smart-blue);
  margin-bottom: 1rem;
}

.social-link {
  color: var(--smart-blue);
  text-decoration: none;
}

.social-link p {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #333;
}

.social-link:hover {
  color: var(--smart-blue);
}

.social-link:hover i {
  color: var(--smart-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-description {
    font-size: 1rem;
  }

  .contact-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-info,
  .contact-form {
    max-width: 100%;
    padding: 2rem;
  }

  .logo-img {
    max-width: 120px;
  }

  .info-title {
    font-size: 1rem;
  }

  .contact-form .form-control,
  .contact-form .btn-primary {
    font-size: 0.9rem;
  }

  #map {
    height: 300px;
  }

  .social-title {
    font-size: 1.2rem;
  }

  .social-link p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.5rem;
  }

  .contact-description {
    font-size: 0.9rem;
  }

  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }

  .logo-img {
    max-width: 100px;
  }

  .info-title {
    font-size: 0.9rem;
  }

  .contact-form .form-control,
  .contact-form .btn-primary {
    font-size: 0.8rem;
  }

  #map {
    height: 250px;
  }

  .social-title {
    font-size: 1rem;
  }

  .social-link p {
    font-size: 0.8rem;
  }
}

/* Define color variables */
:root {
  --dark-blue: var(--smart-blue);
  --orange: var(--smart-orange);
}
