/* =========================
   GLOBAL FLOATING UI SAFETY SYSTEM
   (FOOTER + FLOAT BUTTON)
========================= */

/* FLOATING QUOTATION BUTTON */
#inquireBtn {
  position: fixed;
  right: 20px;
  bottom: 90px; /* space above footer bar */
  z-index: 9999;

  padding: 14px 18px;
  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;

  background: #16a34a;
  color: #fff;
  border: none;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  transition: all 0.3s ease;
  text-decoration: none;
}

#inquireBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* FIXED FOOTER ADDRESS BAR */
.fixed-address-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9998;

  background: #111827;
  color: #fff;

  font-size: 13px;
  padding: 10px 0;

  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.fixed-address-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================
   FOOTER LINKS GLOBAL RESET
========================= */

footer a {
  text-decoration: none;
}

.modal a {
  text-decoration: none;
}

/* =========================
   HEADER NAVIGATION
========================= */

.site-header {
  position: fixed;
  width: 100%;
  z-index: 999;
  background: transparent;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 60px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.main-nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #fff;
  transition: 0.3s;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/* =========================
   FOOTER STYLE
========================= */

.footer-section {
  background-color: #1e1e1e;
  color: #fff;
}

.footer-section a {
  color: #fff;
}

.footer-section a:hover {
  color: #28a745;
}

.footer-section h5 {
  color: #28a745;
  font-weight: 600;
}

.footer-section .social a {
  font-size: 18px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.footer-section .social a:hover {
  transform: scale(1.2);
  color: #28a745;
}

.footer-section iframe {
  border-radius: 8px;
}

/* =========================
   LOGO FIX
========================= */

.site-logo {
  height: 80px;
  display: flex;
  align-items: center;
}

.site-logo-img {
  max-height: 100%;
  width: auto;
}

.logo-link {
  display: flex;
  align-items: center;
}

/* =========================
   SAFETY FIX (OVERFLOW)
========================= */

header,
.site-navbar,
.js-site-navbar,
.container,
.row {
  overflow: visible !important;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

  .fixed-address-bar {
    font-size: 11px;
    text-align: center;
    padding: 12px 10px;
  }

  .fixed-address-bar .container {
    flex-direction: column;
    gap: 6px;
  }

  #inquireBtn {
    right: 12px;
    bottom: 110px;
    font-size: 13px;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  #inquireBtn {
    bottom: 120px;
    width: auto;
  }
}