:root {
  --primary-color: #fcb231;
  --primary-dark: #a07928;
  --secondary-color: #222;
  --text-color: #333;
  --light-text: #fff;
  --light-bg: #f9f9f9;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --error-color: #f44336;

  --transition: all 0.3s ease;
  --box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --border-radius: 6px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.newsletter {
  background-color: #111;
  color: var(--light-text);
  padding: 1.5rem 0;
  text-align: center;
}

.newsletter-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
}

.newsletter-description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-family: Arial, Helvetica, sans-serif;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #333;
}

.form-group {
  margin-bottom: 1.2rem;
  display: flex;
  padding: 0.5rem;
}

.form-group-c {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}

.form-group-c label {
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #444;
}

.form-group-c input,
.form-group-c textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s;
  font-family: Arial, Helvetica, sans-serif;
}

.form-group-c input:focus,
.form-group-c textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-group label {
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #444;
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s;
  font-family: Arial, Helvetica, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color); /* لون أصفر كده لو بتحب */
  outline: none;
}

.submit-button {
  width: 100%;
  padding: 12px;
  font-size: 1.1rem;
  background-color: var(--primary-color);
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: var(--primary-dark);
}

.form-group input:focus {
  outline: none;
}

.subscribe-btn {
  background-color: var(--secondary-color);
  color: var(--light-text);
  padding: 0.75rem 1.5rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  transition: var(--transition);
}

.subscribe-btn:hover {
  background-color: var(--primary-dark);
}

/* Footer */
footer {
  background-color: #111;
  color: #999;
  padding: 1rem 0 1rem;
}

.borders {
  width: 100%;
  border-bottom: 1px solid var(--primary-color);
  border-top: 1px solid var(--primary-color);
  margin-bottom: 2rem;
}

.break {
  border-right: 1px solid var(--primary-color);
  width: 20%;
}

.footer-columns {
  display: flex;
  justify-content: space-evenly;
}

.footer-column {
  padding: 1rem;
}

.third {
  width: 30%;
}

.footer-heading {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #fff;
  transition: var(--transition);
  font-family: Arial, Helvetica, sans-serif;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-text {
  margin-bottom: 1rem;
  font-size: 12px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-form .form-group {
  margin-top: 1rem;
}

.footer-form input {
  background-color: #222;
  color: #fff;
  border: 1px solid #333;
}

.footer-form button {
  background-color: var(--primary-color);
  width: 50%;
}

.footer-form button:hover {
  background-color: var(--primary-dark);
}

.footer-social {
  text-align: center;
}

.social-heading {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  color: black;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .borders {
    border: none;
  }
  .break {
    width: 100%;
  }

  .third {
    width: 100%;
  }

  .newsletter-title {
    font-size: 1.5rem;
  }
}
