/* ============================================================
 ELEVATE ELECTRICAL SOLUTIONS Shared Stylesheet
 Last updated: April 2026
 ============================================================ */

/* ===========================
 CSS CUSTOM PROPERTIES
 Change these to restyle the whole site
 =========================== */
:root {
 --color-black: #0D0D0D;
 --color-white: #FFFFFF;
 --color-silver: #C0C0C0;
 --color-silver-dark: #A0A0A0;
 --color-silver-deep: #6E6E6E;
 --color-charcoal: #1C1C1C;
 --color-steel: #2A2A2A;
 --color-gray-light: #F5F5F5;
 --color-gray-mid: #888888;
 --color-gray-dark: #333333;

 /* Chrome / metallic gradients */
 --chrome-btn: linear-gradient(180deg, #e8e8e8 0%, #d0d0d0 20%, #909090 50%, #c8c8c8 75%, #eeeeee 100%);
 --chrome-btn-hover: linear-gradient(180deg, #d0d0d0 0%, #b0b0b0 20%, #707070 50%, #aaaaaa 75%, #d8d8d8 100%);
 --chrome-text: linear-gradient(180deg, #ffffff 0%, #e0e0e0 25%, #909090 55%, #d8d8d8 78%, #f5f5f5 100%);
 --chrome-border: linear-gradient(90deg, #555 0%, #e8e8e8 30%, #ffffff 50%, #d0d0d0 70%, #555 100%);
 --chrome-stripe: linear-gradient(90deg, #666 0%, #f0f0f0 25%, #ffffff 50%, #d0d0d0 75%, #666 100%);

 --font-heading: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
 --font-body: Arial, Helvetica, sans-serif;

 --max-width: 1200px;
 --radius: 4px;
 --transition: 0.2s ease;

 --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
 --shadow-hover: 0 8px 28px rgba(0,0,0,0.13);
 --shadow-chrome: 0 2px 6px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.5);
}

/* ===========================
 RESET & BASE
 =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--color-black); background: var(--color-white); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
 max-width: var(--max-width);
 margin: 0 auto;
 padding: 0 1.5rem;
}

/* Skip link for accessibility */
.skip-link {
 position: absolute;
 top: -100%;
 left: 1rem;
 background: var(--color-silver);
 color: var(--color-black);
 font-weight: 700;
 padding: 0.5rem 1rem;
 z-index: 9999;
 border-radius: var(--radius);
}
.skip-link:focus { top: 0.5rem; }

/* ===========================
 BUTTONS
 =========================== */
.btn {
 display: inline-block;
 padding: 0.9rem 2rem;
 font-family: var(--font-body);
 font-size: 0.95rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.06em;
 border-radius: var(--radius);
 cursor: pointer;
 transition: all var(--transition);
 border: 2px solid transparent;
 line-height: 1;
}
.btn-primary {
 background: var(--chrome-btn);
 color: var(--color-black);
 border: 1px solid #999;
 box-shadow: var(--shadow-chrome);
 text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.btn-primary:hover {
 background: var(--chrome-btn-hover);
 transform: translateY(-1px);
 box-shadow: 0 4px 12px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn-outline {
 background: transparent;
 color: var(--color-white);
 border-color: var(--color-white);
}
.btn-outline:hover { background: var(--color-white); color: var(--color-black); transform: translateY(-1px); }

.btn-dark {
 background: var(--color-black);
 color: var(--color-white);
 border-color: var(--color-black);
}
.btn-dark:hover { background: var(--color-gray-dark); border-color: var(--color-gray-dark); transform: translateY(-1px); }

/* ===========================
 UTILITY BAR (shared)
 =========================== */
.utility-bar {
 background: #111;
 border-bottom: 1px solid #2a2a2a;
 padding: .45rem 1.5rem;
}
.utility-inner {
 max-width: var(--max-width);
 margin: 0 auto;
 display: flex;
 align-items: center;
 justify-content: space-between;
 flex-wrap: wrap;
 gap: .5rem;
}
.utility-left { display: flex; align-items: center; gap: 1.25rem; }
.utility-left a { color: #aaa; font-size: .8rem; display: flex; align-items: center; gap: .35rem; transition: color .2s; }
.utility-left a:hover { color: #fff; }
.utility-left a.call-now-btn {
 background: var(--gold-gradient);
 color: #111 !important;
 font-size: .72rem;
 font-weight: 900;
 text-transform: uppercase;
 letter-spacing: .1em;
 padding: .3rem .9rem;
 border-radius: 3px;
 border: 1px solid var(--color-gold-dark);
 box-shadow: 0 2px 6px rgba(201,168,76,0.35);
 transition: all .2s;
 white-space: nowrap;
}
.utility-left a.call-now-btn:hover {
 background: linear-gradient(180deg,#d4af5a 0%,#b8922e 40%,#7a5018 80%,#b8922e 100%);
 box-shadow: 0 3px 10px rgba(201,168,76,0.55);
 transform: translateY(-1px);
 color: #111 !important;
}
.utility-pills { display: flex; gap: .5rem; flex-wrap: wrap; }
.upill { background: #1e1e1e; border: 1px solid #3a3a3a; border-radius: 20px; padding: .25rem .75rem; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #bbb; white-space: nowrap; }
.upill.chrome { background: linear-gradient(180deg,#2a2a2a,#1a1a1a); border-color: #555; color: #ccc; }
@media (max-width: 700px) { .utility-bar { display: none; } }

/* ===========================
 NEW NAV HEADER (shared)
 =========================== */
.site-header-new {
 background: var(--color-black);
 position: sticky;
 top: 0;
 z-index: 200;
 border-bottom: 1px solid #222;
 box-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.header-new-inner {
 max-width: var(--max-width);
 margin: 0 auto;
 padding: .65rem 1.5rem;
 display: grid;
 grid-template-columns: 1fr auto 1fr;
 align-items: center;
 gap: 1rem;
}
.logo-new {
 grid-column: 2;
 display: flex;
 justify-content: center;
}
.logo-new img { height: 52px; width: auto; display: block; }
.nav-new-wrap {
 grid-column: 3;
 display: flex;
 justify-content: flex-end;
}
.nav-new { display: flex; align-items: center; gap: 1.75rem; }
.nav-new a { color: #bbb; font-size: .83rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; transition: color .2s; white-space: nowrap; }
.nav-new a:hover, .nav-new a.active { color: #fff; }
.nav-new .btn-quote { background: var(--chrome-btn); color: #111; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: .6rem 1.3rem; border-radius: 3px; border: 1px solid #999; box-shadow: var(--shadow-chrome); transition: all .2s; cursor: pointer; }
.nav-new .btn-quote:hover { background: var(--chrome-btn-hover); transform: translateY(-1px); }
.nav-new .btn-quote.active { color: #111; }

/* ── Services Dropdown ── */
.nav-dropdown {
 position: relative;
}
.nav-dropdown > a {
 display: flex;
 align-items: center;
 gap: .35rem;
}
.nav-dropdown > a::after {
 content: '▾';
 font-size: .65rem;
 color: #888;
 transition: transform .2s;
}
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after { transform: rotate(180deg); color: #fff; }
.dropdown-menu {
 display: none;
 position: absolute;
 top: calc(100% + .75rem);
 left: 50%;
 transform: translateX(-50%);
 background: #141414;
 border: 1px solid #2e2e2e;
 border-radius: 6px;
 width: 260px;
 padding: .6rem;
 z-index: 400;
 box-shadow: 0 8px 30px rgba(0,0,0,.7);
 display: none;
}
.dropdown-menu::before {
 content: '';
 position: absolute;
 top: -6px;
 left: 50%;
 transform: translateX(-50%);
 border-left: 6px solid transparent;
 border-right: 6px solid transparent;
 border-bottom: 6px solid #2e2e2e;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: flex; flex-direction: column; gap: 2px; }
.dropdown-menu a {
 display: flex;
 align-items: center;
 gap: .55rem;
 padding: .6rem .85rem;
 color: #aaa !important;
 font-size: .75rem !important;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: .06em;
 border-radius: 4px;
 transition: background .15s, color .15s;
 white-space: nowrap;
 text-decoration: none;
}
.dropdown-menu a:hover { background: #222; color: #fff !important; }
.dropdown-menu a .dm-icon { font-size: .95rem; flex-shrink: 0; }
.dropdown-divider { display: none; }
.dropdown-all { display: none; }

/* ===== SERVICE AREAS MEGA DROPDOWN ===== */
.dropdown-areas {
  width: 560px;
  left: 50%;
  transform: translateX(-50%);
}
.nav-dropdown:hover .dropdown-areas,
.nav-dropdown:focus-within .dropdown-areas {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr;
  flex-direction: unset;
  gap: 2px;
}

.menu-toggle-new { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.menu-toggle-new span { display: block; width: 24px; height: 2px; background: #ccc; margin: 5px 0; border-radius: 2px; transition: all .2s; }
@media (max-width: 900px) {
 .nav-new { display: none; }
 .menu-toggle-new { display: block; }
 .nav-new.open { display: flex; flex-direction: column; align-items: stretch; position: absolute; top: 100%; left: 0; right: 0; background: #111; padding: 1rem 1.5rem 1.5rem; border-bottom: 1px solid #333; gap: .75rem; z-index: 300; }
 .nav-new.open a { font-size: .95rem; padding: .5rem 0; border-bottom: 1px solid #222; }
 .nav-new.open .btn-quote { text-align: center; padding: .8rem; font-size: .85rem; }
 /* Mobile: show dropdown inline as single column */
 .dropdown-menu { display: grid !important; grid-template-columns: 1fr !important; position: static; transform: none; background: #0d0d0d; border: none; border-radius: 0; box-shadow: none; padding: 0 0 0 .75rem; width: auto; gap: 0; }
 .dropdown-menu::before { display: none; }
 .dropdown-menu a { font-size: .85rem !important; padding: .45rem .5rem; border-bottom: 1px solid #1a1a1a; border-radius: 0; }
 .dropdown-all, .dropdown-divider { display: none !important; }
 .nav-dropdown > a::after { display: none; }
}

/* Mobile sticky call bar (shared) */
.sticky-call { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--chrome-btn); z-index: 500; padding: .9rem; text-align: center; border-top: 2px solid #bbb; box-shadow: 0 -4px 16px rgba(0,0,0,.4); }
.sticky-call a { color: #111; font-weight: 900; font-size: 1rem; text-transform: uppercase; letter-spacing: .07em; display: flex; align-items: center; justify-content: center; gap: .5rem; }
@media (max-width: 600px) { .sticky-call { display: block; } body { padding-bottom: 56px; } }

/* ===========================
 HEADER (legacy, kept for compatibility)
 =========================== */
.site-header {
 background: var(--color-black);
 position: sticky;
 top: 0;
 z-index: 100;
 box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.header-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 padding-top: 0.75rem;
 padding-bottom: 0.75rem;
}
.logo img { height: 52px; width: auto; }
.logo-text-fallback {
 font-family: var(--font-heading);
 font-size: 1.1rem;
 font-weight: 900;
 text-transform: uppercase;
 color: var(--color-white);
 line-height: 1.15;
 letter-spacing: 0.02em;
}
.logo-text-fallback span { color: var(--color-silver); }

.main-nav {
 display: flex;
 align-items: center;
 gap: 1.75rem;
}
.main-nav a {
 color: #cccccc;
 font-size: 0.88rem;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.07em;
 transition: color var(--transition);
 padding-bottom: 2px;
 border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active { color: var(--color-silver); border-bottom-color: var(--color-silver); }

.header-phone a {
 background: var(--chrome-text);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 color: var(--color-silver); /* fallback */
 font-weight: 700;
 font-size: 1.05rem;
 letter-spacing: 0.02em;
 white-space: nowrap;
 transition: color var(--transition);
}
.header-phone a:hover { color: var(--color-white); }

.mobile-menu-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 0.5rem;
 flex-shrink: 0;
}
.mobile-menu-toggle span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--color-white);
 margin: 5px 0;
 transition: all var(--transition);
 border-radius: 2px;
}

/* ===========================
 HERO
 =========================== */
.hero {
 background: var(--color-black);
 color: var(--color-white);
 padding: 7rem 1.5rem;
 text-align: center;
 position: relative;
 overflow: hidden;
}
.hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background: radial-gradient(ellipse at 60% 40%, #1e1e1e 0%, #0D0D0D 70%);
 pointer-events: none;
}
.hero-content {
 position: relative;
 z-index: 1;
 max-width: 800px;
 margin: 0 auto;
}
.hero-eyebrow {
 display: inline-block;
 background: var(--color-steel);
 border: 1px solid var(--color-silver-dark);
 color: var(--color-silver);
 font-size: 0.75rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.12em;
 padding: 0.35rem 1.1rem;
 border-radius: 2px;
 margin-bottom: 1.5rem;
}
.hero h1 {
 font-family: var(--font-heading);
 font-size: clamp(2.4rem, 5.5vw, 3.8rem);
 font-weight: 900;
 text-transform: uppercase;
 line-height: 1.08;
 letter-spacing: -0.01em;
 margin-bottom: 1.25rem;
}
.hero h1 span {
 background: var(--chrome-text);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}
.hero p {
 font-size: 1.15rem;
 color: #bbbbbb;
 margin-bottom: 2.5rem;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
 line-height: 1.7;
}
.hero-cta {
 display: flex;
 gap: 1rem;
 justify-content: center;
 flex-wrap: wrap;
}

/* ===========================
 TRUST BAR
 =========================== */
.trust-bar { background: var(--color-charcoal); border-top: 1px solid #333; border-bottom: 1px solid #333; padding: 0.8rem 1.5rem; }
.trust-bar-inner {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 2rem;
 flex-wrap: wrap;
}
.trust-item {
 display: flex;
 align-items: center;
 gap: 0.4rem;
 font-size: 0.82rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.07em;
 color: var(--color-silver);
}
.trust-item::before { content: ''; font-weight: 900; font-size: 0.9rem; color: var(--color-silver); }

/* ===========================
 SECTION SHARED STYLES
 =========================== */
section { padding: 5.5rem 1.5rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
 display: inline-block;
 font-size: 0.72rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.18em;
 color: var(--color-silver);
 margin-bottom: 0.6rem;
}
.section-header h2 {
 font-family: var(--font-heading);
 font-size: clamp(1.9rem, 3.5vw, 2.6rem);
 font-weight: 900;
 text-transform: uppercase;
 line-height: 1.1;
 color: var(--color-black);
}
.section-header.light h2 { color: var(--color-white); }
.section-header p {
 margin-top: 0.8rem;
 color: var(--color-gray-mid);
 font-size: 1.05rem;
 max-width: 580px;
 margin-left: auto;
 margin-right: auto;
 line-height: 1.7;
}
.section-header.light p { color: #aaaaaa; }

/* ===========================
 SERVICES SECTION
 =========================== */
.services { background: var(--color-white); }
.services-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 1.5rem;
}
.service-card {
 background: var(--color-gray-light);
 border-top: none;
 padding: 2.25rem 2rem;
 border-radius: var(--radius);
 transition: transform var(--transition), box-shadow var(--transition);
 position: relative;
}
.service-card::before {
 content: '';
 position: absolute;
 top: 0; left: 0; right: 0;
 height: 4px;
 border-radius: var(--radius) var(--radius) 0 0;
 background: var(--chrome-stripe);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.service-card h3 {
 font-family: var(--font-heading);
 font-size: 1.05rem;
 font-weight: 900;
 text-transform: uppercase;
 margin-bottom: 0.75rem;
 letter-spacing: 0.02em;
}
.service-card p { color: var(--color-gray-dark); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; }
.service-link {
 font-size: 0.82rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.07em;
 color: var(--color-black);
 border-bottom: 2px solid var(--color-silver);
 padding-bottom: 1px;
 transition: color var(--transition), border-color var(--transition);
}
.service-link:hover { color: var(--color-gray-dark); }

/* ===========================
 SERVICES PAGE (services.html)
 =========================== */
/* ===== SERVICES SQUARE CARD GRID ===== */
.services-full-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 1.5rem;
 margin-top: 2.5rem;
}
.service-card-full {
 display: flex;
 flex-direction: column;
 background: #fff;
 border: 1px solid #e4e4e4;
 border-radius: 6px;
 padding: 2rem 1.75rem 1.75rem;
 box-shadow: 0 2px 12px rgba(0,0,0,0.06);
 transition: box-shadow 0.2s, transform 0.2s;
 position: relative;
 overflow: hidden;
}
.service-card-full::before {
 content: '';
 position: absolute;
 top: 0; left: 0; right: 0;
 height: 3px;
 background: linear-gradient(90deg, #888 0%, #fff 50%, #888 100%);
}
.service-card-full:hover {
 box-shadow: 0 6px 28px rgba(0,0,0,0.13);
 transform: translateY(-3px);
}
.service-card-icon {
 width: 52px;
 height: 52px;
 display: flex;
 align-items: center;
 justify-content: center;
 background: var(--color-black);
 border-radius: 10px;
 margin-bottom: 1.25rem;
 flex-shrink: 0;
}
.service-card-icon svg {
 width: 28px;
 height: 28px;
 stroke: #bbb;
 fill: none;
 stroke-width: 1.75;
 stroke-linecap: round;
 stroke-linejoin: round;
}
.service-card-body {
 display: flex;
 flex-direction: column;
 flex: 1;
}
.service-card-body h2 {
 font-family: var(--font-heading);
 font-size: 1.05rem;
 font-weight: 900;
 text-transform: uppercase;
 margin-bottom: 0.6rem;
 line-height: 1.2;
 color: var(--color-black);
}
.service-card-body p {
 color: #555;
 font-size: 0.88rem;
 line-height: 1.65;
 margin-bottom: 1rem;
 flex: 1;
}
.service-features {
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 0.3rem;
 margin-bottom: 1.4rem;
}
.service-features li {
 font-size: 0.82rem;
 color: #555;
 padding-left: 1rem;
 position: relative;
 line-height: 1.45;
}
.service-features li::before {
 content: '→';
 position: absolute;
 left: 0;
 background: var(--chrome-text);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 font-weight: 700;
}
.service-card-full .btn {
 margin-top: auto;
 align-self: flex-start;
 font-size: 0.8rem;
 padding: 0.55rem 1.1rem;
}

/* Page Hero (shared inner pages) */
.page-hero {
 background: var(--color-black);
 color: var(--color-white);
 padding: 4.5rem 1.5rem;
 text-align: center;
 position: relative;
}
.page-hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background: radial-gradient(ellipse at 50% 60%, #1e1e1e 0%, #0D0D0D 70%);
 pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .hero-eyebrow {
 display: inline-block;
 background: var(--color-steel);
 border: 1px solid #666;
 color: var(--color-silver);
 font-size: 0.75rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.12em;
 padding: 0.35rem 1.1rem;
 border-radius: 2px;
 margin-bottom: 1.25rem;
}
.page-hero h1 {
 font-family: var(--font-heading);
 font-size: clamp(2rem, 4vw, 3rem);
 font-weight: 900;
 text-transform: uppercase;
 line-height: 1.1;
 margin-bottom: 0.75rem;
}
.page-hero h1 span {
 background: var(--chrome-text);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}
.page-hero p {
 font-size: 1.1rem;
 color: #bbbbbb;
 max-width: 580px;
 margin: 0 auto;
 line-height: 1.7;
}

/* CTA section btn-outline-silver */
.btn-outline-silver {
 display: inline-block;
 padding: 0.9rem 2rem;
 font-size: 0.95rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.06em;
 border-radius: var(--radius);
 border: 2px solid var(--color-silver);
 color: var(--color-silver);
 background: transparent;
 transition: all var(--transition);
}
.btn-outline-silver:hover {
 background: var(--chrome-btn);
 color: var(--color-black);
 border-color: transparent;
}

@media (max-width: 900px) {
 .services-full-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}
@media (max-width: 580px) {
 .services-full-grid {
 grid-template-columns: 1fr;
 }
 .service-card-full {
 padding: 1.5rem 1.25rem;
 }
 .service-card-icon { text-align: left; }
}

/* ===========================
 WHY CHOOSE US
 =========================== */
.why-us { background: var(--color-black); color: var(--color-white); }
.why-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 2.5rem;
}
.why-item { text-align: center; }
.why-number {
 font-family: var(--font-heading);
 font-size: 3rem;
 font-weight: 900;
 background: var(--chrome-text);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 line-height: 1;
 margin-bottom: 0.6rem;
}
.why-item h3 {
 font-size: 0.95rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.06em;
 margin-bottom: 0.5rem;
 color: var(--color-white);
}
.why-item p { color: #999999; font-size: 0.9rem; line-height: 1.65; }

/* ===========================
 REVIEWS
 =========================== */
.reviews { background: var(--color-gray-light); }
.reviews-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 1.5rem;
}
.review-card {
 background: var(--color-white);
 padding: 1.75rem;
 border-radius: var(--radius);
 box-shadow: var(--shadow-card);
 border-left: none;
 position: relative;
}
.review-card::before {
 content: '';
 position: absolute;
 top: 0; left: 0; bottom: 0;
 width: 4px;
 border-radius: var(--radius) 0 0 var(--radius);
 background: linear-gradient(180deg, #555 0%, #f0f0f0 30%, #ffffff 50%, #d0d0d0 70%, #555 100%);
}
.stars { color: var(--color-silver); font-size: 1.1rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.review-text {
 color: var(--color-gray-dark);
 font-size: 0.95rem;
 line-height: 1.75;
 margin-bottom: 1rem;
 font-style: italic;
}
.reviewer { font-weight: 700; font-size: 0.9rem; color: var(--color-black); }
.reviewer span { font-weight: 400; color: var(--color-gray-mid); font-size: 0.85rem; }
.google-badge {
 display: flex;
 align-items: center;
 gap: 0.3rem;
 margin-top: 0.6rem;
 font-size: 0.75rem;
 color: var(--color-gray-mid);
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.06em;
}

/* ===========================
 CTA SECTION
 =========================== */
.cta-section {
 background: var(--color-steel);
 border-top: 1px solid #3a3a3a;
 padding: 5rem 1.5rem;
 text-align: center;
}
.cta-section h2 {
 font-family: var(--font-heading);
 font-size: clamp(1.9rem, 3.5vw, 2.6rem);
 font-weight: 900;
 text-transform: uppercase;
 color: var(--color-white);
 margin-bottom: 0.75rem;
 line-height: 1.1;
}
.cta-section p { color: #aaaaaa; font-size: 1.1rem; margin-bottom: 2rem; }
.cta-phone {
 display: inline-block;
 font-size: 1.6rem;
 font-weight: 700;
 color: var(--color-silver);
 margin-top: 1.25rem;
 transition: color var(--transition);
}
.cta-phone:hover { color: var(--color-white); }

/* ===========================
 PAGE HERO (inner pages)
 =========================== */
.page-hero {
 background: var(--color-black);
 color: var(--color-white);
 padding: 4rem 1.5rem;
 text-align: center;
}
.page-hero h1 {
 font-family: var(--font-heading);
 font-size: clamp(2rem, 4vw, 3rem);
 font-weight: 900;
 text-transform: uppercase;
 line-height: 1.1;
 margin-bottom: 0.75rem;
}
.page-hero h1 span { color: var(--color-silver); }
.page-hero p { font-size: 1.1rem; color: #bbbbbb; max-width: 560px; margin: 0 auto; }

/* ===========================
 CONTACT FORM
 =========================== */
.contact-section { background: var(--color-white); }
.contact-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 4rem;
 align-items: start;
}
.contact-info h3 {
 font-family: var(--font-heading);
 font-size: 1.3rem;
 font-weight: 900;
 text-transform: uppercase;
 margin-bottom: 1.5rem;
}
.contact-info-item {
 display: flex;
 gap: 1rem;
 margin-bottom: 1.25rem;
 align-items: flex-start;
}
.contact-info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-info-item p { font-size: 0.95rem; color: var(--color-gray-dark); line-height: 1.6; }
.contact-info-item a { color: var(--color-black); font-weight: 600; }
.contact-info-item a:hover { color: var(--color-silver-dark); }

/* Form styles */
.quote-form { background: var(--color-gray-light); padding: 2.5rem; border-radius: var(--radius); }
.quote-form h3 {
 font-family: var(--font-heading);
 font-size: 1.2rem;
 font-weight: 900;
 text-transform: uppercase;
 margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
 display: block;
 font-size: 0.85rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.06em;
 margin-bottom: 0.4rem;
 color: var(--color-gray-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
 width: 100%;
 padding: 0.75rem 1rem;
 font-family: var(--font-body);
 font-size: 0.95rem;
 color: var(--color-black);
 background: var(--color-white);
 border: 2px solid #dddddd;
 border-radius: var(--radius);
 transition: border-color var(--transition);
 appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
 outline: none;
 border-color: var(--color-silver);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-error {
 display: none;
 font-size: 0.8rem;
 color: #cc0000;
 margin-top: 0.3rem;
 font-weight: 600;
}
.form-success {
 display: none;
 text-align: center;
 padding: 2rem;
}
.form-success h3 { font-family: var(--font-heading); font-size: 1.3rem; text-transform: uppercase; color: var(--color-black); margin-bottom: 0.75rem; }
.form-success p { color: var(--color-gray-dark); font-size: 0.95rem; line-height: 1.65; }
.form-note { font-size: 0.78rem; color: var(--color-gray-mid); margin-top: 0.5rem; font-style: italic; }

/* ===========================
 ABOUT PAGE
 =========================== */
.about-story { background: var(--color-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-photo-placeholder {
 background: var(--color-gray-light);
 border: 2px dashed #cccccc;
 border-radius: var(--radius);
 height: 380px;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 color: var(--color-gray-mid);
 font-size: 0.9rem;
 text-align: center;
 gap: 0.5rem;
}
.about-photo-placeholder span { font-size: 2.5rem; }
.about-text h2 {
 font-family: var(--font-heading);
 font-size: clamp(1.6rem, 3vw, 2.2rem);
 font-weight: 900;
 text-transform: uppercase;
 margin-bottom: 1.25rem;
 line-height: 1.15;
}
.about-text h2 span { color: var(--color-silver); }
.about-text p { color: var(--color-gray-dark); line-height: 1.75; margin-bottom: 1rem; font-size: 1rem; }

/* ===========================
 SERVICE PAGE (individual)
 =========================== */
.service-detail { background: var(--color-white); }
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
.service-detail-content h2 {
 font-family: var(--font-heading);
 font-size: 1.6rem;
 font-weight: 900;
 text-transform: uppercase;
 margin: 2rem 0 1rem;
 line-height: 1.15;
}
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content p { color: var(--color-gray-dark); line-height: 1.75; margin-bottom: 1rem; }
.service-detail-content ul { padding-left: 1.25rem; list-style: disc; }
.service-detail-content ul li { color: var(--color-gray-dark); line-height: 1.75; margin-bottom: 0.5rem; }
.service-sidebar {
 background: var(--color-black);
 color: var(--color-white);
 padding: 2rem;
 border-radius: var(--radius);
 position: sticky;
 top: 90px;
}
.service-sidebar h3 {
 font-family: var(--font-heading);
 font-size: 1.1rem;
 text-transform: uppercase;
 color: var(--color-silver);
 margin-bottom: 1rem;
}
.service-sidebar p { font-size: 0.9rem; color: #aaaaaa; line-height: 1.65; margin-bottom: 1.25rem; }
.service-sidebar .btn { width: 100%; text-align: center; margin-bottom: 0.75rem; }
.service-sidebar .sidebar-phone { display: block; text-align: center; color: var(--color-silver); font-size: 1.2rem; font-weight: 700; margin-top: 0.5rem; }

/* ===========================
 FOOTER
 =========================== */
.site-footer { background: #0D0D0D; color: #aaaaaa; padding: 4rem 1.5rem 2rem; }
.footer-inner {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 3rem;
 margin-bottom: 2.5rem;
 max-width: var(--max-width);
 margin-left: auto;
 margin-right: auto;
}
.footer-logo-text {
 font-family: var(--font-heading);
 font-size: 1.05rem;
 font-weight: 900;
 text-transform: uppercase;
 color: var(--color-white);
 margin-bottom: 0.75rem;
 line-height: 1.2;
}
.footer-logo-text span { color: var(--color-silver); }
.footer-tagline { font-size: 0.88rem; color: #777777; line-height: 1.7; }
.footer-col h4 {
 font-size: 0.75rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.12em;
 color: var(--color-white);
 margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a,
.footer-col p a { color: #888888; font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover,
.footer-col p a:hover { color: var(--color-silver); }
.footer-col p { font-size: 0.9rem; line-height: 1.85; color: #888888; }
.trust-badges-row {
 max-width: var(--max-width);
 margin: 0 auto 1.5rem;
 display: flex;
 align-items: center;
 gap: 2rem;
 flex-wrap: wrap;
 padding-bottom: 1.5rem;
 border-bottom: 1px solid #1a1a1a;
}
.trust-badge-label {
 font-size: .65rem;
 text-transform: uppercase;
 letter-spacing: .1em;
 color: #444;
 font-weight: 700;
 white-space: nowrap;
}
.trust-badge img { display: block; filter: brightness(0.85); transition: filter .2s; }
.trust-badge img:hover { filter: brightness(1.05); }
.trust-badge-chamber img { height: 60px; width: auto; }
.trust-badge-bbb img { height: 55px; width: auto; }

.footer-bottom {
 padding-top: 1.5rem;
 border-top: 1px solid #1e1e1e;
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 0.5rem;
 font-size: 0.8rem;
 color: #555555;
 max-width: var(--max-width);
 margin-left: auto;
 margin-right: auto;
}

/* ===========================
 UTILITY
 =========================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.photo-placeholder {
 background: var(--color-gray-light);
 border: 2px dashed #cccccc;
 border-radius: var(--radius);
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 color: var(--color-gray-mid);
 font-size: 0.85rem;
 text-align: center;
 gap: 0.5rem;
 padding: 2rem;
 min-height: 220px;
}
.photo-placeholder span { font-size: 2rem; }

/* ===========================
 MOBILE / RESPONSIVE
 =========================== */
@media (max-width: 900px) {
 .contact-grid,
 .about-grid,
 .service-detail-grid { grid-template-columns: 1fr; }
 .footer-inner { grid-template-columns: 1fr 1fr; }
 .service-sidebar { position: static; }
 .about-photo-placeholder { height: 260px; }
}

@media (max-width: 640px) {
 .main-nav {
 display: none;
 position: absolute;
 top: 100%;
 left: 0;
 right: 0;
 background: var(--color-black);
 flex-direction: column;
 gap: 0;
 padding: 0.5rem 0;
 box-shadow: 0 8px 20px rgba(0,0,0,0.4);
 }
 .main-nav.open { display: flex; }
 .main-nav a {
 padding: 0.9rem 1.5rem;
 border-bottom: 1px solid #1e1e1e;
 font-size: 0.95rem;
 }
 .main-nav a:last-child { border-bottom: none; }
 .mobile-menu-toggle { display: block; }

 .site-header { position: relative; }

 .hero { padding: 4.5rem 1.5rem; }
 .hero-cta { flex-direction: column; align-items: center; }
 .hero-cta .btn { width: 100%; max-width: 320px; text-align: center; }

 .trust-bar-inner { gap: 0.75rem; }
 .trust-item { font-size: 0.75rem; }

 section { padding: 4rem 1.5rem; }

 .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
 .footer-bottom { flex-direction: column; text-align: center; }

 .form-row { grid-template-columns: 1fr; }
 .quote-form { padding: 1.5rem; }
}

/* ============================================================
   GOLD ACCENT THEME
   ============================================================ */
:root {
 --color-gold:       #C9A84C;
 --color-gold-light: #E8C96A;
 --color-gold-dark:  #9A7028;
 --gold-gradient: linear-gradient(180deg, #E8C96A 0%, #C9A84C 35%, #9A7028 75%, #C9A84C 100%);
 --gold-shadow: 0 2px 10px rgba(201,168,76,0.45);
}

/* --- Nav gold Call Now button --- */
.nav-new a.btn-call-gold {
 background: var(--gold-gradient) !important;
 color: #111 !important;
 font-size: .78rem;
 font-weight: 900;
 text-transform: uppercase;
 letter-spacing: .1em;
 padding: .6rem 1.3rem;
 border-radius: 3px;
 border: 1px solid var(--color-gold-dark) !important;
 box-shadow: 0 2px 8px rgba(201,168,76,0.4), inset 0 1px 0 rgba(255,255,255,0.25) !important;
 white-space: nowrap;
 transition: all .2s;
 display: inline-flex;
 align-items: center;
 gap: .3rem;
}
.nav-new a.btn-call-gold:hover {
 background: linear-gradient(180deg,#d4af5a 0%,#b8922e 40%,#7a5018 80%,#b8922e 100%) !important;
 box-shadow: 0 4px 16px rgba(201,168,76,0.55) !important;
 color: #111 !important;
 transform: translateY(-1px);
}
@media (max-width: 900px) {
 .nav-new.open a.btn-call-gold { text-align: center; padding: .8rem; font-size: .85rem; }
}

/* --- Client Login nav link --- */
.nav-new a.nav-client-login {
 background: transparent;
 color: #7ab8f5;
 font-size: .78rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: .08em;
 padding: .45rem .9rem;
 border-radius: 20px;
 border: 1px solid #3a6a9a;
 white-space: nowrap;
 transition: all .2s;
}
.nav-new a.nav-client-login:hover {
 background: rgba(122,184,245,.12);
 border-color: #7ab8f5;
 color: #aad4ff;
}
@media (max-width: 900px) {
 .nav-new.open a.nav-client-login { text-align: center; padding: .7rem; font-size: .85rem; }
}

/* --- HCP booking button reset (so <button> looks like <a>) --- */
.nav-new button.hcp-button.btn-quote {
 font-family: var(--font-heading);
 font-size: .78rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: .1em;
 padding: .6rem 1.3rem;
 border-radius: 3px;
 border: 1px solid #999;
 cursor: pointer;
 line-height: 1;
 text-decoration: none;
 white-space: nowrap;
 display: inline-block;
}
@media (max-width: 860px) {
 .nav-new.open button.hcp-button.btn-quote { text-align: center; padding: .8rem; font-size: .85rem; width: 100%; }
}

/* --- Nav "Book Online / Free Estimate" button --- */
.nav-new .btn-quote {
 background: var(--gold-gradient) !important;
 color: #111 !important;
 border-color: var(--color-gold-dark) !important;
 box-shadow: 0 2px 8px rgba(201,168,76,0.4), inset 0 1px 0 rgba(255,255,255,0.25) !important;
}
.nav-new .btn-quote:hover {
 background: linear-gradient(180deg,#d4af5a 0%,#b8922e 40%,#7a5018 80%,#b8922e 100%) !important;
 box-shadow: 0 4px 16px rgba(201,168,76,0.55) !important;
 transform: translateY(-1px);
}

/* --- Sticky mobile call bar --- */
.sticky-call {
 background: var(--gold-gradient) !important;
 border-top: 2px solid var(--color-gold-dark) !important;
 box-shadow: 0 -4px 16px rgba(201,168,76,0.35) !important;
}
.sticky-call a { color: #111 !important; font-weight: 900 !important; }

/* --- Primary CTA buttons (Learn More, etc.) --- */
.btn-primary {
 background: var(--gold-gradient) !important;
 color: #111 !important;
 border-color: var(--color-gold-dark) !important;
 box-shadow: 0 2px 8px rgba(201,168,76,0.35), inset 0 1px 0 rgba(255,255,255,0.2) !important;
 text-shadow: none !important;
}
.btn-primary:hover {
 background: linear-gradient(180deg,#d4af5a 0%,#b8922e 40%,#7a5018 80%,#b8922e 100%) !important;
 box-shadow: 0 4px 14px rgba(201,168,76,0.5) !important;
}

/* --- Section labels (shared stylesheet) --- */
.section-label { color: var(--color-gold) !important; }

/* --- Footer column headings --- */
.footer-col h4  { color: var(--color-gold) !important; }
.footer-new h4  { color: var(--color-gold) !important; }
.footer-col ul li a:hover,
.footer-col p a:hover { color: var(--color-gold) !important; }
