/* === Footer Base Styling === */
.egypt-footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
}

.egypt-footer a {
  text-decoration: none !important;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

/* === Company Name === */
.footer-col h2 a {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 28px;
  color: #ffc533ff;
  margin-bottom: 10px;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
.footer-col h2 a:hover { 
  color: #ffffff !important; 
}

/* === Section Headings === */
.footer-col h3,
.newsletter h3 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffc533ff !important;
  margin-bottom: 10px;
}

/* === Text & Links === */
.footer-col p,
.footer-col a {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none !important;
}
.footer-col a:hover { color: #ffc533ff; }

/* === Contact Icons === */
.contact-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 8px;
}

/* === Social Icons === */
.pls-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px; /* Reduced gap from 12px to 8px */
  margin-top: 8px;
}
.pls-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: transparent !important;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
  width: auto;
  height: auto;
  border-radius: 0;
}
/* No hover background circle */
.pls-social a:hover { 
  background: transparent !important; 
}
.pls-social a:hover i {
  color: #ffc533ff;
}

/* === TripAdvisor Special Styling === */
.social-tripadvisor img { width: 22px; height: 22px; display: block; }
.social-tripadvisor img.black { display: none; }
.social-tripadvisor:hover img.white { display: none; }
.social-tripadvisor:hover img.black { display: block; }

/* === Newsletter Styling === */
.newsletter { margin-top: 20px; }
.newsletter p {
  font-family: sans-serif;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 10px;
}
.newsletter input[type="email"],
.newsletter button { font-family: sans-serif; }
.newsletter input[type="email"]::placeholder,
.newsletter button {
  font-size: 0.875rem;   /* text-sm */
  line-height: 1.25rem;
  font-weight: 500;      /* font-medium */
}
.newsletter input[type="email"] {
  padding: 8px;
  width: 70%;
  border: none;
  border-radius: 4px;
  margin-right: 8px;
}
.newsletter button {
  padding: 8px 12px;
  background: #ffc533ff;
  border: none;
  border-radius: 4px;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.newsletter button:hover { 
  background: #ffffff !important; 
  color: #000; 
}

/* === Bottom Bar === */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-family: sans-serif;
}
.footer-bottom p { margin: 0; color: #ffffff; }
.footer-bottom a { color: #ffffff; margin: 0 5px; text-decoration: none !important; }
.footer-bottom a:hover { color: #ffc533ff; }
