
/* Footer base */
.footer {
  background: #111;
  color: #ddd;
  padding: 60px 0;
}

.footer a {
  color: #ddd;
  text-decoration: none;
}

.footer a:hover {
  color: #25d366;
}

/* Map responsive */
.map-responsive {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact text */
.contacts {
  margin-bottom: 10px;
  font-size: 15px;
}

.contacts i {
  margin-right: 10px;
  color: #25d366;
}

/* Social icons */
/* .social-links {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.social-links li {
  display: inline-block;
  margin-right: 12px;
}

.social-links i {
  font-size: 18px;
} */

/* Subfooter */
.subfooter {
  background-color: #DA095F;
  padding: 15px 0;
}

.developer-credit {
  margin: 0;
  color: #aaa;
}

/* Heart animation */
.heart {
  display: inline-block;
  animation: beat 1s infinite;
}

@keyframes beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* Mobile fix */
@media (max-width: 768px) {
  .footer-content {
    margin-bottom: 30px;
    text-align: center;
  }

  .contacts i {
    margin-right: 5px;
  }
}



/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}

.float-btn i {
  font-size: 28px;       /* FORCE ICON SIZE */
  line-height: 1;        /* FIX MISALIGNMENT */
}

/* Hover */
.float-btn:hover {
  transform: scale(1.1);
}

/* Call */
.call-btn {
  background-color: #007bff;
}

/* WhatsApp */
.whatsapp-btn {
  background-color: #25D366;
}

/* Mobile */
@media (max-width: 768px) {
  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-btn i {
    font-size: 24px;
  }
}


/* Product Cards */
.product-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 6px;
  transition: 0.3s;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

.product-card h3 {
  margin: 15px 0 10px;
}

.product-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

/* Responsive Map */
.map-responsive {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  border-radius: 8px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer spacing fix */
.footer-content {
  margin-bottom: 30px;
}

/* Mobile footer alignment */
@media (max-width: 768px) {
  .footer .title {
    font-size: 26px;
  }

  .contacts {
    font-size: 14px;
  }

  .social-links {
    text-align: center;
  }

  .social-links li {
    display: inline-block;
    margin: 0 8px;
  }
}

.brand a {
  font-size: 24px;
  font-weight: 700;
  color: #eee9e9;
  line-height: 1.3;
  display: block;
  max-width: 100%;
  white-space: normal;
}

/* Mobile */
@media (max-width: 768px) {
  .brand a {
    font-size: 14px;
    padding: 8px 0;
  }

  .header-left {
    text-align: center;
  }
}

.section-heading {
  background: #cf0d1d;   /* green */
  padding: 40px 20px;
}

.section-heading h1,
.section-heading p {
  color: #ffffff;
}

/* FAQ Section */
.faq.section {
  background-color: #e6dada;
  padding: 50px 20px;
}

.faq h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

/* Question */
.faq h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0a6aa1;
  margin-top: 25px;
  position: relative;
  padding-left: 25px;
}

/* Question icon */
.faq h3::before {
  content: "❓";
  position: absolute;
  left: 0;
  top: 0;
}

/* Answer */
.faq p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-top: 8px;
  padding-left: 25px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .faq h2 {
    font-size: 26px;
  }

  .faq h3 {
    font-size: 18px;
  }

  .faq p {
    font-size: 15px;
  }
}

