/* ===== CONTACT INFO CARDS ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.contact-card {
  border: 1px solid var(--grey);
  border-radius: var(--radius-large);
  padding: 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(1,4,50,0.1);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact-card-icon svg { width: 24px; height: 24px; color: var(--navy); }
.contact-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.contact-card p { font-size: 14px; line-height: 1.6; opacity: .7; }
.contact-card a { font-weight: 600; color: var(--navy); transition: color 0.2s; }
.contact-card a:hover { color: var(--orange); }

/* ===== CONTACT FORM ===== */
.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}
.contact-form-left h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.contact-form-left .subtitle { font-size: 20px; font-family: 'Georgia', serif; margin-bottom: 32px; }

/* CF7 form styling */
.contact-form-left .wpcf7-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.contact-form-left .wpcf7-form input[type="text"],
.contact-form-left .wpcf7-form input[type="email"],
.contact-form-left .wpcf7-form textarea,
.contact-form-left .wpcf7-form select {
  width: 100%;
  background: white;
  border: 1px solid var(--grey);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Satoshi', sans-serif;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 20px;
}
.contact-form-left .wpcf7-form input:focus,
.contact-form-left .wpcf7-form textarea:focus,
.contact-form-left .wpcf7-form select:focus {
  border-color: var(--orange);
}
.contact-form-left .wpcf7-form textarea { min-height: 120px; resize: vertical; }
.contact-form-left .wpcf7-form input[type="submit"] {
  background: var(--orange);
  color: var(--background);
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: 'Satoshi', sans-serif;
  transition: opacity .2s, transform 0.2s;
}
.contact-form-left .wpcf7-form input[type="submit"]:hover { opacity: .9; transform: scale(1.02); }
.contact-form-left .wpcf7-form .wpcf7-acceptance { margin-bottom: 20px; }
.contact-form-left .wpcf7-form .wpcf7-acceptance label { text-transform: none; font-weight: 400; font-size: 14px; }
.contact-form-left .wpcf7-form .wpcf7-response-output { margin-top: 16px; font-size: 14px; }

/* Map side */
.contact-form-right .map-container {
  border-radius: var(--radius-large);
  overflow: hidden;
  height: 400px;
  background: var(--beige);
  margin-bottom: 24px;
}
.contact-form-right .map-container iframe { width: 100%; height: 100%; border: 0; }
.contact-form-right .opening-hours h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.contact-form-right .opening-hours p { font-size: 15px; line-height: 1.8; opacity: .7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contact-form-section { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .contact-cards { grid-template-columns: 1fr; }
}
