/* Contact page — hub layout + enquiry modal */

.sncc-contact-hub {
  padding: clamp(4rem, 7vw, 5.5rem) 0 clamp(4.5rem, 8vw, 6rem);
}

.sncc-contact-hub__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.sncc-contact-hub__intro p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--sncc-text);
}

.sncc-contact-hub__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sncc-contact-hub__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 26, 77, 0.08);
  box-shadow: 0 6px 18px rgba(0, 26, 77, 0.05);
}

.sncc-contact-hub__highlights i {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--sncc-blue);
  margin-top: 0.05rem;
}

.sncc-contact-hub__highlights span {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--sncc-blue-dark);
}

.sncc-contact-hub__cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sncc-contact-hub__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(1.15rem, 2.5vw, 1.4rem);
  border-radius: 16px;
  background: var(--sncc-white);
  border: 1px solid rgba(0, 26, 77, 0.08);
  box-shadow: 0 10px 28px rgba(0, 26, 77, 0.07);
  transition:
    transform var(--sncc-transition),
    border-color var(--sncc-transition),
    box-shadow var(--sncc-transition);
}

.sncc-contact-hub__card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 14px 32px rgba(0, 26, 77, 0.1);
}

.sncc-contact-hub__card-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(0, 26, 77, 0.06), rgba(0, 51, 153, 0.1));
  border: 1px solid rgba(0, 26, 77, 0.08);
  color: var(--sncc-blue);
  font-size: 1.4rem;
}

.sncc-contact-hub__card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sncc-blue-dark);
}

.sncc-contact-hub__card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--sncc-text-muted);
}

.sncc-contact-hub__phones,
.sncc-contact-hub__email {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sncc-contact-hub__phones a,
.sncc-contact-hub__email a {
  color: var(--sncc-blue);
  font-weight: 600;
  text-decoration: none;
}

.sncc-contact-hub__phones a:hover,
.sncc-contact-hub__email a:hover {
  text-decoration: underline;
}

.sncc-contact-hub__email {
  margin-top: 0.35rem;
}

.sncc-contact-hub__note {
  margin-top: 0.35rem !important;
  font-size: 0.8rem !important;
  color: rgba(0, 26, 77, 0.55) !important;
}

.sncc-contact-hub__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 18px;
  background: linear-gradient(135deg, #000b24 0%, #001233 45%, #001a4d 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 18px 42px rgba(0, 26, 77, 0.16);
}

.sncc-contact-hub__cta-copy h3 {
  margin: 0 0 0.35rem;
  font-family: var(--sncc-font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--sncc-white);
}

.sncc-contact-hub__cta-copy p {
  margin: 0;
  max-width: 36rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.sncc-contact-hub__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sncc-contact-hub__call-btn,
.sncc-contact-hub__quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--sncc-transition), background 0.2s ease, color 0.2s ease;
}

.sncc-contact-hub__call-btn {
  background: var(--sncc-gold);
  color: var(--sncc-blue-dark);
  border: 0;
}

.sncc-contact-hub__quote-btn {
  background: transparent;
  color: var(--sncc-white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.sncc-contact-hub__call-btn:hover,
.sncc-contact-hub__quote-btn:hover {
  transform: translateY(-1px);
}

.sncc-contact-enquiry-modal__dialog {
  max-width: 920px;
}

.sncc-contact-enquiry-modal__banner {
  min-height: clamp(110px, 16vw, 140px);
  max-height: clamp(130px, 18vw, 160px);
}

.sncc-contact-enquiry-modal__banner .sncc-booking-modal__banner-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(212, 175, 55, 0.85);
  font-size: clamp(2.5rem, 8vw, 3.5rem);
}

.sncc-contact-enquiry-modal__info p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--sncc-text-muted);
}

.sncc-contact-enquiry-modal__info a {
  color: var(--sncc-blue);
  font-weight: 600;
  text-decoration: none;
}

.sncc-contact-enquiry-modal__info a:hover {
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .sncc-contact-hub__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .sncc-contact-hub__cta-actions {
    flex-direction: column;
  }

  .sncc-contact-hub__call-btn,
  .sncc-contact-hub__quote-btn {
    justify-content: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sncc-contact-hub__card:hover {
    transform: none;
  }
}
