/* Contact page — Modern Industrial Fluid Design */

.contact-page {
  min-width: 320px;
  margin: 0;
  color: var(--text-body, #475569);
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}

.contact-page a {
  color: inherit;
  text-decoration: none;
}

.contact-page img {
  display: block;
  max-width: 100%;
  border: 0;
}

.contact-main {
  overflow: hidden;
}

.contact-section-inner {
  box-sizing: border-box;
  width: 1200px;
  max-width: 92%;
  margin: 0 auto;
  padding: 0 16px;
}

/* Modern Hero Banner */
.contact-hero {
  position: relative;
  height: 360px;
  background-color: #0b132a;
  background-image: url("../images/3000335.jpg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 19, 42, 0.84) 0%, rgba(11, 19, 42, 0.70) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 860px;
  padding: 0 20px;
}

.contact-hero-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 16px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 20px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-hero-title {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-hero-desc {
  margin: 0 auto;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.7;
}

.contact-intro {
  background: #fff;
  padding: 80px 0;
}

.contact-intro-stage {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 56px;
}

.contact-intro-left {
  flex: 0 0 420px;
  min-width: 0;
}

.contact-intro-logo {
  width: 231px;
  height: auto;
  margin-bottom: 24px;
  object-fit: contain;
}

.contact-intro-text {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.75;
}

.contact-intro-text p {
  margin: 0 0 16px;
}

/* Form Container */
.contact-intro-form {
  flex: 1 1 620px;
  min-width: 0;
  box-sizing: border-box;
  padding: 36px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.contact-page .contact-form-title {
  margin: 0 0 24px;
  color: var(--text-dark, #0f172a);
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.contact-page .contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.contact-page .contact-form-field {
  display: block;
  margin: 0;
}

.contact-page .contact-form-field-full {
  grid-column: 1 / -1;
}

.contact-page .contact-form-label {
  display: block;
  margin-bottom: 8px;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-page .contact-form-label em {
  color: #ef4444;
  font-style: normal;
  margin-left: 2px;
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  color: #334155;
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form select:focus,
.contact-page .contact-form textarea:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.contact-page ::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.contact-page .contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-page .contact-form-honeypot {
  display: none !important;
}

.contact-page .contact-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.contact-page .contact-form-submit {
  min-width: 140px;
  height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  background: #0284c7;
  color: #fff;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.2);
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-page .contact-form-submit:hover:not(:disabled) {
  background: #0270a9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.28);
}

.contact-page .contact-form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.contact-page .contact-form-feedback {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.contact-page .contact-form-feedback.is-success {
  color: #10b981;
}

.contact-page .contact-form-feedback.is-error {
  color: #ef4444;
}

/* Card directories — sits above the shared dark home-contact bar */
.contact-details {
  background: #fff;
  padding-bottom: 0;
}

.contact-details-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  border-top: 1px solid #f1f5f9;
  padding: 48px 16px 72px;
}

.contact-details-title {
  margin: 0;
  color: var(--text-dark, #0f172a);
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  width: 100%;
}

.contact-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}

.contact-block {
  flex: 1 1 300px;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.015);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  border-color: #e2e8f0;
}

.contact-block-title {
  margin: 0 0 16px;
  color: var(--text-dark, #0f172a);
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-block-body {
  margin: 0;
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.8;
}

.contact-block-body p {
  margin: 0 0 8px;
}

.contact-block-body p:last-child {
  margin-bottom: 0;
}

.contact-block-body a {
  color: #0284c7;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-block-body a:hover {
  color: #0270a9;
}

.contact-page .reveal-section {
  opacity: 1;
  transform: none;
  transition: opacity .8s ease, transform .8s ease;
}

.contact-page .reveal-section.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .contact-intro-stage {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-intro-left {
    flex: 0 0 auto;
  }
  .contact-details-grid {
    flex-direction: column;
  }
}
