/* ===================== FOOTER ===================== */

.footer-main {
  background:
    linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: #ccc;
  position: relative;
}

.footer-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.03) 12px,
      transparent 12px,
      transparent 24px
    );
  pointer-events: none;
}

.footer-top {
  padding: 70px 15px;
  position: relative;
  z-index: 2;
}

.footer-title {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-item {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-item i {
  color: var(--primary);
  margin-right: 8px;
}

.footer-item a {
  color: #fff;
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  font-weight: 500;
}

.footer-text {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-input {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: none;
  margin-bottom: 12px;
}

.footer-btn {
  background: var(--primary);
  border: none;
  padding: 12px;
  width: 100%;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: #ffab3d;
}

.footer-map {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 6px;
  filter: grayscale(100%) contrast(1.2);
}

/* ===== BOTTOM ===== */
.footer-bottom {
  background: #0a0a0a;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #aaa;
}

.footer-social i {
  color: var(--primary);
  margin-left: 14px;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer-social i:hover {
  transform: scale(1.25);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
  }

  .footer-social {
    margin-top: 10px;
  }
}
/* ================= LINEAR FAB SERVICES ================= */

.fab-services {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
   pointer-events: none;
}
/* 🔥 FIX: Re-enable FAB interaction */
/* ✅ Allow menu interaction ONLY when open */
.fab-services.active .fab-menu,
.fab-services.active .fab-menu li,
.fab-services.active .fab-menu li a {
  pointer-events: auto;
}
.fab-toggle {
  pointer-events: auto;
}



/* MAIN BUTTON */
.fab-toggle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7941d, #e68510);
  border: none;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* MENU */
.fab-menu {
  position: absolute;
  bottom: 80px;   /* ABOVE BUTTON */
  right: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ITEMS */
.fab-menu li {
  margin-bottom: 10px;
  transform: translateX(40px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.fab-menu li a {
  display: block;
  min-width: 180px;
  padding: 12px 18px;
  background: #fff;
  color: #f7941d;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  text-align: center;
}

/* ACTIVE STATE */
.fab-services.active .fab-menu li {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* STAGGER ANIMATION */
.fab-services.active .fab-menu li:nth-child(1) { transition-delay: 0.05s; }
.fab-services.active .fab-menu li:nth-child(2) { transition-delay: 0.10s; }
.fab-services.active .fab-menu li:nth-child(3) { transition-delay: 0.15s; }
.fab-services.active .fab-menu li:nth-child(4) { transition-delay: 0.20s; }
.fab-services.active .fab-menu li:nth-child(5) { transition-delay: 0.25s; }
.fab-services.active .fab-menu li:nth-child(6) { transition-delay: 0.30s; }
.fab-services.active .fab-menu li:nth-child(7) { transition-delay: 0.35s; }

/* MOBILE SAFE */
@media (max-width: 768px) {
  .fab-menu li a {
    min-width: 150px;
    font-size: 13px;
  }
}
/* ================= CONTACT STRIP ================= */
.contact-strip {
  background: #000;
  padding: 40px 16px;
}

.contact-box {
  background: #fff;
  max-width: 1200px;
  margin: auto;
  padding: 50px 30px;
  text-align: center;
  position: relative;
}

/* ORANGE CORNERS */
.contact-box::before,
.contact-box::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border: 8px solid #f39c12;
}

.contact-box::before {
  top: -8px;
  left: -8px;
  border-right: none;
  border-bottom: none;
}

.contact-box::after {
  bottom: -8px;
  right: -8px;
  border-left: none;
  border-top: none;
}

/* TEXT */
.contact-title {
  font-size: 34px;
  font-weight: 800;
  color: #f39c12;
  margin-bottom: 18px;
}

.contact-title a {
  color: #f39c12;
  text-decoration: none;
}

.contact-sub {
  font-size: 22px;
  font-weight: 700;
  color: #222;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .contact-box {
    padding: 30px 16px;
  }

  .contact-title {
    font-size: 22px;
    line-height: 1.4;
  }

  .contact-sub {
    font-size: 15px;
    line-height: 1.5;
  }

  .contact-box::before,
  .contact-box::after {
    width: 55px;
    height: 55px;
    border-width: 6px;
  }
}
