* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #ffffff;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 6%;
}

.logo {
  max-width: 190px;
}

.logo-link {
  display: inline-block;
}

.lang-switch button {
  background: transparent;
  border: 1px solid #38bdf8;
  color: #38bdf8;
  padding: 6px 14px;
  margin-left: 6px;
  border-radius: 6px;
  cursor: pointer;
}

.lang-switch button:hover {
  background: #38bdf8;
  color: #020617;
}

/* PAGE */
.page {
  padding: 10px 20px 50px;
}

.top-intro {
  text-align: center;
  padding: 30px 0 22px;
}

.top-intro h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.top-intro p {
  color: #9ca3af;
  font-size: 16px;
  max-width: 820px;
  margin: 0 auto;
}

/* GRID */
.grid {
  margin-top: 26px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
}

.panel {
  background: linear-gradient(180deg, #0f172a, #020617);
  border: 1px solid rgba(56, 189, 248, 0.14);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.panel h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.panel h3 {
  font-size: 18px;
  margin-top: 14px;
  margin-bottom: 10px;
}

.panel p {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.7;
}

.muted {
  color: #9ca3af;
  margin-bottom: 14px;
  font-size: 14px;
}

.divider {
  height: 1px;
  background: rgba(56,189,248,0.18);
  margin: 18px 0;
}

.bullets {
  padding-left: 18px;
  color: #9ca3af;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

/* SOCIAL */
.social-wrap {
  margin-top: 16px;
}

.social-label {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  text-decoration: none;
  border: 1px solid rgba(56,189,248,0.55);
  color: #38bdf8;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.social-btn:hover {
  background: rgba(56,189,248,0.12);
  transform: translateY(-2px);
}

/* CONTACT BOX */
.contact-box {
  margin-top: 10px;
}

.map-link {
  margin-top: 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #38bdf8;
  text-decoration: none;
  font-weight: 700;
  border: 1px dashed rgba(56,189,248,0.55);
  padding: 10px 12px;
  border-radius: 12px;
  transition: 0.25s ease;
}

.map-link:hover {
  background: rgba(56,189,248,0.12);
  transform: translateY(-2px);
}

/* FORM */
.form {
  display: grid;
  gap: 12px;
}

.row label {
  display: block;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 6px;
}

.row input,
.row select,
.row textarea {
  width: 100%;
  background: rgba(2, 6, 23, 0.65);
  border: 1px solid rgba(56,189,248,0.22);
  color: #fff;
  padding: 12px 12px;
  border-radius: 12px;
  outline: none;
}

.row input::placeholder,
.row textarea::placeholder {
  color: rgba(156, 163, 175, 0.75);
}

.row input:focus,
.row select:focus,
.row textarea:focus {
  border-color: rgba(56,189,248,0.7);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.12);
}

.submit {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #38bdf8;
  background: transparent;
  color: #38bdf8;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.submit:hover {
  background: #38bdf8;
  color: #020617;
  transform: translateY(-2px);
}

.success {
  margin-top: 10px;
  color: #86efac;
  font-weight: 700;
  font-size: 14px;
}

/* WHATSAPP IMAGE BUTTON (RESPONSIVE) */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
}

.whatsapp-float img {
  width: 150px;
  height: auto;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 50%;
}

@media (hover: hover) {
  .whatsapp-float img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .top-intro h1 {
    font-size: 32px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-float img {
    width: 44px;
  }
}

@media (max-width: 360px) {
  .whatsapp-float img {
    width: 40px;
  }
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 22px;
  background: #020617;
  color: #9ca3af;
  font-size: 14px;
  margin-top: 60px;
}
