/* ===== Header & Footer Styles ===== */

/* Footer Styles */
.footer {
    background-color: #020617;
    color: #e5e7eb;
    padding: 15px 20px 0px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #38bdf8;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5f5;
}

.footer-about {
    text-align: left;
}

.footer-office {
    text-align: center;
    text-align: unset;
    margin-left: auto;
}

.footer-contact {
    text-align: right;
    margin-left: 20%;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links span {
    margin: 0 8px;
    color: #64748b;
}

.footer-link {
    display: inline-block;
    margin-top: 10px;
    color: #38bdf8;
    text-decoration: none;
}

.contact-item a {
    color: #38bdf8;
    text-decoration: none;
    margin-left: 6px;
}

.footer hr {
    margin: 40px 0 20px;
    border: none;
    border-top: 1px solid #1e293b;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-bottom-row a {
    color: #38bdf8;
    text-decoration: none;
}

/* 🔹 Mobile Responsive */
@media (max-width: 768px) {
    .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about,
    .footer-office,
    .footer-contact {
        text-align: center;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
}
/* ============================= */
/* GLOBAL HEADER – HOME SAFE LOCK */
/* ============================= */

header {
  /* background-color: #f5f5f8!important; SAME as Home page */
  /* position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; */
}

/* Sticky state must NOT change color */
header.hh {
  background-color: #eeeff5 !important;
}
