/* IBEW Local 453 – Main Stylesheet */

/* === Custom Properties === */
:root {
  --blue-dark:    #0A1A3E;
  --blue-primary: #1B3C87;
  --blue-medium:  #2B5CA8;
  --gold:         #FFB81C;
  --gold-dark:    #C4920E;
  --white:        #FFFFFF;
  --gray-50:      #F8F9FB;
  --gray-100:     #EEF1F6;
  --gray-300:     #C8CDD8;
  --gray-500:     #6B7280;
  --gray-700:     #374151;
  --gray-900:     #111827;
  --success:      #15803D;
  --danger:       #DC2626;

  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Oswald', 'Arial Narrow', Arial, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.18);

  --radius:    6px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
  --container: 1200px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--gray-900); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; min-height: 100vh; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
main { flex: 1; }

/* === Typography === */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; letter-spacing: 0.02em; color: var(--blue-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === Layout === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--blue-dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2vw, 1.75rem); }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.65rem 1.5rem; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; cursor: pointer; border: 2px solid transparent; transition: var(--transition); text-decoration: none; line-height: 1.2; white-space: nowrap; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--blue-primary); color: var(--white); border-color: var(--blue-primary); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-gold { background: var(--gold); color: var(--blue-dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--blue-primary); border-color: var(--blue-primary); }
.btn-outline:hover { background: var(--blue-primary); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--blue-dark); border-color: var(--white); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }

/* === Notice Bar === */
.notice-bar { background: var(--gold); color: var(--blue-dark); padding: 0.55rem 1.25rem; text-align: center; font-size: 0.85rem; font-weight: 600; }
.notice-bar a { color: var(--blue-dark); font-weight: 700; text-decoration: underline; }

/* === Header === */
.site-header { position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-md); }
.header-top { background: var(--blue-dark); color: var(--white); padding: 0.45rem 0; font-size: 0.83rem; }
.header-top .container { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.header-contact-info { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.header-contact-info a { color: var(--gold); text-decoration: none; font-weight: 500; }
.header-contact-info a:hover { text-decoration: underline; }
.header-contact-info span { color: rgba(255,255,255,0.65); }

.header-main { background: var(--blue-primary); padding: 0.65rem 0; }
.header-main .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }

.site-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.site-logo img { height: 56px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-local { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 700; color: var(--gold); letter-spacing: 0.06em; line-height: 1; }
.logo-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 2px; }

/* === Navigation === */
.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.45rem; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.site-nav { display: flex; align-items: center; }
.nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--blue-dark); flex-direction: column; padding: 0.75rem 1.25rem 1.25rem; }
.nav-menu.open { display: flex; }
.nav-menu > li > a { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; color: var(--white); font-weight: 500; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color var(--transition); }
.nav-menu > li:last-child > a { border-bottom: none; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--gold); text-decoration: none; }

.dropdown { display: none; padding-left: 1rem; padding-bottom: 0.25rem; }
.dropdown.open { display: block; }
.dropdown li a { display: block; padding: 0.45rem 0; color: rgba(255,255,255,0.8); font-size: 0.88rem; border: none; }
.dropdown li a:hover { color: var(--gold); text-decoration: none; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-menu { display: flex !important; position: static; background: transparent; flex-direction: row; align-items: center; padding: 0; gap: 0; }
  .nav-menu > li > a { padding: 0.45rem 0.7rem; border-bottom: none; font-size: 0.88rem; border-radius: var(--radius); }
  .nav-menu > li > a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
  .nav-menu > li > a.active { color: var(--gold); }
  .has-dropdown { position: relative; }
  .dropdown { display: none !important; position: absolute; top: calc(100% + 8px); left: 0; min-width: 210px; background: var(--blue-dark); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 0.5rem 0; }
  .has-dropdown:hover .dropdown { display: block !important; }
  .dropdown li a { padding: 0.55rem 1.1rem; border-radius: 0; font-size: 0.88rem; }
  .dropdown li a:hover { background: rgba(255,255,255,0.08); }
}

/* === Page Hero === */
.hero { position: relative; min-height: clamp(440px, 60vh, 680px); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,26,62,0.90) 0%, rgba(27,60,135,0.72) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 680px; color: var(--white); padding: 3.5rem 1.25rem; }
.hero-eyebrow { display: inline-block; background: var(--gold); color: var(--blue-dark); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; padding: 0.28rem 0.7rem; border-radius: var(--radius); margin-bottom: 1.25rem; }
.hero h1 { color: var(--white); margin-bottom: 1rem; text-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.hero-lead { font-size: 1.15rem; opacity: 0.88; margin-bottom: 2rem; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.page-hero { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%); color: var(--white); padding: 2.75rem 0 2.25rem; }
.page-hero h1 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.6rem); margin-bottom: 0.5rem; }
.page-hero p { opacity: 0.82; font-size: 1.02rem; margin: 0; max-width: 580px; }
.breadcrumb { display: flex; gap: 0.4rem; align-items: center; font-size: 0.82rem; opacity: 0.7; margin-bottom: 0.6rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: 0.5; }

/* === Cards === */
.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); }
.card:hover { box-shadow: var(--shadow-md); }
.card-body { padding: 1.5rem; }

.feature-box { text-align: center; padding: 2rem 1.5rem; }
.feature-box:hover { transform: translateY(-3px); }
.feature-icon { font-size: 2.4rem; margin-bottom: 1rem; line-height: 1; }
.feature-box h3 { margin-bottom: 0.5rem; }
.feature-box p { color: var(--gray-500); font-size: 0.92rem; margin-bottom: 0; }

/* === Officer Cards === */
.officers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.officer-card { text-align: center; padding: 1.75rem 1.25rem; }
.officer-avatar { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--white); background: var(--blue-primary); border: 3px solid var(--gray-100); flex-shrink: 0; }
.officer-avatar.gold-bg { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%); border-color: var(--gold); }
.officer-name { font-family: var(--font-heading); font-size: 1.05rem; color: var(--blue-dark); margin-bottom: 0.2rem; }
.officer-title { font-size: 0.82rem; color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

.board-grid { display: grid; grid-template-columns: 1fr; gap: 0.6rem; }
@media (min-width: 640px) { .board-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .board-grid { grid-template-columns: repeat(3, 1fr); } }
.board-member { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; background: var(--gray-50); border-radius: var(--radius); border-left: 3px solid var(--gold); }
.board-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.board-member-name { font-weight: 600; color: var(--gray-900); font-size: 0.92rem; }
.board-member-role { font-size: 0.78rem; color: var(--gray-500); }

/* === Contractors Table === */
.table-controls { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; align-items: center; }
.search-input { flex: 1; min-width: 200px; padding: 0.62rem 1rem; border: 2px solid var(--gray-300); border-radius: var(--radius); font-size: 0.93rem; transition: border-color var(--transition); font-family: var(--font-sans); }
.search-input:focus { outline: none; border-color: var(--blue-primary); }
.filter-select { padding: 0.62rem 1rem; border: 2px solid var(--gray-300); border-radius: var(--radius); font-size: 0.93rem; background: var(--white); cursor: pointer; font-family: var(--font-sans); }
.filter-select:focus { outline: none; border-color: var(--blue-primary); }
.table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
table { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 580px; }
thead { background: var(--blue-primary); color: var(--white); }
thead th { padding: 0.85rem 1rem; text-align: left; font-family: var(--font-heading); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
tbody tr { border-bottom: 1px solid var(--gray-100); transition: background var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--gray-50); }
tbody td { padding: 0.85rem 1rem; color: var(--gray-700); vertical-align: top; }
tbody td a { color: var(--blue-primary); }
.table-count { font-size: 0.82rem; color: var(--gray-500); margin-top: 0.75rem; }
.no-results { text-align: center; padding: 3rem 1rem; color: var(--gray-500); }

/* === Forms === */
.form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 2.5rem; border: 1px solid var(--gray-100); }
.form-group { margin-bottom: 1.25rem; }
label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--gray-700); margin-bottom: 0.4rem; }
label .req { color: var(--danger); margin-left: 0.15rem; }
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea { width: 100%; padding: 0.65rem 1rem; border: 2px solid var(--gray-300); border-radius: var(--radius); font-size: 0.93rem; font-family: var(--font-sans); color: var(--gray-900); background: var(--white); transition: border-color var(--transition); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue-primary); box-shadow: 0 0 0 3px rgba(27,60,135,0.08); }
input::placeholder, textarea::placeholder { color: var(--gray-500); }
textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: auto; margin-top: 0.18rem; flex-shrink: 0; accent-color: var(--blue-primary); }
.checkbox-label span { font-weight: 400; color: var(--gray-700); font-size: 0.9rem; }
.form-note { font-size: 0.78rem; color: var(--gray-500); margin-top: 0.3rem; }
.form-success { background: #DCFCE7; border: 1px solid #86EFAC; border-radius: var(--radius); padding: 1rem 1.25rem; color: var(--success); display: none; margin-bottom: 1rem; font-weight: 500; }
.form-success.show { display: block; }

/* === Map === */
#jurisdiction-map { height: 480px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.map-note { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 0.85rem 1rem; font-size: 0.85rem; color: var(--gray-700); margin-top: 1rem; }

/* === Contact Info === */
.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .contact-info-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 46px; height: 46px; background: var(--blue-primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.contact-item h4 { color: var(--blue-dark); margin-bottom: 0.2rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item p, .contact-item a { color: var(--gray-700); font-size: 0.95rem; margin: 0; line-height: 1.6; }
.contact-item a { color: var(--blue-primary); }

/* === Events === */
.events-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 700px; margin: 0 auto; }
.event-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.25rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.event-date { background: var(--blue-primary); color: var(--white); text-align: center; border-radius: var(--radius); padding: 0.5rem 0.75rem; min-width: 58px; flex-shrink: 0; }
.event-month { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.82; }
.event-day { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 700; line-height: 1; }
.event-info h4 { color: var(--blue-dark); font-size: 0.97rem; margin-bottom: 0.2rem; }
.event-info p { color: var(--gray-500); font-size: 0.83rem; margin: 0; }

/* === Documents === */
.doc-list { display: flex; flex-direction: column; gap: 0.6rem; }
.doc-item { display: flex; align-items: center; gap: 0.85rem; padding: 0.85rem 1rem; border-radius: var(--radius); border: 1px solid var(--gray-200); background: var(--white); transition: all var(--transition); }
.doc-item:hover { border-color: var(--blue-primary); background: var(--gray-50); }
.doc-icon { width: 40px; height: 40px; background: #FEF2F2; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.doc-name { font-weight: 600; font-size: 0.9rem; color: var(--gray-900); flex: 1; }
.doc-size { font-size: 0.78rem; color: var(--gray-500); margin-top: 0.15rem; }
.doc-empty { text-align: center; padding: 3rem 1rem; color: var(--gray-500); }
.doc-empty .icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }

/* === Member Login === */
.login-box { max-width: 420px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 2.5rem; border: 1px solid var(--gray-100); }
.login-box .logo-center { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.login-box h2 { text-align: center; margin-bottom: 0.35rem; }
.login-subtitle { text-align: center; color: var(--gray-500); font-size: 0.9rem; margin-bottom: 2rem; }

/* === Footer === */
.site-footer { background: var(--blue-dark); color: rgba(255,255,255,0.82); padding: 4rem 0 0; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: 0.88rem; opacity: 0.72; line-height: 1.75; margin: 1rem 0 1.25rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white); transition: background var(--transition); font-size: 0.85rem; font-weight: 700; }
.footer-social a:hover { background: var(--gold); color: var(--blue-dark); text-decoration: none; }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a { color: rgba(255,255,255,0.72); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-col address { color: rgba(255,255,255,0.65); font-size: 0.88rem; font-style: normal; line-height: 1.75; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding: 1.15rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8rem; opacity: 0.55; }

/* === Utilities === */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--gray-500); }
.text-sm { font-size: 0.88rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-center { display: flex; justify-content: center; }
.items-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.divider { height: 1px; background: var(--gray-200); margin: 2rem 0; }
.badge { display: inline-block; padding: 0.22rem 0.65rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; }
.badge-gold { background: var(--gold); color: var(--blue-dark); }
.badge-blue { background: var(--blue-primary); color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === Contractor Cards (mobile) === */
.contractor-cards { display: flex; flex-direction: column; gap: 1rem; }
.contractor-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-sm); }
.contractor-card-name { font-family: var(--font-heading); font-size: 1.05rem; color: var(--blue-dark); margin-bottom: 0.35rem; }
.contractor-card-name a { color: var(--blue-dark); }
.contractor-card-location { font-size: 0.82rem; color: var(--white); background: var(--blue-primary); display: inline-block; padding: 0.15rem 0.55rem; border-radius: 20px; margin-bottom: 0.75rem; font-weight: 600; }
.contractor-card-row { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.88rem; color: var(--gray-700); margin-bottom: 0.4rem; }
.contractor-card-row a { color: var(--blue-primary); }
.contractor-card-links { display: flex; gap: 0.5rem; margin-top: 0.85rem; flex-wrap: wrap; }

/* Show cards on mobile, table on desktop */
.contractor-cards { display: flex; }
.table-wrapper { display: none; }
@media (min-width: 768px) {
  .contractor-cards { display: none; }
  .table-wrapper { display: block; }
}

/* === Card Icons === */
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; color: var(--blue-primary); line-height: 1; }

/* === Member Quote === */
.member-quote-section { background: var(--blue-dark); padding: clamp(3rem, 5vw, 5rem) 0; }
.member-quote { max-width: 780px; margin: 0 auto; text-align: center; }
.member-quote blockquote { font-family: var(--font-heading); font-size: clamp(1.35rem, 3vw, 1.9rem); font-weight: 500; color: var(--white); line-height: 1.45; letter-spacing: 0.01em; position: relative; padding: 0 1rem; }
.member-quote blockquote::before { content: '\201C'; font-size: 5rem; line-height: 0; color: var(--gold); opacity: 0.6; position: absolute; top: 0.6rem; left: -0.5rem; }
.member-quote cite { display: block; margin-top: 1.5rem; font-size: 0.9rem; font-style: normal; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

/* === CTA Strip === */
.cta-strip { background: var(--blue-primary); color: var(--white); padding: clamp(3rem, 5vw, 4.5rem) 0; text-align: center; }
.cta-strip h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-strip p { opacity: 0.85; font-size: 1.05rem; max-width: 580px; margin: 0 auto 2rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
