/* css/footer.css */
.site-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 48px 0 32px 0;
  margin-top: 64px;
  border-top: 1px solid #1e293b;
  font-size: 14px;
  line-height: 1.6;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

/* Left Column Styling */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-address {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.4;
}

.footer-phone {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 14px;
}

.footer-phone a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-phone a:hover {
  color: #38bdf8;
}

/* Right Column Styling */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-icon {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social-icon:hover {
  color: #38bdf8;
}

.footer-contact-link {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: #ffffff;
}

.footer-copyright {
  width: 100%;
  max-width: 1200px;
  margin: 32px auto 0 auto;
  padding: 24px 24px 0 24px;
  border-top: 1px solid #1e293b;
  font-size: 12px;
  color: #64748b;
  text-align: left;
}


@media screen and (max-width: 900px) {
  /* 1. Fix Contact Form Box and Inputs */
  .contact-section, 
  .contact-form-wrapper {
    padding: 20px 16px !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  .contact-section input,
  .contact-section textarea,
  .contact-section .wpcf7-form-control:not([type="submit"]) {
    width: 100% !important;
    box-sizing: border-box;
    margin-bottom: 12px;
  }

  /* 2. Responsive scaling for graphic sections / images */
  .server-graphic-container img,
  .hero-graphic img {
    max-width: 100%;
    height: auto;
  }

  /* 3. Center and clean up the mobile footer */
  .site-footer {
    text-align: center;
    padding: 30px 16px;
  }

  .site-footer .social-icons,
  .site-footer .footer-connect {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }
}