/* ============================================================
   CIRRUS LAKE SOLUTIONS — Contact page
   Sidebar with contact info cards and NAICS codes block,
   plus the contact-page section wrapper. Form styles come
   from forms.css.
   ============================================================ */

.contact-page-section { padding: 96px 0; background: var(--gray-50); }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px; align-items: start;
}
.cp-sidebar h2 {
  font-size: 1.65rem; font-weight: 800; color: var(--gray-900);
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.cp-sidebar > p {
  font-size: 0.94rem; color: var(--gray-500);
  line-height: 1.78; margin-bottom: 36px;
}
.cp-info-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px 22px; margin-bottom: 12px;
  display: flex; align-items: center; gap: 14px;
  transition: var(--transition);
}
.cp-info-card:hover { box-shadow: var(--shadow-sm); }
.cp-info-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,48,73,0.08), rgba(80,200,120,0.1));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.cp-info-label {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--gray-500); margin-bottom: 3px;
}
.cp-info-value { font-size: 0.9rem; font-weight: 600; color: var(--gray-800); }
.cp-info-value a { color: var(--primary-500); transition: var(--transition-fast); }
.cp-info-value a:hover { color: var(--accent-dark); }
.cp-naics {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 22px; margin-top: 24px;
}
.cp-naics h3 {
  font-size: 0.73rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-500); margin-bottom: 12px;
}
.cp-naics-code {
  font-size: 0.83rem; color: var(--gray-600);
  padding: 5px 0; border-bottom: 1px solid var(--gray-100);
}
.cp-naics-code:last-child { border-bottom: none; }
.cp-naics-num { font-weight: 700; color: var(--primary-500); margin-right: 6px; }

.cp-company {
  margin-top: 20px;
  padding: 20px 22px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}
.cp-company-head {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.cp-company-list {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.85;
}
.cp-company-list strong { color: var(--gray-700); }

@media (max-width: 1024px) {
  .contact-page-grid { grid-template-columns: 1fr; }
}
