/* ================= HERO ================= */

.page-hero {
  background: linear-gradient(180deg, #020617, #0f172a);
  padding: 56px 0;
  text-align: center;
  color: #ffffff;
}

.page-hero h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-text {
  font-size: 16px;
  color: #cbd5f5;
  max-width: 760px;
  margin: auto;
  line-height: 1.7;
}

/* ================= ENQUIRY ================= */

.enquiry-section {
  padding: 70px 0;
  background: #ffffff;
}

.container.narrow {
  max-width: 820px;
}

.enquiry-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #020617;
}

.contact-intro {
  font-size: 15.5px;
  color: #475569;
  margin-bottom: 28px;
}

/* NOTICE */

.notice {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 22px;
  font-size: 14.5px;
}

.notice.success {
  background: #ecfeff;
  color: #065f46;
  border-left: 4px solid #0f766e;
}

.notice.error {
  background: #fee2e2;
  color: #991b1b;
  border-left: 4px solid #dc2626;
}

/* FORM */

.form-wrapper {
  background: #f8fafc;
  padding: 34px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

/* ROWS */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.phone-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
}

/* ACTIONS */

.form-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn.primary {
  background: #0f766e;
  color: #ffffff;
}

.btn.primary:hover {
  background: #115e59;
}

.btn.ghost {
  background: #e5e7eb;
  color: #020617;
}

.btn.ghost:hover {
  background: #d1d5db;
}

/* ERRORS */

.input-error {
  border-color: #dc2626;
}

.error-msg {
  font-size: 13px;
  color: #dc2626;
  margin-top: 4px;
}

.notice.success {
  background: #ecfeff;
  color: #065f46;
}

.notice.error {
  background: #fee2e2;
  color: #991b1b;
}

/* Loading Spinner */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


/* MOBILE */

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }
}


/* ================= CONTACT ================= */

.contact-section {
  padding: 64px 0;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

/* CARD */

.contact-card,
.map-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 20px 40px rgba(2,6,23,0.06);
  border: 1px solid #e5e7eb;
}

.contact-card h2 {
  font-size: 24px;
  margin-bottom: 18px;
  color: #020617;
}

/* ADDRESS */

.address {
  font-size: 15.5px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 22px;
}

/* CONTACT INFO */

.contact-info p {
  font-size: 15px;
  margin-bottom: 10px;
  color: #334155;
}

.contact-info a {
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* HOURS */

.business-hours {
  margin-top: 28px;
}

.business-hours h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #020617;
}

.business-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #e5e7eb;
  font-size: 14.5px;
  color: #334155;
}

.business-hours li:last-child {
  border-bottom: none;
}

/* MAP */

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 14px;
}

/* ================= MOBILE ================= */

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

  .map-card iframe {
    min-height: 320px;
  }

  .page-hero h1 {
    font-size: 30px;
  }
}
