.contact-hero {
  background:
    linear-gradient(135deg, rgba(10,20,34,0.92) 0%, rgba(13,27,42,0.85) 100%),
    url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1800&q=80') center/cover no-repeat;
  padding: 100px 0 36px !important;
}

.contact-hero h1 {
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 12px;
  line-height: 1.1;
}

.contact-hero p {
  font-size: 16px;
  max-width: 480px;
}

.contact-sec { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 400px 1fr; gap: 60px; align-items: start; }

.info-col { display: flex; flex-direction: column; gap: 18px; }
.ic { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); transition: border-color .2s, box-shadow .2s; }
.ic:hover { border-color: var(--gold-border); box-shadow: var(--shadow-md); }
.ic-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ic-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.ic-title { font-weight: 700; font-size: 15px; color: var(--navy); }
.ic-sub { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.ic-body { font-size: 14.5px; color: var(--muted); line-height: 1.7; }
.ic-body a { color: var(--text); font-weight: 600; transition: color .18s; }
.ic-body a:hover { color: var(--gold); }

.hours-list { display: flex; flex-direction: column; gap: 6px; }
.hr { display: flex; justify-content: space-between; font-size: 13.5px; padding: 6px 0; border-bottom: 1px solid var(--border-light); }
.hr:last-child { border: none; }
.hr .day { color: var(--muted); }
.hr .time { font-weight: 700; color: var(--text); }
.hr.closed .time { color: var(--muted); font-weight: 400; }

.vi-card { background: var(--navy); border: 1px solid rgba(196,151,58,0.2); border-radius: var(--radius-lg); padding: 22px; }
.vi-card-icon { width: 36px; height: 36px; background: rgba(196,151,58,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 12px; }
.vi-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--white); margin-bottom: 8px; }
.vi-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 14px; }
.vi-toggle { display: flex; gap: 8px; }
.vi-toggle button { padding: 7px 16px; border-radius: var(--radius); font-family: var(--font-body); font-size: 12px; font-weight: 700; cursor: pointer; transition: all .18s; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.12); }
.vi-toggle button.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Form Card */
.form-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 42px; box-shadow: var(--shadow-md); }
.form-card h2 { font-family: var(--font-display); font-size: 32px; font-weight: 400; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.3px; }
.form-card > p { font-size: 15px; color: var(--muted); margin-bottom: 32px; line-height: 1.65; }

/* Override Bootstrap form-control with brand styles */
.ff { margin-bottom: 20px; }
.ff .form-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--muted); margin-bottom: 8px;
}
.ff .form-control,
.ff .form-select {
  padding: 12px 16px; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  color: var(--text); font-size: 14px; font-family: inherit;
}
.ff .form-control::placeholder,
.ff textarea.form-control::placeholder { color: var(--muted); }
.ff .form-control:focus,
.ff .form-select:focus {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.ff .form-select option { background: var(--white); }
.ff textarea.form-control { height: 130px; resize: vertical; }
.req { color: var(--gold); }

.consent {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--fog); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; margin-bottom: 22px;
  font-size: 13px; color: var(--muted); line-height: 1.65;
}
.consent .form-check-input {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--gold); border-radius: 4px;
}
.consent a { color: var(--slate-light); }
.form-submit { width: 100%; padding: 15px; font-size: 15px; font-weight: 700; }

/* Success state */
.success { display: none; text-align: center; padding: 52px 24px; }
.success .si { display: flex; justify-content: center; margin-bottom: 18px; color: var(--gold); }
.success h3 { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--navy); margin-bottom: 12px; }
.success p { font-size: 15px; color: var(--muted); line-height: 1.7; }
.s-acts { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

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