/* ============================================================
   CYTECH PHARMACEUTICALS — CONTACT & CAREERS
   ============================================================ */

/* ── CONTACT LAYOUT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 2.5rem;
}

/* ── CONTACT CARDS ── */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.3rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.contact-card:hover {
  border-color: rgba(160, 0, 93, 0.3);
  box-shadow: var(--shadow);
}

.c-icon {
  width: 42px;
  height: 42px;
  background: var(--brand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

.contact-card a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}

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

/* ── ENQUIRY FORM ── */
.enquiry-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.enquiry-form h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

/* ── SHARED FORM STYLES ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(160, 0, 93, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.submit-btn {
  width: 100%;
  background: var(--brand);
  color: #fff;
  padding: 13px;
  border-radius: 9px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.submit-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(160, 0, 93, 0.3);
}

/* ── MAP ── */
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ── CAREERS SECTION ── */
.careers-section {
  background: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-2) 60%, var(--dark-3) 100%);
  position: relative;
  overflow: hidden;
}

.careers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3C/g%3E%3C/svg%3E");
}

.careers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

/* ── CAREERS TEXT SIDE ── */
.careers-text .section-title {
  color: #fff;
}

.careers-text .section-title em {
  color: #f5b8d8;
}

.careers-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.careers-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.perk-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f5b8d8;
  flex-shrink: 0;
}

/* ── CAREERS FORM (dark) ── */
.careers-form-wrap {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.careers-form-wrap h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

/* ── DARK INPUT STYLES ── */
.dark-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.dark-input {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  font-family: var(--body);
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: border 0.2s, background 0.2s;
}

.dark-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.dark-input:focus {
  border-color: rgba(160, 0, 93, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.dark-select {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  font-family: var(--body);
  font-size: 14px;
  color: #fff;
  background: rgba(30, 0, 40, 0.8);
  outline: none;
  cursor: pointer;
}

.dark-select option {
  background: #1a0020;
  color: #fff;
}

.careers-image {
  margin-top: 35px;
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: fill;
  height: 420px;
}
/* Signature */
  .chairman-signature {
    width: 100%;
    display: block;
    text-align: center;
    gap: 10rem;
    padding: 1.5rem;
    align-self: flex-end;
    margin-left: 10px;
  }

  .sig-avatar {
    width: 70px;
    height: 100px;
  }

  .sig-name {
    font-size: 1.1rem;
  }

  .sig-title,
  .sig-company {
    text-align: center;
  }

