/* =============================================
   PACKTECH — MAIN FOOTER
   ============================================= */

.main-footer {
  position: relative;
  width: 100%;
  background: #0a0a0a;
  /* Deep dark base */
  color: #ffffff;
  padding: 50px 0 30px;
  overflow: hidden;
}

/* ─── Background and Overlays ───────────────── */
.footer-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  opacity: 0.8;
  /* Reduced opacity as requested */
  z-index: 1;
  filter: brightness(0.8);
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at left, rgba(0, 0, 0, 0.5), rgb(0 0 0 / 92%));
  z-index: 2;
}

.footer-container {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 0.8fr;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* ─── Form Column ───────────────────────────── */
.footer-form-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 35px 30px;
}

.form-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.form-title .highlight {
  color: #fff;
  display: block;
}

.meeting-form .form-group {
  margin-bottom: 15px;
}

.meeting-form label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.meeting-form input {
  width: 100%;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 10px 15px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.meeting-form input:focus {
  outline: none;
  border-color: #6a2900;
  background: rgba(255, 255, 255, 0.05);
}

.footer-submit-btn {
  width: 100%;
  background: #6a2900;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.footer-submit-btn:hover {
  background: #8e3700;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(106, 41, 0, 0.3);
}

/* ─── Links Column ──────────────────────────── */
.footer-links-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-top: 20px;
}

.links-group h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: 1px;
  color: #ffffff;
}

.links-group ul {
  list-style: none;
}

.links-group ul li {
  margin-bottom: 15px;
}

.links-group ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.links-group ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.contact-info {
  grid-column: span 2;
  margin-top: 20px;
}

.contact-info p,
.contact-info p a {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 1.05rem;
  text-decoration: none;
}

.contact-info p a:hover {
  color: #6a2900;
}

/* ─── Logo Column ───────────────────────────── */
.footer-logo-col {
  display: flex;
  justify-content: flex-end;
}

.footer-logo {
  max-width: 350px;
  height: auto;
  opacity: 0.9;
  transition: transform 0.5s ease;
}

.footer-logo:hover {
  transform: scale(1.05) rotate(2deg);
}

/* ─── Bottom Footer ─────────────────────────── */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #6a2900;
  border-color: #6a2900;
  transform: translateY(-5px);
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Responsive ────────────────────────────── */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-logo-col {
    grid-column: span 2;
    justify-content: center;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
  }

  .footer-logo-col {
    order: -1;
    /* Move logo to the top */
    justify-content: center;
    width: 100%;
  }

  .footer-logo {
    max-width: 300px;
  }

  .footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    padding: 0;
  }

  .links-group {
    width: 100%;
  }

  .links-group h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
  }

  .links-group ul li a:hover {
    padding-left: 0;
  }

  .footer-form-box {
    width: 100%;
    max-width: 450px;
    padding: 35px 25px;
  }

  .form-title {
    font-size: 1.6rem;
  }
}