:root{
  --bg: #0e2a40;         /* deep navy to match your background */
  --text: #e8e6e3;
  --muted: #c7c5c2;
  --accent: #d9b35f;     /* warm gold accent for focus rings */
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: url('bluesurfbrokeragebackground.png') center/cover fixed no-repeat var(--bg);
}

.page-wrap{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:40px 16px;
}

.card{
  width:min(920px, 100%);
  background: url('bluesurfbrokeragebackground.png') center/cover no-repeat var(--bg); /* same as page */
  border-radius:22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 1px 0 rgba(255,255,255,.04) inset;
  padding:28px clamp(20px, 3vw, 40px) 36px;
  backdrop-filter: blur(0.5px);
}

.logo-wrap{
  display:flex; justify-content:center; margin-bottom:10px;
}
.logo{ width:min(360px, 60%); height:auto; display:block; filter: drop-shadow(0 2px 2px rgba(0,0,0,.35)); }

/* Title centered with higher specificity */
main.card h1.page-title{ text-align:center !important; }

/* Lede and phone link styles (gold, no underline) */
.lede{ color:var(--muted); line-height:1.6; margin:0 0 18px; text-align:center; }
.lede-phone{ color: #ffffff; font-weight: 700; text-decoration: none; }
.lede-phone:hover{ text-decoration: none; color: #ffffff; }

h1{
  margin:10px 0 4px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing:.3px;
}

.contact-form{ display:grid; gap:14px; }
.row{ display:grid; gap:6px; }
label{ font-weight:600; letter-spacing:.2px; }
input, textarea, select{
  width:100%;
  background: rgba(8,20,32,.5);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  color:var(--text);
  padding:12px 14px;
  outline:none;
}
input:focus, textarea:focus, select:focus{ border-color:var(--accent); box-shadow:0 0 0 3px rgba(217,179,95,.25); }

/* Actions: button centered on its own line */
.actions{
  display:flex;
  align-items:center;
  justify-content:center !important;
  margin-top:12px;
  width:100%;
}

/* Primary button */
button.primary-btn{
  background: linear-gradient(180deg, #e1c277, #c7a45a);
  color:#0b1f31;
  border:0; border-radius:14px;
  padding:12px 24px;
  font-weight:800; letter-spacing:.4px;
  cursor:pointer;
}
button.primary-btn:hover{ filter: brightness(1.05); }

/* Note: centered on its own line under the button */
.note{ text-align:center !important;
  text-align:center !important;
  margin-top:8px;
  color:var(--muted);
  opacity:.9;
}

.foot{ margin-top:20px; color:var(--muted); font-size:.95rem; text-align:center; }

/* honeypot */
.hp{ position:absolute; left:-5000px; top:auto; width:1px; height:1px; overflow:hidden; }

/* Floating call cube uses same background image as page */
.call-cube {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('bluesurfbrokeragebackground.png') center/cover no-repeat var(--bg);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.6), 0 2px 6px rgba(0,0,0,.45);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  z-index: 999;
  backdrop-filter: blur(1px);
}
.call-cube:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0,0,0,.75), 0 4px 10px rgba(0,0,0,.55);
}
.call-cube:active { transform: translateY(0); }
