/* Cookie consent banner */
.cc-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 100;
  background: var(--slate-900);
  color: #fff;
  border-left: 4px solid var(--gold-500);
  padding: 22px 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  display: none;
  font-family: 'IBM Plex Sans', sans-serif;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.cc-banner.cc-show { display: block; animation: cc-in 0.25s ease; }
@keyframes cc-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.cc-banner h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-500);
  margin-bottom: 8px;
}
.cc-banner p {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin-bottom: 16px;
}
.cc-banner p a { color: var(--teal-300); border-bottom: 1px solid var(--teal-300); }
.cc-banner p a:hover { color: #fff; }
.cc-row { display: flex; gap: 8px; flex-wrap: wrap; }
.cc-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 16px; border: 0; cursor: pointer;
  transition: all 0.15s ease;
}
.cc-btn-primary { background: var(--gold-500); color: var(--slate-900); }
.cc-btn-primary:hover { background: var(--gold-400); }
.cc-btn-ghost { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
.cc-btn-ghost:hover { color: #fff; border-color: #fff; }

/* WhatsApp float button */
.wa-btn {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.2s ease;
  color: #fff;
}
.wa-btn:hover { transform: scale(1.06); background: #20BC5A; color: #fff; }
.wa-btn svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 720px) {
  .wa-btn { width: 50px; height: 50px; right: 14px; bottom: 14px; }
  .wa-btn svg { width: 26px; height: 26px; }
}

/* Back to top */
.b2t {
  position: fixed;
  right: 20px; bottom: 88px;
  z-index: 89;
  width: 44px; height: 44px;
  background: var(--slate-900);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(20,28,40,0.3);
  transition: all 0.2s ease;
}
.b2t.visible { display: flex; }
.b2t:hover { background: var(--teal-600); }
.b2t svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; }
@media (max-width: 720px) {
  .b2t { right: 14px; bottom: 76px; width: 40px; height: 40px; }
}

/* Adjust for mobile when WA banner overlaps */
@media (max-width: 540px) {
  .cc-banner.cc-show + .wa-btn,
  body.cc-active .wa-btn { bottom: 200px; }
  body.cc-active .b2t { bottom: 252px; }
}

/* RFQ Form */
.rfq-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 880px) {
  .rfq-wrap { grid-template-columns: 2fr 1fr; gap: 40px; }
}
.rfq-form {
  background: #fff;
  padding: 32px;
  border: 1px solid var(--border);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--slate-700);
  text-transform: uppercase;
}
.form-field input, .form-field select, .form-field textarea {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  padding: 11px 13px;
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--text-primary);
  transition: border-color 0.15s ease, outline 0s;
  border-radius: 0;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--teal-500);
  outline-offset: -2px;
  border-color: var(--teal-600);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.form-checkbox input { margin-top: 3px; flex-shrink: 0; }
.form-checkbox a { color: var(--teal-600); border-bottom: 1px solid var(--teal-500); }

.rfq-side h3 {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-700);
  margin-bottom: 16px;
  font-family: 'Manrope', sans-serif;
}
.rfq-side-link {
  display: block;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  transition: all 0.15s ease;
}
.rfq-side-link:hover { border-color: var(--teal-500); transform: translateY(-2px); }
.rfq-side-link strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 15px;
  color: var(--slate-900);
  margin-bottom: 4px;
}
.rfq-side-link span {
  font-size: 13px;
  color: var(--text-muted);
}

.rfq-toast {
  position: fixed;
  top: 80px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal-600); color: #fff;
  padding: 14px 24px;
  z-index: 200;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-left: 4px solid var(--gold-500);
  max-width: 92vw;
  display: none;
}
.rfq-toast.show { display: block; animation: cc-in 0.3s ease; }
