/* =====================================================
   CONTACT PAGE — Joginder Gymkhana Club
   ===================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  align-items: start;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: sticky;
  top: 100px;
}
.info-card-header { background: var(--navy); padding: 2rem; color: var(--white); }
.info-card-logo {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 auto 1rem;
}
.info-card-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; text-align: center; margin-bottom: 4px; }
.info-card-sub { font-size: 0.68rem; color: rgba(255,255,255,0.5); letter-spacing: 0.15em; text-transform: uppercase; text-align: center; }
.info-card-body { padding: 1.8rem; }
.info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 1.3rem; }
.info-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition);
  border: 1px solid var(--border);
}
.info-item:hover .info-icon { background: var(--gold); border-color: var(--gold); }
.info-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.info-value { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }
.info-value a { color: var(--text-mid); transition: color var(--transition); }
.info-value a:hover { color: var(--navy); }
.info-quick-links { display: flex; flex-direction: column; gap: 3px; }
.emergency-box { background: var(--cream); border-radius: 4px; padding: 1rem; border: 1px solid var(--border); margin-top: 0.5rem; }
.emergency-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #c62828; margin-bottom: 0.5rem; }
.emergency-row { font-size: 0.82rem; color: var(--text-mid); padding: 3px 0; }
.emergency-row strong { color: var(--text); }

.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 3rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
select.form-control option { background: var(--white); }
.contact-submit-btn { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .info-card { position: static; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 2rem; }
}
