
/* Contact section: yellow labels, blue hyperlinks */
.section p {
  font-size: 1rem;
}

.section .label {
  color: #ffcc00; /* Yellow label text */
  font-weight: 500;
}

.section a {
  color: #0054a6; /* Company blue */
  text-decoration: none;
}

.section a:hover {
  text-decoration: underline;
  color: #3399ff;
}

/* Sidebar links should match heading blue */
.sidebar-links a {
  color: #0054a6;
  text-decoration: none;
  font-weight: 500;
}

.sidebar-links a:hover {
  text-decoration: underline;
  color: #3399ff;
}

/* Larger map container */
.map-wrap iframe {
  width: 100%;
  height: min(75vh, 600px);
  border-radius: 12px;
  border: none;
}

/* Booking form: stacked, readable, larger fields */
.booking .row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking .input,
.booking textarea {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #eaeaea;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.booking .btn {
  margin-top: 16px;
  min-width: 200px;
  font-family: 'Rubik', sans-serif;
}

.contact-info {
  background: rgba(0, 0, 0, 0.45); /* translucent black */
  padding: 20px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto 24px;
}

