/* FOOTER */
.apple-footer{
  background:#000;
  color:#ffffff;   /* FIXED: pure white base */
  padding:25px 7% 40px;
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  margin:0;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:70px;
}

/* Headings */
.footer-col h3{
  color:#ffffff;
  font-size:15px;
  font-weight:600;
  margin-bottom:25px;
  letter-spacing:.5px;
}

/* Paragraph */
.footer-col p{
  font-size:17px;
  line-height:1.9;
  margin:0;
  color:#d6d6d6;   /* FIXED: softer but readable */
}

/* Links */
.footer-link{
  margin:12px 0;
}

.footer-link a{
  color:#ffffff;
  text-decoration:none;
  position:relative;
  display:inline-block;
  transition:.3s;
}

.footer-link a span{
  position:absolute;
  bottom:-4px;
  left:0;
  height:1px;
  width:0;
  background:#ffb347;   /* FIXED: visible underline */
  transition:.3s;
}

.footer-link a:hover{
  color:#ffb347;   /* FIXED: accent hover */
}

.footer-link a:hover span{
  width:100%;
}

/* Contact */
.contact-item{
  margin-bottom:14px;
}

.contact-item a{
  color:#eaeaea;   /* FIXED: brighter */
  text-decoration:none;
  transition:.3s;
}

.contact-item a:hover{
  color:#ffb347;
}

/* Address */
.contact-address{
  color:#bfbfbf;   /* FIXED */
  font-size:14px;
  line-height:1.6;
}

/* Social Icons */
.social-icons{
  margin-top:30px;
  display:flex;
  gap:18px;
}

.social-icons a{
  color:#cccccc;   /* FIXED: brighter grey */
  transition:.3s;
}

.social-icons a svg{
  width:20px;
  height:20px;
  fill:currentColor;
}

.social-icons a:hover{
  color:#ffb347;   /* FIXED: strong hover */
  transform:translateY(-3px);
}

/* Bottom */
.footer-bottom{
  margin-top:10px;
  padding-top:20px;
  border-top:1px solid #222;   /* FIXED: visible divider */
  font-size:12px;
  color:#aaaaaa;   /* FIXED: readable */
  text-align:center;
}