

/* Contact Section Base */
.contact-sections {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.contact-sections h1 {
  text-align: center;
  color: #dd0000;
  margin-bottom: 10px;
  font-size: 2.5rem;
  font-weight: 600;
}

.contact-sections p.subtitle {
  text-align: center;
  color: #ffbb00;
  font-size: 1.25rem;
  margin-bottom: 40px;
}

/* Container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  width: 100%;
}

/* Info & Form */
.contact-info,
.contact-form {
  flex: 1 1 45%;
  min-width: 300px;
}

/* Card Styling */
.contact-card {
  background: #f3f3f3;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
  color: #dd0000;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
}

.contact-card h3 i {
  font-size: 1.2em;
  color: #ffbb00;
}

.contact-card p {
  margin-bottom: 15px;
  padding-left: 30px;
  font-size: 1rem;
  word-wrap: break-word;
}

.contact-card p a {
  color: #333;
  text-decoration: none;
}

.socials {
  display: flex;
  gap: 15px;
  padding-left: 30px;
  flex-wrap: wrap;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f0f0f0;
  border-radius: 50%;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: #dd0000;
  color: white;
  transform: scale(1.1);
}

/* Form Styles */
form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form button {
  background-color: #dd0000;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 4px;
  width: 100%;
  font-weight: bold;
}

form button:hover {
  background-color: #ffbb00;
  color: #000;
}

/* Medium Screens - Tablet */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
    min-width: 0;
  }

  .contact-card {
    padding: 20px;
  }
}

/* Small Screens - Phones */
@media (max-width: 480px) {
  .contact-sections {
    padding: 30px 15px;
  }

  .contact-sections h1 {
    font-size: 2rem;
  }

  .contact-sections p.subtitle {
    font-size: 1rem;
  }

  .contact-card {
    padding: 15px;
  }

  .contact-card h3 {
    font-size: 1rem;
  }

  .contact-card p {
    font-size: 0.95rem;
    padding-left: 20px;
  }

  .socials {
    padding-left: 0;
    gap: 10px;
  }

  .socials a {
    width: 32px;
    height: 32px;
  }

  form input,
  form textarea {
    font-size: 0.95rem;
    padding: 10px;
  }

  form button {
    font-size: 0.95rem;
    padding: 10px;
  }
}
@media (max-width: 360px) {
  .contact-sections {
    padding: 10px 6px;
  }

  .contact-card {
    padding: 10px;
    border-radius: 6px;
  }

  .contact-card h3 {
    font-size: 0.78rem;
  }

  .contact-card p {
    font-size: 0.72rem;
    padding-left: 10px;
    margin-bottom: 6px;
  }

  .socials a {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  form input,
  form textarea {
    font-size: 0.78rem;
    padding: 8px;
  }

  form button {
    font-size: 0.8rem;
    padding: 9px;
  }
}
