/* ============================================
   MAIN.CSS – Additional styles extracted from pages
   ============================================ */

/* Styles for service boxes with slideshow (from index.php) */
.featured-box {
  cursor: pointer;
  transition: transform 0.5s, box-shadow 0.5s;
  position: relative;
  overflow: hidden;
}
.featured-box a { text-decoration: none; color: inherit; display: block; }
.slideshow-content { padding: 15px; }
.slideshow-image-box { width: 100%; height: 150px; object-fit: contain; transition: transform 0.3s; }
.slideshow-image-box:hover { transform: scale(1.05); }
.slideshow-title { font-size: 18px; font-weight: bold; color: #FF8C00; margin: 10px 0; text-align: center; }
.box-dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; padding: 5px 0; }
.box-dot { width: 8px; height: 8px; background: #ccc; border-radius: 50%; cursor: pointer; transition: all 0.3s; }
.box-dot.active { background: #FF8C00; width: 20px; border-radius: 10px; }
.service-link { display: inline-block; margin-top: 10px; color: #FF8C00; font-size: 12px; text-decoration: none; }
.service-link:hover { text-decoration: underline; }

/* Contact cards (from multiple pages) */
.contact-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin: 30px 0; }
.contact-card { background: #fff; border-radius: 12px; padding: 20px 25px; text-align: center; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.1); min-width: 180px; flex: 1; max-width: 220px; }
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.contact-icon { font-size: 40px; margin-bottom: 12px; display: inline-block; }
.contact-card h4 { font-size: 16px; color: #333; margin-bottom: 8px; font-weight: 600; }
.contact-card a { text-decoration: none; color: #FF8C00; font-size: 14px; font-weight: 500; transition: color 0.3s; word-break: break-word; }
.contact-card a:hover { color: #00a651; text-decoration: underline; }
.contact-card.whatsapp:hover .contact-icon { color: #25D366; }
.contact-card.instagram:hover .contact-icon { color: #E1306C; }
.contact-card.email:hover .contact-icon { color: #FF8C00; }
.contact-card.phone:hover .contact-icon { color: #007BFF; }

/* Responsive for contact cards */
@media (max-width: 768px) {
  .contact-cards { gap: 15px; }
  .contact-card { min-width: 150px; padding: 15px; }
  .contact-icon { font-size: 30px; }
}

/* ============================================
   STRATEGY SECTION – Company logo, about text, payment methods
   ============================================ */

.strategy-section {
  margin: 40px 0;
}

.strategy-card {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  align-items: center;
}

.strategy-logo {
  flex: 0 0 150px;
  text-align: center;
}

.strategy-logo img {
  max-width: 100%;
  border-radius: 15px;
  transition: transform 0.3s;
}

.strategy-logo img:hover {
  transform: scale(1.02);
}

.strategy-content {
  flex: 1;
}

.strategy-content h3 {
  color: #FF8C00;
  font-size: 24px;
  margin-bottom: 15px;
  position: relative;
}

.strategy-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #00a651;
  transition: width 0.5s;
}

.strategy-content h3:hover::after {
  width: 100px;
}

.strategy-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Payment methods grid - UPDATED: smaller and nicer */
.payment-methods {
  margin-top: 20px;
}

.payment-methods h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Smaller payment icons - cleaner look */
.payment-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 24px;
  color: #555;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.payment-icons a:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* Individual brand colours on hover */
.payment-icons a.amex:hover { color: #2E5A99; }
.payment-icons a.visa:hover { color: #1A1F71; }
.payment-icons a.mastercard:hover { color: #EB001B; }
.payment-icons a.paypal:hover { color: #003087; }
.payment-icons a.cash:hover { color: #4CAF50; }
.payment-icons a.googlepay:hover { color: #4285F4; }
.payment-icons a.applepay:hover { color: #000; }

@media (max-width: 768px) {
  .strategy-card {
    flex-direction: column;
    text-align: center;
  }
  .strategy-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .payment-icons {
    justify-content: center;
  }
  /* Even smaller on mobile */
  .payment-icons a {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}
/* Force service links to be visible and clickable */
.service-link {
  display: inline-block !important;
  background: #FF8C00;
  color: white !important;
  padding: 8px 16px;
  border-radius: 40px;
  margin-top: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.service-link:hover {
  background: #00a651;
  transform: translateY(-2px);
  text-decoration: none;
}


/* ID Card display (already in idcard.css, so not duplicated here) */
/* Voucher modal styles (already in voucher.css) */
/* Additional invoice styles (already in invoice.css) */