/* Layout Styles - Header, Logo, Mobile Components */

/* Header Logo */
.logo-holder img {
  height: 35px;
  width: auto;
  object-fit: contain;
}

/* Footer Logo */
.footer-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

/* Footer Company Name */
.footer-logo h3 {
  color: #fff;
  font-size: 1.4em;
  margin: 15px 0 20px 0;
  font-weight: 600;
}

/* Footer Company Description */
.footer-logo p {
  color: #fff;
  font-size: 0.95em;
  line-height: 1.8;
  margin-top: 20px;
}

/* Footer Map Link */
.footer-logo p a {
  color: #00e6ff;
  text-decoration: none;
}

.footer-logo p a:hover {
  text-decoration: underline;
}

/* Fixed Footer Social Icons */
.footer-social ul li a {
  width: 56px;
  height: 56px;
  line-height: 56px;
  display: inline-block;
  text-align: center;
}

.footer-social ul li a i {
  font-size: 20px;
}

/* YouTube icon special styling */
.footer-social ul li:last-child {
  margin-top: 15px;
}

.footer-social ul li:last-child a {
  opacity: 0.7;
}

.footer-social ul li:last-child a i {
  font-size: 18px;
}

/* Mobile Sticky Call Button */
.mobile-sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #00e6ff;
  color: #1a1a2e;
  text-align: center;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  z-index: 9999;
  text-decoration: none;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.mobile-sticky-call:hover {
  background: #00d4e6;
}

/* Show mobile call button on small screens */
@media only screen and (max-width: 1080px) {
  .mobile-sticky-call {
    display: block;
  }
}
