/* FAQ SECTION */
.faq {
  padding: 60px 16px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 40px 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Headings */
.faq h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 12px;
  color: #111;
}

.faq-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #555;
}

/* FAQ Items */
.faq-item {
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  margin-bottom: 14px;
  padding: 14px 18px;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: bold;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 12px;
  line-height: 1.6;
  color: #444;
}

.faq-item a {
  color: #0a66c2;
  font-weight: 500;
}

/* Extra Trust Content */
.faq-extra {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.faq-extra h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

/* Footer */
footer {
  background: #111;
  color: #ccc;
  padding: 22px;
  text-align: center;
}

footer a {
  color: #ccc;
  text-decoration: underline;
}

/* Mobile Optimizations */
@media (max-width: 600px) {
  .faq-container {
    padding: 26px 18px;
  }
}

body {
  background:
    radial-gradient(circle at top left, #eef2f7, transparent 40%),
    radial-gradient(circle at bottom right, #e0e7ff, transparent 40%),
    #f7f9fc;
}


.trust-badges {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.trust-badges h2 {
  text-align: center;
  margin-bottom: 24px;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 14px;
}

.badge {
  background: #f9fafb;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.05);
}


.adsense-slot {
  margin: 40px 0;
  text-align: center;
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff;
  padding: 12px 16px;
  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,.25);
}

.whatsapp-icon {
  font-size: 20px;
}

/* Mobile optimization */
@media (max-width: 600px) {
  .whatsapp-text {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }
}

/* Floating Buttons Container */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Buttons */
.contact-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  position: relative;
  transition: transform .2s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
}

/* WhatsApp */
.contact-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
}

/* Call */
.contact-btn.call {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

/* Tooltip */
.tooltip {
  position: absolute;
  right: 70px;
  background: #111;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.contact-btn:hover .tooltip {
  opacity: 1;
}

/* WhatsApp Preview Bubble */
.wa-preview {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  font-size: 14px;
  display: none;
}

/* Mobile */
@media (max-width: 600px) {
  .tooltip {
    display: none;
  }
}


.contact-btn.map {
  background: linear-gradient(135deg, #ff9800, #e68900);
}

@media (max-width: 480px) {
  .floating-contact {
    right: 12px;
    bottom: 12px;
  }

  .contact-btn {
    width: 52px;
    height: 52px;
  }
}
