/* ═══════════════════════════════════════
   CONTACT (section6)
═══════════════════════════════════════ */

.contact-section {
  position: relative;
  background: var(--bg-primary);
  z-index: 2;
}

.ct-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(70px, 11vh, 130px) clamp(20px, 4vw, 56px);
}

/* ── Header ── */
.ct-head {
  max-width: 600px;
  margin-bottom: 54px;
}
.ct-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px 8px 11px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary-60);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 18px -10px rgba(15, 37, 67, 0.4);
  margin-bottom: 22px;
}
.ct-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hero-green);
}
.ct-eyebrow b { color: var(--text-primary); font-weight: 700; }

.ct-head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.ct-head h2 .grad {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ct-head p {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-primary-60);
}

/* ── Layout ── */
.ct-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: stretch;
}

/* ── Info column ── */
.ct-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ct-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.ct-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -30px rgba(15, 37, 67, 0.35);
  border-color: transparent;
}
.ct-info-card .ic {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
}
.ct-info-card:nth-child(1) .ic { background: linear-gradient(135deg, var(--hero-warm-1), var(--hero-warm-2)); }
.ct-info-card:nth-child(2) .ic { background: linear-gradient(135deg, var(--hero-green), #0f7a44); }
.ct-info-card:nth-child(3) .ic { background: linear-gradient(135deg, var(--text-primary), #41546a); }
.ct-info-card h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary-60);
  margin-bottom: 6px;
}
.ct-info-card p,
.ct-info-card a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  line-height: 1.45;
}
.ct-info-card a:hover { color: var(--hero-warm-2); }

.ct-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.ct-socials a {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  display: grid;
  place-items: center;
  color: var(--text-primary-60);
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.ct-socials a:hover {
  transform: translateY(-3px);
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--hero-warm-1), var(--hero-warm-2));
}

/* ── Form card (inactive for now) ── */
.ct-form-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: clamp(26px, 3vw, 40px);
  box-shadow: 0 24px 60px -34px rgba(15, 37, 67, 0.45);
}
.ct-form-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ct-field { margin-bottom: 16px; }
.ct-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary-60);
  margin-bottom: 7px;
}
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.ct-field textarea { resize: vertical; min-height: 120px; }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--hero-warm-2);
  box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.12);
}

/* disabled (inactive) state */
.ct-field input:disabled,
.ct-field select:disabled,
.ct-field textarea:disabled {
  background: #f3f4f6;
  color: var(--text-primary-30);
  cursor: not-allowed;
}

.ct-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  padding: 16px 30px;
  border-radius: 13px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  overflow: hidden;
  margin-top: 6px;
  background: var(--brand-gradient);
  box-shadow: 0 16px 34px -12px rgba(255, 77, 109, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ct-submit svg { transition: transform 0.3s ease; }
.ct-submit:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -12px rgba(255, 77, 109, 0.7);
}
.ct-submit:not(:disabled):hover svg { transform: translateX(5px); }
.ct-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.ct-form-note {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-primary-60);
  margin-top: 14px;
}

/* ── Map ── */
.ct-map {
  margin-top: 34px;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 30px 70px -30px rgba(15, 37, 67, 0.35);
  height: clamp(300px, 42vh, 440px);
}
.ct-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.25) contrast(1.02);
}
.ct-map .pin {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  box-shadow: 0 10px 30px -14px rgba(15, 37, 67, 0.5);
}
.ct-map .pin .d {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--hero-green);
  box-shadow: 0 0 0 4px rgba(31, 157, 92, 0.18);
}

/* ── Responsive ── */
@media (max-width: 880px) {
  .ct-grid { grid-template-columns: 1fr; gap: 24px; }
  .ct-field-row { grid-template-columns: 1fr; }
}
