/* ============================================
   CONTACT — PREMIUM BLUE EDITORIAL (MOBILE FIRST)
   ============================================ */

#contact.contact-section {
  padding: 40px 16px;
  background: #fff;
  font-family: 'Inter Tight', sans-serif;
  color: #111;
}

/* TITLES */
.contact-heading {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #0f172a, #334155);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-subheading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
  color: #475569;
  font-size: 1rem;
}

/* ============================
   CONTACT CARDS
   ============================ */

.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: #f8fafc;
  padding: 22px;
  border-radius: 16px;
  border-top: 4px solid #2563eb;
  opacity: 0;
  transform: translateY(18px);
  transition: 0.35s ease;
  position: relative;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.contact-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1e3a8a;
}

.contact-card p,
.contact-card a {
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
}

/* ============================
   PRICING SUMMARY
   ============================ */

.pricing-summary {
  margin-top: 50px;
}

.section-title {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0f172a;
}

.pricing-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #475569;
}

.pricing-table {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pricing-table {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .pricing-table {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-row {
  background: #f8fafc;
  padding: 22px;
  border-radius: 16px;
  border-top: 4px solid #2563eb;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.pricing-row h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1e3a8a;
}

.pricing-row li {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #475569;
}

/* ============================
   CTA BUTTONS
   ============================ */

.cta-buttons {
  margin-top: 32px;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1e3a8a, #2563eb);
  color: #fff;
  font-weight: 700;
  margin: 4px;
  box-shadow: 0 8px 22px rgba(37,99,235,0.25);
}

.cta-btn.secondary {
  background: #1e293b;
}

/* ============================
   FORM — FULL WIDTH + COMPACT
   ============================ */

#quote.quote-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 50px 16px;
  background: #ffffff;
  text-align: center;
}

.quote-heading {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #0f172a, #334155);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quote-subheading {
  max-width: 700px;
  margin: 0 auto 28px;
  color: #475569;
  font-size: 1rem;
}

/* FORM WRAPPER */
.quote-card-wrapper {
  width: 100%;
  display: block;
}

/* FORM CARD — COMPACTO REAL */
.quote-card {
  width: 100%;
  margin: 0;
  padding: 16px 16px; /* COMPACTO */
  border-radius: 0; /* FULL WIDTH REAL */
  background: #f8fafc;
  border-top: 4px solid #2563eb;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

/* GRID COMPACTO */
.form-grid {
  display: grid;
  gap: 12px; /* COMPACTO */
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
  }
  .form-group.full {
    grid-column: span 2;
  }
}

/* LABEL COMPACTO */
.quote-card-form label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2px;
}

/* INPUTS COMPACTOS */
.quote-card-form input {
  width: 100%;
  padding: 9px 12px; /* COMPACTO REAL */
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  transition: 0.25s ease;
}

.quote-card-form input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 6px rgba(37,99,235,0.25);
}

/* BOTÓN COMPACTO */
.quote-card-form input[type="submit"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #1e3a8a, #2563eb);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.25s ease;
  margin-top: 6px;
  box-shadow: 0 6px 18px rgba(37,99,235,0.25);
}

.quote-card-form input[type="submit"]:hover {
  transform: translateY(-2px);
  background: #1e3a8a;
}

.inline-form-response {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #0f172a;
  font-weight: 600;
  text-align: center;
}