﻿/* ========================================
   FOOTER - INDUSTRIAL MINIMALIST DESIGN
   ======================================== */

/* Footer Container */
.wp-block-group.alignfull.has-black-background-color.has-background {
    padding-top: 0;
    padding-bottom: 0;
    background-color: #000;
}

/* Decorative Separator */
.footer-separator-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-separator-line {
    width: 80%;
    height: 2px;
    background-color: #333;
    position: relative;
}

.separator-accent {
    position: absolute;
    top: -2px;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #F89B22;
}

/* Footer Main Grid */
.modern-footer .footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

/* Footer Sections */
.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.footer-tagline,
.footer-description,
.footer-contact-item span,
.footer-notice span {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer Links */
.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F89B22;
}

/* Footer Contact and Notice */
.footer-contact-item,
.footer-notice {
    display: flex;
    align-items: center;
}

.footer-contact-item svg,
.footer-notice svg {
    margin-right: 0.5rem;
    vertical-align: middle;
    stroke: #F89B22; /* accent for notice */
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 1.5rem 2rem;
    text-align: center;
    color: #ccc;
    font-size: 0.85rem;
}

.footer-bottom-links {
    margin-top: 0.5rem;
}

.footer-bottom-links .footer-separator {
    margin: 0 0.5rem;
}

/* Footer Credit */
.footer-credit {
    padding: 1rem 2rem;
    background-color: #111;
    text-align: center;
}

.footer-credit-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-credit-content .credit-logo {
    height: 24px;
}

.footer-credit-content .credit-name,
.footer-credit-content .credit-text {
    color: #ccc;
    font-size: 0.85rem;
}

/* Footer Navigation Large */
.footer-nav-large a {
    display: inline-block;
    margin-right: 1rem;
}

.footer-nav-large a:last-child {
    margin-right: 0;
}
//new
.faq-answer {
  display: none; /* Initially hide all the answers */
}

.faq-question {
  cursor: pointer; /* Make the question clickable */
  font-weight: bold;
}

.faq-question:after {
  content: ' +'; /* Initially show a plus sign */
  font-weight: bold;
}

.faq-item.active .faq-answer {
  display: block; /* Show the answer when the parent has 'active' class */
}

.faq-item.active .faq-question:after {
  content: ' -'; /* Change to minus when active */
}
.faq-answer {
  display: none; /* Hide all answers by default */
}

.faq-question {
  cursor: pointer; /* Make the question clickable */
}

.faq-item.active .faq-answer {
  display: block; /* Show the answer when the FAQ item has the 'active' class */
}

/*** ADDITIONAL 12/28/25 ***/
.page-id-24 .facility-capability-card a {
    text-decoration: none !important;
}

header .wp-block-separator .has-primary-background-color {
    background-color: transparent !important;
}

.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {height: 0px !important;}