body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #0a0f0d;
  color: #fff;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(135deg, #0d1b2a, #00c853);
  padding: 40px 20px;
}
.header-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.branding h1 {
  font-size: 2.5rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-inline {
  width: 60px;
  height: auto;
}
.branding p {
  font-size: 1.2rem;
  margin-top: 10px;
  text-align: left;
}

/* Services */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.service-box {
  background: #1b1f1b;
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 250px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}
.service-box h3 {
  margin-bottom: 10px;
  color: #00c853;
}
.lang-switch {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px 20px;
  background: #1b1f1b;
}
.lang-switch button {
  background: #00c853;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.lang-switch button:hover {
  background: #009624;
}
.lang-switch-inline {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
}
.flag-icon {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.flag-icon:hover {
  transform: scale(1.15);
}
@media (max-width: 900px) {
  .header-content, section {
    max-width: 100%;
    padding: 20px 10px;
  }
  .services {
    flex-direction: column;
    gap: 15px;
  }
  .service-box {
    flex: 1 1 100%;
    font-size: 1rem;
  }
  form {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .branding h1 {
    font-size: 1.5rem;
  }
  .logo-inline {
    width: 40px;
  }
  .service-box {
    padding: 12px;
    font-size: 0.95rem;
  }
  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  .lang-switch button {
    font-size: 0.95rem;
    padding: 6px 12px;
  }
}

/* Form */
form {
  background: #1b1f1b;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}
form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #a8f5c9;
}
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}
form button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  background: #00c853;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}
form button:hover {
  background: #009624;
}
#form-status {
  margin-top: 15px;
  font-size: 1rem;
  text-align: center;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 1.8rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  z-index: 100;
  transition: background 0.3s;
}
.whatsapp-float:hover {
  background: #128c7e;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #0a1526;
  font-size: 0.9rem;
}
.socials {
  margin-bottom: 10px;
}
.socials a {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #00c853;
  transition: color 0.3s;
}
.socials a:hover {
  color: #a8f5c9;
}
.contact-info p {
  margin: 5px 0;
}
.contact-info a {
  color: #90e0ef;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
