/* Footer Base */
/* Reset */


/* Footer Base */
.arce-footer {
  background: #003366;
  color: #fff;
  padding: 40px 20px 0;
  font-family: Arial, sans-serif;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure footer always stretches full width */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #002244;
  padding-bottom: 0px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 15px;
}

.footer-section h3 {
  color: #f8b739;
  margin-bottom: 15px;
  border-bottom: 2px solid #f8b739;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin: 10px 0;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #f8b739;
}

/* Contact Info */
.footer-section p {
  margin: 8px 0;
}

/* Social Icons */
.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #f8b739;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #fff;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border-radius: 4px;
  border: none;
  outline: none;
}

.newsletter-form button {
  background: #f8b739;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #e0a82e;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding: 15px 0;
  background: #002244;
  margin: 0; /* remove extra space */
}

.footer-bottom p {
  margin: 5px 0;
}

footer p a {
    color: inherit;
    text-decoration: none;
}

footer p a:hover {
    text-decoration: none;
}


/*help desk*/
/* =========================
   HELP DESK MODAL
========================= */

.helpdesk-open-btn {
    background: #ce8b05;
    color: #fff;
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.helpdesk-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
}

.helpdesk-modal-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    margin: 80px auto;
    padding: 20px;
    border-radius: 6px;
}

.helpdesk-modal-content input,
.helpdesk-modal-content textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}

.helpdesk-modal-content button {
    background: #004aad;
    color: #fff;
    padding: 8px 14px;
    border: none;
}

.close-btn {
    float: right;
    cursor: pointer;
    font-size: 18px;
}

.helpdesk-open-btn i {
    margin-right: 6px;
}

/* Close icon */
.close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    color: #666;
    font-size: 16px;
}

.close-btn:hover {
    color: #000;
}

/* Buttons row */
.helpdesk-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.send-btn {
    background: #004aad;
    color: #fff;
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
}

.cancel-btn {
    background: #ccc;
    color: #333;
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
}

.cancel-btn:hover {
    background: #bbb;
}
