/* ============================================================
   company.css — Company, contact, partners pages
   ============================================================ */

/* ── Contact forms grid ──────────────────────────────────── */
.contact-forms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

/* ── About + partner cards ───────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-card,
.partner-card,
.contact-card,
.cta-card {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 22px rgba(255, 102, 0, 0.06);
}

.about-card h3,
.partner-card h3,
.contact-card h3,
.cta-card h3 {
  margin: 0 0 12px;
}

.about-card p,
.partner-card p,
.contact-card p,
.cta-card p {
  margin: 0;
  color: rgba(232, 239, 255, 0.72);
}

.about-card .brandmark,
.partner-card .brandmark {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03));
  color: #ffb27a;
  box-shadow: 0 0 14px rgba(255, 102, 0, 0.06);
}

/* ── Partner grid ────────────────────────────────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.partner-pill {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.partner-pill strong {
  display: block;
  margin-bottom: 6px;
}

.whatsapp-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(37, 211, 102, 0.18);
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.10), rgba(255, 255, 255, 0.03));
}

.whatsapp-big {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #25d366, #128c7e);
  box-shadow: 0 14px 28px rgba(18, 140, 126, 0.28);
}

.whatsapp-big svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.whatsapp-copy strong {
  color: #fff;
  font-size: 1.02rem;
}

.whatsapp-copy span {
  color: rgba(232, 239, 255, 0.72);
  line-height: 1.5;
}

.btn--whatsapp {
  gap: 0.65rem;
  background: linear-gradient(90deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.24);
}

.btn--whatsapp:hover {
  box-shadow: 0 22px 46px rgba(18, 140, 126, 0.34), 0 0 34px rgba(37, 211, 102, 0.16);
}

.btn--whatsapp .btn__icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  fill: currentColor;
}

@media (max-width: 1180px) {
  .contact-forms-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .whatsapp-hero {
    align-items: flex-start;
  }
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

.multi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.wg-map-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,.08);
  background: #040812;
  box-shadow: 0 0 30px rgba(0,0,0,.4);
}

.wg-map-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.9) contrast(1.2) saturate(.9);
}

.wg-map-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,102,0,.15), transparent 25%),
              linear-gradient(180deg, rgba(4,8,18,.2), rgba(4,8,18,.5));
}

/* --- Missing Internal Card Styles --- */

/* The Glowing Pin inside the card */
.wg-map-pin {
  position: absolute;
  
  z-index: 5;
}

/* The label box container */
.wg-map-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

/* The styled address box */
.wg-map-label {
  background: rgba(4, 8, 18, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 18px 22px;
  max-width: 100%;
}