/* css/nyc-contact-modern.css */

.nyc-contact-page {
  background: #f5f8fb;
}

.nyc-contact-hero {
  padding: 90px 20px;
  background: linear-gradient(135deg, rgba(13,39,64,.92), rgba(18,63,104,.86)), url("../images/statue-of-liberty-01.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.nyc-contact-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.nyc-contact-hero h1 {
  color: #fff;
  font-size: 54px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.nyc-contact-hero p {
  color: rgba(255,255,255,.9);
  font-size: 19px;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

.nyc-contact-section {
  padding: 70px 20px;
}

.nyc-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
}

.nyc-contact-main-card,
.nyc-contact-side-card,
.nyc-contact-info-card {
  background: #fff;
  border-radius: 26px;
  padding: 38px;
  box-shadow: 0 18px 45px rgba(13,39,64,.08);
}

.nyc-contact-label {
  display: inline-block;
  color: #c64747;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 12px;
}

.nyc-contact-main-card h2,
.nyc-contact-side-card h2 {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #14213d;
}

.nyc-contact-main-card p,
.nyc-contact-side-card p {
  font-size: 16px;
  line-height: 1.7;
}

.nyc-contact-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.nyc-contact-list li {
  padding: 16px 0;
  border-bottom: 1px solid #edf1f6;
  font-size: 16px;
  color: #5d6b82;
}

.nyc-contact-list li strong {
  display: block;
  color: #123f68;
  margin-bottom: 4px;
}

.nyc-contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.nyc-contact-btn {
  display: inline-block;
  background: #c64747;
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
}

.nyc-contact-btn:hover {
  background: #123f68;
  color: #fff;
}

.nyc-contact-btn.secondary {
  background: #123f68;
}

.nyc-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.nyc-contact-info-card {
  text-align: center;
  padding: 30px 22px;
}

.nyc-contact-info-card i {
  font-size: 34px;
  color: #c64747;
  margin-bottom: 18px;
}

.nyc-contact-info-card h3 {
  font-size: 20px;
  color: #123f68;
  margin-bottom: 10px;
}

.nyc-contact-info-card p {
  margin-bottom: 0;
  line-height: 1.6;
}

.nyc-contact-note {
  margin-top: 28px;
  background: #123f68;
  color: #fff;
  border-radius: 24px;
  padding: 30px;
  text-align: center;
}

.nyc-contact-note h2,
.nyc-contact-note p {
  color: #fff;
}

.nyc-contact-note p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .nyc-contact-grid,
  .nyc-contact-info-grid {
    grid-template-columns: 1fr;
  }

  .nyc-contact-hero h1 {
    font-size: 38px;
  }

  .nyc-contact-main-card,
  .nyc-contact-side-card {
    padding: 28px 22px;
  }
}