/* Contact page */
/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.contact-page {
  background: #f8fafc;
}

.contact-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.contact-strip {
  background: #fff;
  border-bottom: 1px solid #e8ecf1;
}

.contact-strip__head {
  max-width: 720px;
  margin: 0 auto 36px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
}

.contact-card {
  padding: clamp(22px, 2.4vw, 28px) 20px 24px;
  background: #fafbfc;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-card:hover {
  background: #fff;
  border-color: rgba(236, 103, 52, 0.28);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--brand-orange) 0%, #c2410c 100%);
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.contact-card p {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.contact-card a {
  color: var(--brand-orange);
  font-weight: 600;
  text-decoration: none;
}

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

.contact-card small {
  display: block;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
}

.contact-help {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
}

.contact-help-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

.contact-help-panel {
  padding: clamp(22px, 2.5vw, 28px) 24px 26px;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.contact-help-panel__title {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
}

.contact-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-check-list li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 28px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #475569;
}

.contact-check-list li:last-child {
  margin-bottom: 0;
}

.contact-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-green);
  line-height: 1.4;
}

.contact-help-aside {
  padding: clamp(22px, 2.5vw, 28px) 22px;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  border-left: 4px solid var(--brand-orange);
}

.contact-help-aside__title {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.contact-help-link {
  margin-top: 16px;
}

.contact-cta {
  padding-bottom: 72px;
}

.contact-cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(20px, 2.5vw, 26px) clamp(22px, 3vw, 32px);
  background: linear-gradient(135deg, #fff 0%, #fff7ed 45%, #f0fdf4 100%);
  border: 1px solid #e8ecf1;
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
}

.contact-cta-bar__text {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  max-width: 420px;
}

.contact-cta-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .contact-help-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .contact-cta-bar__actions {
    justify-content: center;
  }
}


/* ============================================
   CONTACT HERO — warm conversational with floating bubbles
   ============================================ */
.contact-hero {
  --c-ink: #0f172a;
  --c-mute: #64748b;
  --c-line: #e2e8f0;
  --c-accent: #0d9488;
  --c-accent-2: #f59e0b;

  position: relative;
  padding: clamp(120px, 13vw, 170px) 24px clamp(80px, 8vw, 120px);
  background:
    radial-gradient(900px 380px at 12% 22%, rgba(13, 148, 136, 0.16), transparent 60%),
    radial-gradient(800px 380px at 88% 28%, rgba(245, 158, 11, 0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
  text-align: center;
  overflow: hidden;
  color: var(--c-ink);
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.contact-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.65;
  animation: contactHeroFloat 11s ease-in-out infinite;
}
.contact-hero__orb--a {
  top: -100px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #6ee7b7, transparent 70%);
}
.contact-hero__orb--b {
  top: 40px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #fde68a, transparent 70%);
  animation-duration: 13s;
  animation-direction: alternate;
}
.contact-hero__orb--c {
  bottom: -130px;
  left: 30%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #a5f3fc, transparent 70%);
  animation-duration: 16s;
}

.contact-hero__doodle {
  position: absolute;
  color: rgba(13, 148, 136, 0.5);
}
.contact-hero__doodle--bubble.bubble-a {
  top: 13%;
  left: 7%;
  width: 76px;
  height: 66px;
  color: rgba(13, 148, 136, 0.5);
  animation: contactHeroBob 6s ease-in-out infinite;
}
.contact-hero__doodle--bubble.bubble-b {
  top: 16%;
  right: 9%;
  width: 70px;
  height: 60px;
  color: rgba(217, 119, 6, 0.55);
  transform: scaleX(-1);
  animation: contactHeroBob 7s ease-in-out infinite reverse;
}
.contact-hero__doodle--mail {
  bottom: 22%;
  left: 9%;
  width: 60px;
  height: 60px;
  color: rgba(2, 132, 199, 0.55);
  animation: contactHeroBob 5.6s ease-in-out infinite;
}
.contact-hero__doodle--phone {
  bottom: 18%;
  right: 11%;
  width: 60px;
  height: 60px;
  color: rgba(225, 29, 72, 0.55);
  transform: rotate(-12deg);
  animation: contactHeroPhone 2.4s ease-in-out infinite;
}
.contact-hero__doodle--wave {
  display: none;
}
.contact-hero__doodle--star {
  width: 22px;
  height: 22px;
  color: rgba(245, 158, 11, 0.85);
  animation: contactHeroTwinkle 3s ease-in-out infinite;
}
.contact-hero__doodle--star.star-a { top: 28%; right: 24%; }
.contact-hero__doodle--star.star-b { top: 38%; left: 20%; width: 16px; height: 16px; color: rgba(13, 148, 136, 0.7); animation-delay: 0.6s; }

.contact-hero__doodle--squiggle {
  top: 50%;
  left: 50%;
  width: 240px;
  height: 50px;
  transform: translate(-50%, -50%);
  color: rgba(13, 148, 136, 0.18);
  z-index: 0;
}
.contact-hero__doodle--squiggle path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: contactHeroDraw 4s ease-out 0.4s forwards;
}

@keyframes contactHeroFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(-22px) translateX(14px); }
}
@keyframes contactHeroBob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}
@keyframes contactHeroPhone {
  0%, 100% { transform: rotate(-12deg); }
  10%      { transform: rotate(-22deg); }
  20%      { transform: rotate(-2deg); }
  30%      { transform: rotate(-22deg); }
  40%      { transform: rotate(-12deg); }
}
@keyframes contactHeroTwinkle {
  0%, 100% { transform: scale(0.85) rotate(0); opacity: 0.5; }
  50%      { transform: scale(1.2) rotate(45deg); opacity: 1; }
}
@keyframes contactHeroDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes contactHeroPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
  50%      { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.05); }
}
@keyframes contactHeroWaveEmoji {
  0%, 60%, 100% { transform: rotate(0); }
  10%, 30%      { transform: rotate(20deg); }
  20%           { transform: rotate(-12deg); }
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.contact-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  background: #ffffff;
  border: 1px solid #ccfbf1;
  color: var(--c-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 16px -8px rgba(13, 148, 136, 0.4);
}
.contact-hero__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: contactHeroPulse 2s ease-in-out infinite;
}

.contact-hero__title {
  margin: 20px 0 14px;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--c-ink);
}
.contact-hero__wave-emoji {
  display: inline-block;
  transform-origin: 70% 70%;
  animation: contactHeroWaveEmoji 2.6s ease-in-out infinite;
}
.contact-hero__title-accent {
  display: inline-block;
  background: linear-gradient(135deg, #0d9488 0%, #6366f1 60%, #f59e0b 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
}
.contact-hero__title-accent::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 6px;
  height: 10px;
  background: rgba(245, 158, 11, 0.22);
  border-radius: 6px;
  z-index: -1;
}

.contact-hero__tagline {
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  color: var(--c-mute);
  max-width: 680px;
  margin: 0 auto 30px;
  line-height: 1.65;
}

.contact-hero__channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0 auto 30px;
}
.contact-hero__channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  text-decoration: none;
  color: var(--c-ink);
  text-align: left;
  box-shadow: 0 8px 18px -14px rgba(15, 23, 42, 0.18);
  transition: all 0.18s ease;
}
.contact-hero__channel:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px -18px rgba(13, 148, 136, 0.5);
  border-color: var(--c-accent);
}
.contact-hero__channel-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.12);
  color: var(--c-accent);
}
.contact-hero__channel-icon svg { width: 22px; height: 22px; }
.contact-hero__channel--whatsapp .contact-hero__channel-icon {
  background: rgba(34, 197, 94, 0.14);
  color: #16a34a;
}
.contact-hero__channel--mail .contact-hero__channel-icon {
  background: rgba(245, 158, 11, 0.14);
  color: #d97706;
}
.contact-hero__channel-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-hero__channel-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-mute);
}
.contact-hero__channel-value {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-ink);
}

.contact-hero__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.contact-hero__trust li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  padding: 14px 10px;
  background: #ffffff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  box-shadow: 0 8px 18px -14px rgba(15, 23, 42, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.contact-hero__trust li:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px -16px rgba(13, 148, 136, 0.4);
}
.contact-hero__trust strong {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.contact-hero__trust span {
  font-size: 0.74rem;
  color: var(--c-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  display: block;
}

@media (max-width: 720px) {
  .contact-hero { padding: 100px 18px 90px; }
  .contact-hero__doodle--bubble.bubble-b,
  .contact-hero__doodle--phone,
  .contact-hero__doodle--squiggle { display: none; }
  .contact-hero__doodle--bubble.bubble-a { width: 50px; height: 44px; top: 12%; left: 5%; }
  .contact-hero__doodle--mail { width: 46px; height: 46px; bottom: 24%; left: 6%; }
  .contact-hero__channels { grid-template-columns: 1fr; }
  .contact-hero__trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-hero__wave { height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero__orb,
  .contact-hero__doodle,
  .contact-hero__wave-emoji,
  .contact-hero__pulse { animation: none !important; }
  .contact-hero__doodle--squiggle path { stroke-dashoffset: 0; }
}
