.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* Form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  padding: 40px;
}
@media (max-width: 600px) { .contact-form-wrap { padding: 28px 24px; } }

.contact-form-wrap h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.contact-form-wrap .subtitle {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.contact-form-wrap .subtitle-en {
  font-size: 12px;
  color: var(--ink-3);
  font-style: italic;
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } .form-field.full { grid-column: 1; } }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-label .required { color: var(--accent); }
.form-label .optional { color: var(--ink-3); font-weight: 400; font-size: 12px; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(34, 198, 230, 0.04);
  box-shadow: 0 0 0 3px rgba(34, 198, 230, 0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-4); }
.form-textarea { min-height: 120px; resize: vertical; font-family: inherit; line-height: 1.5; }
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff77' stroke-width='1.5'/%3E%3C/svg%3E");
  background-position: right 14px center;
  background-repeat: no-repeat;
  padding-right: 36px;
  cursor: pointer;
}
.form-select option { background: var(--bg-2); color: var(--ink); }

.package-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 4px;
}
@media (max-width: 480px) { .package-picker { grid-template-columns: 1fr; } }
.pkg-opt {
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pkg-opt:hover { border-color: var(--line-2); }
.pkg-opt.active {
  border-color: var(--accent);
  background: rgba(34, 198, 230, 0.06);
}
.pkg-opt-title { font-size: 13px; font-weight: 600; }
.pkg-opt-price { font-size: 12px; color: var(--ink-3); }
.pkg-opt.active .pkg-opt-price { color: var(--accent); }

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 4px;
}
.form-consent input { margin-top: 4px; accent-color: var(--accent); cursor: pointer; flex-shrink: 0; }
.form-consent label {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.55;
  cursor: pointer;
}
.form-consent a { color: var(--accent); text-decoration: none; }

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
}
.form-submit:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -8px rgba(34, 198, 230, 0.5);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(34, 230, 144, 0.15);
  border: 1px solid rgba(34, 230, 144, 0.35);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--ink-2); line-height: 1.6; max-width: 400px; margin: 0 auto; }

.hidden { display: none; }

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.contact-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(34, 198, 230, 0.12);
  border: 1px solid rgba(34, 198, 230, 0.25);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.contact-card.wa .contact-card-icon {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25D366;
}
.contact-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-card-value {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-card-desc {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
}

.response-time {
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.response-time-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.response-time-label .dot {
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.response-time h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.response-time p { font-size: 12px; color: var(--ink-3); line-height: 1.5; }

/* FAQ mini */
.faq-mini {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item:hover, .faq-item.open { border-color: var(--line-2); }
.faq-q {
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}
.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.faq-toggle {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
}
.faq-item.open .faq-toggle {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-smooth); }
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
}
.faq-item.open .faq-a { max-height: 200px; }

/* Location */
.location-bar {
  margin-top: 60px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.location-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.location-item svg { color: var(--accent); }
.location-label { font-size: 12px; color: var(--ink-3); font-weight: 500; }
.location-value { font-size: 14px; color: var(--ink); font-weight: 600; }

/* Response time pill above submit button */
.form-response-time {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(34,230,144,0.08), rgba(34,198,230,0.06));
  border: 1px solid rgba(34,230,144,0.25);
  border-radius: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
}
.form-response-time svg {
  flex-shrink: 0;
  color: #22E690;
}
.form-response-time strong {
  color: var(--ink);
  font-weight: 700;
}
