html {
  scroll-behavior: smooth;
}

* {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to right, #e8f3fe, #fff7ea);
  padding-top: 80px;
}

.contact-banner {
  width: 100%;
  height: auto;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.contact-banner img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.contact-section {
  padding: 50px 0;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

/* الجزء الخاص بالتواصل */
.contact-info {
  flex: 1;
  text-align: left;
}

.contact-info h2 {
  color: #1d3a78;
  font-size: 55px;
  margin-bottom: 10px;
}

.contact-info p {
  color: #494747;
  font-size: 19px;
  line-height: 1.4;
}

/* العناصر الخاصة بالمعلومات */
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.contact-details a {
  text-decoration: none;
}

.contact-details a:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-item img {
  width: 24px;
  height: 24px;
}

.contact-item p {
  color: #333;
  font-size: 16px;
}

.contact-img {
  width: 100%;
  height: 420px;
  margin-top: 10px;
}

.contact-form-container {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-form-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 17px;
  margin-bottom: 1%;
}

.contact-form-container textarea {
  height: 160px;
}

.contact-form-container button {
  background: #b84d4d;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-form-container button:hover {
  background: #a04040;
}

#success-message {
  display: none;
  margin-top: 15px;
  background: #dff0d8;
  color: #3c763d;
  padding: 12px;
  border-radius: 5px;
  font-size: 14px;
  align-items: center;
  gap: 10px;
}

.check-icon {
  font-size: 18px;
}

@media (max-width: 425px){
    .footer-contact{
        display: none;
    }
    .footer-links{
        margin-right: 14%;
    }
    .contact-container{
        flex-direction: column;
    }
    .contact-img{
        display: none;
    }
    .contact-info{
        width: 90%;
    }
    .contact-info h2{
        font-size: 52px;
    }
    .contact-info p{
        font-size: 17px;
    }
    .contact-item p{
        font-size: 14px;
    }
    .contact-form-container{
        width: 95%;
    }
}
