/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: url('images/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
  flex-grow: 1;
}

/* Header */
.site-header {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}

/* Tagline */
.tagline {
  font-size: 1.2rem;
  color: #555;
  margin-top: 5px;
}

/* Pricing Section */
.pricing-section {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.plan {
  background: #f4f4f4;
  border-radius: 8px;
  padding: 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.plan:hover {
  transform: scale(1.05);
}

.plan.highlight {
  background: #0070ba;
  color: white;
  box-shadow: 0 0 15px #005c99;
}

.plan.highlight h3 {
  color: white;
}

.price {
  font-size: 2rem;
  margin: 15px 0;
  font-weight: bold;
}

/* FAQ Section */
.faq-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.faq-section details {
  margin-bottom: 15px;
  cursor: pointer;
}

.faq-section summary {
  font-weight: bold;
  font-size: 1.1rem;
  color: #0070ba;
}

/* Order Form */
.order-form-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-form input,
.order-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
}

.order-form button {
  background-color: #0070ba;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.order-form button:hover {
  background-color: #005c99;
}

/* Showcase Section */
.showcase-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.showcase-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-section a {
  color: #0070ba;
  text-decoration: none;
  margin: 0 5px;
  font-weight: bold;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* Social Links */
.social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

/* Set each social icon background image */
.social-links a[aria-label="Instagram"] {
  background-image: url('images/instagram.png');
}

.social-links a[aria-label="Telegram"] {
  background-image: url('images/telegram.png');
}

.social-links a[aria-label="TikTok"] {
  background-image: url('images/tiktok.png');
}

.social-links a:hover {
  transform: scale(1.2);
}

/* WhatsApp button */
.whatsapp-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #25d366;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #128c4a;
}

/* Language Switcher */
.language-switcher {
  text-align: center;
  margin-bottom: 40px;
}

.language-switcher button {
  background-color: #0070ba;
  border: none;
  color: white;
  padding: 8px 16px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.language-switcher button:hover {
  background-color: #005c99;
}

/* Footer */
.site-footer {
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
}

/* Security badge style */
.security-badge {
  display: block;
  margin: 20px auto 0 auto;
  max-width: 120px;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-table {
    flex-direction: column;
    align-items: center;
  }

  .plan {
    width: 90%;
  }
}