/* ================= FOOTER ================= */
footer {
  background-color: #ffffff;
  color: #6b7280; /* gray-500 */
  font-size: 0.75rem; /* text-xs */
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  text-transform: none;
}

footer .container {
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

footer .container p {
  margin-bottom: 0.5rem;
}

footer .container a {
  text-decoration: underline;
  color: inherit;
  transition: color 0.3s ease;
}

footer .container a:hover {
  color: #000000;
}

footer .container img {
  height: auto;
}

footer .mb-6 {
  margin-bottom: 1.5rem;
}

footer .border-t {
  border-top: 1px solid #e5e7eb;
}

footer .pt-6 {
  padding-top: 1.5rem;
}

footer .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

footer .space-x-4 > * + * {
  margin-left: 1rem;
}

footer .space-x-6 > * + * {
  margin-left: 1.5rem;
}

/* ================= IMAGE BELOW FOOTER ================= */
div.bg-\[\#297F40\] {
  background-color: #297F40;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

div.bg-\[\#297F40\] img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
}

/* ================= VIDEO POP-UP ================= */
#video-popup {
  position: fixed;
  bottom: 1rem;
  right: -250px;
  width: 250px;
  height: auto;
  z-index: 1000;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  transition: right 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#video-popup button {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#video-popup svg {
  width: 24px;
  height: 24px;
}

#promo-video {
  width: 100%;
  display: block;
}

/* ================= CONTACT MODAL ================= */
#contact-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#contact-modal.hidden {
  display: none;
}

#contact-modal .modal-content,
#contact-modal .bg-white {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  width: 100%;
  max-width: 24rem; /* 384px */
  text-align: center;
  text-transform: none;
}

#contact-modal p {
  margin-bottom: 1rem;
  color: #374151;
}

#modal-ok-button {
  background-color: #297F40;
  color: #ffffff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  width: 100%;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

#modal-ok-button:hover {
  background-color: #215a2d;
}

/* ================= SOCIAL ICONS ================= */
footer .text-gray-500 {
  color: #6b7280;
}

footer .text-gray-500:hover {
  color: #000000;
}

footer svg {
  width: 20px;
  height: 20px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

/* ================= UTILITY CLASSES RECREATED ================= */
.text-center {
  text-align: center;
}

.normal-case {
  text-transform: none;
}

.shadow-inner {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.underline {
  text-decoration: underline;
}

.hover\:text-black:hover {
  color: #000000;
}

.transition-opacity {
  transition: opacity 0.3s ease, color 0.3s ease;
}
