
/* Valor Engineering Cooperative – Site Styles */
/* Color palette chosen from the logo */
:root{
  --brand-black:#111316;
  --brand-teal:#567D80; /* primary */
  --brand-teal-700:#3C6467;
  --brand-teal-200:#BFD2D4;
  --brand-orange:#F7931E; /* accents (dots) */
  --brand-slate:#5F6F78;
  --bg:#F7FAFC;
  --card:#FFFFFF;
  --muted:#8A9AA3;
  --ring:rgba(86,125,128,0.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Helvetica Neue", "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  color:var(--brand-black);
  background:var(--bg);
  line-height:1.6;
}

/* Layout */
.container{max-width:1120px;margin:0 auto;padding:0 20px}
.section{padding:80px 0}
.grid{display:grid;gap:24px}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
@media (max-width:900px){
  .grid-3{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .grid-3,.grid-2{grid-template-columns:1fr}
}

/* Header */
.header{
  position:sticky;top:0;z-index:1000;
  background:#fff;border-bottom:1px solid #e8eef2;
  backdrop-filter:saturate(180%) blur(8px);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:70px}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none}
.brand img{height:38px;width:auto}
.brand span{font-weight:800;letter-spacing:.02em}
.brand small{display:block;font-size:12px;color:var(--muted);letter-spacing:.08em}

.nav-links{display:flex;gap:20px;align-items:center}
.nav-links a{
  color:#273036;text-decoration:none;padding:8px 10px;border-radius:8px;font-weight:600
}
.nav-links a.active,.nav-links a:hover{background:rgba(86,125,128,0.08);color:var(--brand-teal);}

.mobile-toggle{display:none;border:0;background:transparent;font-size:28px}
@media (max-width:860px){
  .mobile-toggle{display:block}
  .nav-links{display:none;position:absolute;top:70px;left:0;right:0;background:#fff;
    border-bottom:1px solid #e8eef2;flex-direction:column;padding:12px}
  .nav-links.open{display:flex}
}

/* Hero */
.hero{
  position:relative;overflow:hidden;
  background:radial-gradient(1200px 500px at 80% -10%, rgba(247,147,30,0.18), transparent 60%),
             radial-gradient(1200px 500px at -10% 120%, rgba(86,125,128,0.22), transparent 60%),
             linear-gradient(180deg,#ffffff, #f4f8f9);
  border-bottom:1px solid #e8eef2;
}
.hero-inner{display:grid;grid-template-columns:1.1fr .9fr;gap:32px;align-items:center;padding:90px 0}
.hero h1{font-size:46px;line-height:1.1;margin:0 0 16px}
.hero p{font-size:18px;color:#39444A;margin:0 0 24px}
.hero .cta{display:flex;gap:12px;flex-wrap:wrap}
.btn{display:inline-block;padding:12px 18px;border-radius:12px;font-weight:700;text-decoration:none}
.btn-primary{background:var(--brand-teal);color:white;box-shadow:0 6px 20px rgba(86,125,128,.25)}
.btn-outline{border:2px solid var(--brand-teal);color:var(--brand-teal);background:transparent}
.badge{display:inline-flex;align-items:center;gap:8px;background:#fff;border:1px solid #e8eef2;color:var(--brand-slate);padding:6px 10px;border-radius:999px;font-weight:700}

.hero-card{
  background:#fff;border:1px solid #e8eef2;border-radius:20px;padding:22px;
  box-shadow:0 10px 40px rgba(17,19,22,.06);
}
.kpi{display:flex;gap:16px;align-items:center}
.kpi .dot{height:12px;width:12px;border-radius:50%;background:var(--brand-orange);box-shadow:0 0 0 6px rgba(247,147,30,.12)}
.kpi strong{font-size:28px}

/* Cards */
.card{
  background:var(--card);border:1px solid #e8eef2;border-radius:18px;padding:20px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{transform:translateY(-3px);box-shadow:0 10px 30px rgba(0,0,0,.06);border-color:#dee6eb}
.card h3{margin:0 0 10px}
.card p{margin:0;color:#47545C}
.icon{
  height:42px;width:42px;border-radius:10px;display:inline-grid;place-items:center;
  background:rgba(86,125,128,.1);color:var(--brand-teal);font-weight:900
}

/* Footer */
.footer{background:#0f1416;color:#d7dde2;padding-top:48px;border-top:1px solid #1d2529}
.footer .logo{display:flex;align-items:center;gap:12px}
.footer a{color:#d7dde2;text-decoration:none}
.footer a:hover{color:#fff}
.footer-bottom{border-top:1px solid #1d2529;margin-top:24px;padding:18px 0;color:#9AA6AE;font-size:14px}

/* Utilities */
.lead{font-size:20px;color:#344048}
.muted{color:var(--muted)}
.tag{display:inline-flex;align-items:center;gap:8px;padding:6px 10px;border-radius:999px;background:rgba(86,125,128,.08);color:var(--brand-teal);font-weight:700;font-size:12px;letter-spacing:.06em}
.section-title{font-size:32px;margin:0 0 10px}
.section-sub{color:#47545C;margin:0 0 24px}
.cta-row{display:flex;gap:14px;flex-wrap:wrap}
input,textarea{
  width:100%;padding:12px 14px;border-radius:12px;border:1px solid #dde5ea;outline:none;
  font:inherit;background:#fff;transition:border-color .15s, box-shadow .15s
}
input:focus,textarea:focus{border-color:var(--brand-teal);box-shadow:0 0 0 4px var(--ring)}
label{font-weight:700;color:#2b3338}
.form-actions{display:flex;gap:12px;align-items:center;flex-wrap:wrap}
small.help{color:#667682}
.alert{padding:12px 14px;border-radius:12px;background:rgba(247,147,30,.08);color:#6b3a06;border:1px solid rgba(247,147,30,.24)}
.success{background:rgba(86,125,128,.08);color:#274345;border-color:rgba(86,125,128,.24)}

/* === FDOT style + logo circle additions === */

/* ==== FDOT-style adjustments & Logo frame ==== */
/* FDOT palette cues */
:root{
  --fdot-blue:#003A6D;
  --fdot-orange:#F7931E;
}

/* High-contrast focus outline */
:focus-visible{outline:3px solid var(--fdot-orange); outline-offset:2px}

/* Skip link for accessibility */
.skip-link{
  position:absolute; left:-9999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  position:static; width:auto; height:auto; padding:8px 12px;
  background:#fff; border:2px solid var(--fdot-blue); border-radius:8px; z-index:9999;
}

/* Header/nav tighten + FDOT blue underline on active link */
.header{border-bottom:4px solid var(--fdot-blue)}
.nav-links a.active{border-bottom:3px solid var(--fdot-blue); border-radius:0}

/* Logo circular framing at ~175% of prior height (38px → ~66px) */
.brand img{
  height:66px !important; /* 38 * 1.75 ≈ 66 */
  width:auto;
  border-radius:50%;
  border:4px solid var(--fdot-blue);
  padding:4px;
  background:#ffffff;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}

/* Buttons shift toward FDOT palette */
.btn-primary{background:var(--fdot-blue)}
.btn-outline{border-color:var(--fdot-blue); color:var(--fdot-blue)}

/* Links in footer and body for better contrast */
.footer a{color:#e6edf3}
.footer a:hover{color:#ffffff}

/* FDOT-style bottom notices bar */
.notice-bar{
  background:#0b1f2f;
  color:#cfd8de;
  font-size:13px;
  padding:10px 0;
  border-top:1px solid #1d364b;
}
.notice-bar .container{display:flex; flex-wrap:wrap; gap:16px; align-items:center; justify-content:space-between}
.notice-pill{
  display:inline-block;
  padding:6px 10px;
  border:1px solid #274a67;
  border-radius:999px;
  background:rgba(0,58,109,.2);
  color:#e6edf3;
  white-space:nowrap;
}

/* Improve text contrast slightly */
body{color:#101418}
.section-sub, .muted{color:#344049}


/* === Professional banner & FDOT-style refinements === */
.hero--fdot {
  background: url('../img/hero.svg') center/cover no-repeat;
  color:#fff;
  border-bottom:4px solid var(--fdot-blue);
}
.hero--fdot .section-title, .hero--fdot h1, .hero--fdot p { color:#eef6ff; }
.hero--fdot .badge { background:rgba(255,255,255,.15); color:#fff; border-color:rgba(255,255,255,.3) }

/* Breadcrumb-style subheader */
.subheader {
  background:#0b1f2f; color:#cfd8de; border-bottom:1px solid #1d364b;
}
.subheader .container { display:flex; gap:12px; align-items:center; padding:10px 0 }
.subheader .crumb { font-size:13px; opacity:.95 }
.subheader .crumb::after { content:'›'; margin:0 8px; opacity:.6 }
.subheader .crumb:last-child::after { content:'' }

/* FDOT blue underline headings */
.fdot-heading {
  position:relative; display:inline-block; padding-bottom:6px; margin-bottom:8px;
}
.fdot-heading::after {
  content:''; position:absolute; left:0; right:0; bottom:0; height:4px; background:var(--fdot-blue);
  border-radius:2px;
}

/* Iconed bullet list */
.icon-list { list-style:none; padding-left:0; margin:0 }
.icon-list li { display:flex; gap:10px; align-items:flex-start; margin:8px 0 }
.icon-list img { width:18px; height:18px; margin-top:2px }

/* Hide any forgotten skip-link anchors safely (defensive) */
.skip-link{ display:none !important; }

/* === Valor FDOT Pro Improvements === */

/* === Improvements v2 === */

/* Logo responsive scaling in circular frame */
.brand img{
  max-height:66px; /* ~175% original */
  width:auto;
  border-radius:50%;
  border:4px solid var(--fdot-blue);
  padding:4px;
  background:#fff;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}

/* Nav links improved contrast with FDOT orange underline */
.nav-links a.active,
.nav-links a:hover{
  border-bottom:3px solid var(--fdot-orange);
  color:var(--fdot-blue);
  background:transparent;
}

/* Mobile nav improvements */
.mobile-toggle{font-size:30px; padding:10px}
.nav-links.open a{padding:14px; font-size:18px}

/* Typography hierarchy */
h1,h2,h3{font-family:Calibri,Segoe UI,Arial,sans-serif; font-weight:700}
h1{font-size:2.2rem; margin:0 0 12px}
h2{font-size:1.6rem; margin:0 0 10px}
h3{font-size:1.3rem; margin:0 0 8px}

/* Footer simplified */
.footer .grid-3{grid-template-columns:1fr 1fr 1fr}
.notice-bar .container{justify-content:center; flex-wrap:wrap; gap:12px}

/* Disclaimer bar */
.disclaimer-bar{
  background:#00223d;
  color:#d2dae2;
  font-size:12px;
  padding:10px;
  text-align:center;
  border-top:1px solid #1d364b;
}

/* === Refinements v3 === */

/* === Header & Disclaimer Refinements === */

/* Brand logo simplified (no heavy ring, subtle shadow only) */
.brand img {
  max-height:64px;
  width:auto;
  border-radius:50%;
  border:none;
  padding:0;
  background:#fff;
  box-shadow:0 2px 6px rgba(0,0,0,.15);
}

/* Brand text unified color */
.brand span {
  font-weight:800;
  color:#101418; /* neutral dark */
}
.brand small {
  color:#444;
}

/* Header aesthetics: taller, subtle background tint */
.header {
  background:#ffffffee;
  border-bottom:2px solid #d5dde5;
  box-shadow:0 2px 6px rgba(0,0,0,.06);
}

/* Disclaimer legal notice style */
.disclaimer-bar {
  background:#f5f7f8;
  color:#444;
  font-size:11.5px;
  line-height:1.4;
  padding:12px;
  text-align:left;
  border-top:2px solid #cfd6dc;
}

/* === Header/Branding/Disclaimer v3 === */

/* === Header & Branding Refinements (v3) === */

/* Header: cleaner border, better spacing */
.header{
  border-bottom:1px solid #e6ebf1;
  background:#ffffff;
}
.nav{
  height:76px;
}

/* Brand: unify colors; remove harsh FDOT-blue ring */
.brand{gap:14px}
.brand img{
  max-height:64px;           /* keep ~175% scale but slightly softer */
  width:auto;
  border-radius:50%;
  border:2px solid #e5edf3;  /* neutral ring instead of blue */
  padding:3px;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,.08); /* subtler shadow */
}
.brand span{
  color:#1a1f23;             /* single color for firm name */
  font-weight:800;
  letter-spacing:.02em;
}
.brand small{
  display:block;
  color:#1a1f23;             /* match color so it isn't two-tone */
  font-size:12px;
  letter-spacing:.06em;
  opacity:.85;
}

/* Nav contrast & spacing tweaks */
.nav-links a{
  padding:10px 12px;
  font-weight:700;
}
.nav-links a.active,
.nav-links a:hover{
  border-bottom:3px solid var(--fdot-orange);
  color:#111418;
  background:transparent;
}

/* Disclaimer: smaller, subdued, legal-style */
.disclaimer-bar{
  background:#0e1620;
  color:#9fb1bf;
  font-size:11px;
  line-height:1.4;
  padding:10px 0;
}
.disclaimer-bar .container{
  max-width:1120px;
  margin:0 auto;
  padding:0 20px;
  text-align:center;
}
.disclaimer-bar a{ color:#c7d6e1; text-decoration:underline }
.disclaimer-bar a:hover{ color:#ffffff }

/* Footer: space things out a bit so it doesn't feel crowded */
.footer .grid-3{ gap:24px }
.footer .logo strong{ color:#e6edf3 }

/* Force-hide any lingering skip/continue links */
.skip-link{display:none!important;visibility:hidden!important}
