/* =========================================================
   CONTACT.CSS — Contact page: info cards + form
   ========================================================= */

.contact {
  padding: clamp(3.5rem, 7vw, 6rem) 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  width: 100%;
  align-items: start;
  margin-top: 1rem;
}

/* ---- Left: info cards ---- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

/* ---- Schedule meeting link ---- */
.schedule-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-width: 0;
  padding: 1.05rem 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green), var(--navy));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: var(--border-1);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.schedule-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(25, 40, 60, 0.35);
}

.schedule-link [data-lucide] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.schedule-link .sl-arrow {
  transition: transform 0.25s var(--ease);
}

.schedule-link:hover .sl-arrow {
  transform: translateX(4px);
}

.ci-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--surface);
  border: var(--border-1);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.ci-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(105, 159, 71, 0.4);
}

.ci-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--navy));
  border: 2px solid var(--navy);
  color: #fff;
}

.ci-icon [data-lucide] {
  width: 18px;
  height: 18px;
}

.ci-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

.ci-value {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s var(--ease);
}

a.ci-value:hover {
  color: var(--green-dark);
}

.ci-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.ci-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: var(--border-1);
  border-radius: 8px;
  background: var(--bg);
  color: var(--navy);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.ci-socials a:hover {
  transform: translate(-2px, -2px);
  background: var(--navy);
  color: #fff;
  box-shadow: 3px 3px 0 rgba(105, 159, 71, 0.6);
}

.ci-socials svg {
  width: 15px;
  height: 15px;
}

/* ---- Right: form ---- */
.contact-form {
  background: var(--surface);
  border: var(--border-1);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.cf-field label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--bg);
  border: var(--border-1);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.cf-field textarea {
  resize: vertical;
  min-height: 110px;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--green);
  box-shadow: 3px 3px 0 rgba(105, 159, 71, 0.35);
}

.btn-submit {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: default;
}

.cf-success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
}

.cf-success [data-lucide] {
  width: 16px;
  height: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .cf-row {
    grid-template-columns: 1fr;
  }
  .btn-submit {
    align-self: stretch;
  }
}
