/* ===== Footer Styling ===== */
.footer {
  background: #2f2929;
  color: #ddd;
  padding: 40px 20px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
}
/* Logo Styling */
.logo1 {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}
.logo1 span {
  color: #e74c3c;
}

/* About Section */
.footer-col.about p {
  font-size: 17px;
  line-height: 1.6;
  color: #ddd;
  max-width: 318px;   /* keep it neat */
}
/* Remove white box from about section */
.footer-col.about {
  background: none !important;
  box-shadow: none !important;
  padding: 0;
  margin-left: -10px; /* shift a little left */
}
.footer-col.about img {
  width: 140px;       /* responsive logo size */
  margin-bottom: 10px;
}

/* Headings */
.footer-col h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
}
.footer-line {
  width: 50px;
  height: 2px;
  background: #e74c3c;
  margin-bottom: 15px;
}

/* Links & Text */
.footer-col p,
.footer-col ul,
.footer-col input {
  font-size: 14px;
  color: #ddd;
  line-height: 1.7;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin: 6px 0;
}
.footer-col ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: #e74c3c;
}

/* Painter + Interior Links side by side */
.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.links-grid ul li:first-child {
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 8px;
}

/* Icons */
.footer-col i {
  color: #e74c3c;
  margin-right: 6px;
}

/* Newsletter */
.newsletter {
  display: flex;
  margin: 15px 0;
  border: 1px solid #555;
  border-radius: 4px;
  overflow: hidden;
}
.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  font-size: 14px;
}
.newsletter button {
  background: #e74c3c;
  border: none;
  color: #fff;
  padding: 0 15px;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter button:hover {
  background: #c0392b;
}

/* Social Icons */
.social-icons {
  margin-top: 10px;
}
.social-icons a {
  display: inline-block;
  margin: 5px;
  width: 35px;
  height: 35px;
  background: #444;
  color: #fff;
  text-align: center;
  line-height: 35px;
  border-radius: 4px;
  transition: 0.3s;
  font-size: 16px;
}
.social-icons a:hover {
  background: #e74c3c;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 15px;
  margin-top: 20px;
  background: #262121;
  font-size: 14px;
}
.footer-bottom span {
  color: #e74c3c;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr; /* stack */
    text-align: center;
  }

  .footer-col.about {
    margin-left: 0; /* reset left shift for mobile */
  }

  .footer-col.about img {
    margin: 0 auto;
  }

  .footer-col.about p {
    margin: 0 auto;
  }
}


/* ==============================
   Floating Contact Buttons
============================== */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-contact .contact-btn {
  width: 50px;
  height: 50px;
  background-color: #25d366; /* WhatsApp default green */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s, background-color 0.2s;
  text-decoration: none;
}

.floating-contact .contact-btn.call {
  background-color: #007bff; /* Call button blue */
}

.floating-contact .contact-btn:hover {
  transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .floating-contact {
    bottom: 15px;
    right: 15px;
    gap: 12px;
  }

  .floating-contact .contact-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}
