/* ============================================
   SUMMIT ELECTRICAL — AREA PAGE STYLES
   ============================================ */

.area-hero {
  padding: 175px 0 72px;
  background: var(--navy-deeper);
  position: relative; overflow: hidden;
}
.area-hero::before {
  content:''; position:absolute; inset:0;
  background:url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1400&q=70') center/cover no-repeat;
  opacity:0.1;
}
.area-hero::after {
  content:''; position:absolute; bottom:-2px; left:0; right:0;
  height:56px; background:var(--white);
  clip-path:polygon(0 100%,100% 100%,100% 0); z-index:2;
}
.area-hero-inner { position:relative; z-index:1; max-width:700px; }

.ah-category { display:inline-flex; align-items:center; gap:7px; color:var(--gold); font-size:12px; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; margin-bottom:16px; animation:fadeUp 0.5s ease 0.1s both; }
.ah-category::before { content:''; display:block; width:18px; height:2px; background:var(--gold); border-radius:2px; }
.ah-headline { font-family:var(--font-display); font-size:clamp(30px,5vw,56px); font-weight:900; line-height:1.05; color:var(--white); margin-bottom:16px; animation:fadeUp 0.5s ease 0.2s both; }
.ah-headline .accent { color:var(--gold); }
.ah-sub { font-size:17px; line-height:1.7; color:rgba(255,255,255,0.78); max-width:560px; margin-bottom:26px; animation:fadeUp 0.5s ease 0.3s both; }
.ah-buttons { display:flex; flex-wrap:wrap; gap:12px; animation:fadeUp 0.5s ease 0.4s both; }
.ah-trust { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; animation:fadeUp 0.5s ease 0.5s both; }
.ah-trust-chip { display:flex; align-items:center; gap:5px; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.15); border-radius:var(--radius-full); padding:6px 14px; font-size:12px; font-weight:600; color:rgba(255,255,255,0.88); }

@keyframes fadeUp { from{opacity:0;transform:translateY(22px);} to{opacity:1;transform:translateY(0);} }

/* BODY */
.area-body { padding:72px 0 88px; background:var(--white); }
.area-layout { display:grid; grid-template-columns:1fr 320px; gap:48px; align-items:start; }

.area-main h2 { font-family:var(--font-display); font-size:clamp(22px,3vw,34px); font-weight:800; color:var(--navy); margin-bottom:14px; line-height:1.15; }
.area-main p  { font-size:15px; line-height:1.75; color:var(--gray-700); margin-bottom:16px; }
.area-main h3 { font-family:var(--font-display); font-size:21px; font-weight:700; color:var(--gray-900); margin:28px 0 12px; }

/* SERVICES OFFERED GRID */
.area-services-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:24px 0; }
.area-service-item { display:flex; align-items:center; gap:8px; padding:12px 14px; background:var(--gray-100); border-radius:var(--radius-md); font-size:13px; font-weight:600; color:var(--navy); text-decoration:none; transition:all var(--transition); border:1px solid transparent; }
.area-service-item:hover { background:var(--navy); color:var(--white); border-color:var(--navy); }
.area-service-item .asi-icon { font-size:16px; flex-shrink:0; }

/* SIDEBAR */
.area-sidebar { position:sticky; top:160px; display:flex; flex-direction:column; gap:20px; }

.sidebar-cta-card { background:var(--navy); border-radius:var(--radius-lg); padding:26px; text-align:center; }
.sidebar-cta-card h3 { font-family:var(--font-display); font-size:21px; font-weight:800; color:var(--white); margin-bottom:8px; }
.sidebar-cta-card p  { font-size:13px; color:rgba(255,255,255,0.7); line-height:1.6; margin-bottom:18px; }
.sidebar-phone { display:flex; align-items:center; justify-content:center; gap:8px; background:var(--red); color:var(--white); font-family:var(--font-display); font-size:22px; font-weight:800; padding:13px 20px; border-radius:var(--radius-full); text-decoration:none; box-shadow:0 4px 16px rgba(220,20,60,0.4); transition:all var(--transition); margin-bottom:10px; animation:callPulse 3s infinite; }
.sidebar-phone:hover { background:var(--red-dark); transform:translateY(-2px); animation:none; }
@keyframes callPulse { 0%,88%,100%{box-shadow:0 4px 16px rgba(220,20,60,0.4);} 94%{box-shadow:0 8px 28px rgba(220,20,60,0.65);transform:scale(1.02);} }
.sidebar-or { font-size:12px; color:rgba(255,255,255,0.5); margin:7px 0; }

.sidebar-trust { background:var(--gray-100); border-radius:var(--radius-lg); padding:20px; border:1px solid rgba(0,0,0,0.06); }
.sidebar-trust h4 { font-size:12px; font-weight:700; color:var(--gray-700); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:12px; }
.st-item { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--gray-700); margin-bottom:8px; }
.st-item:last-child { margin-bottom:0; }
.st-icon { color:var(--gold); font-size:13px; flex-shrink:0; }

.nearby-areas { background:var(--white); border-radius:var(--radius-lg); padding:20px; border:1px solid rgba(0,0,0,0.06); box-shadow:var(--shadow-sm); }
.nearby-areas h4 { font-size:12px; font-weight:700; color:var(--gray-700); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:12px; }
.nearby-list { display:flex; flex-direction:column; gap:6px; }
.nearby-link { font-size:13px; color:var(--navy); font-weight:500; text-decoration:none; padding:5px 0; border-bottom:1px solid rgba(0,0,0,0.05); transition:color 150ms ease; display:flex; align-items:center; gap:6px; }
.nearby-link:last-child { border-bottom:none; }
.nearby-link:hover { color:var(--red); }
.nearby-link::before { content:'→'; font-size:11px; color:var(--gold); }

/* AREA CTA BOTTOM */
.area-cta-bottom { padding:80px 0; background:var(--navy-deeper); text-align:center; position:relative; overflow:hidden; }
.area-cta-bottom::before { content:''; position:absolute; inset:0; background-image:repeating-linear-gradient(-45deg,transparent,transparent 40px,rgba(255,255,255,0.015) 40px,rgba(255,255,255,0.015) 41px); pointer-events:none; }
.acb-inner    { position:relative; z-index:1; }
.acb-headline { font-family:var(--font-display); font-size:clamp(26px,4vw,46px); font-weight:900; color:var(--white); margin-bottom:14px; }
.acb-sub      { font-size:16px; color:rgba(255,255,255,0.7); max-width:480px; margin:0 auto 26px; }
.acb-buttons  { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }

@media (max-width:1024px) {
  .area-layout { grid-template-columns:1fr; }
  .area-sidebar { position:static; }
  .area-services-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .area-hero { padding:150px 0 52px; }
  .area-services-grid { grid-template-columns:1fr; }
}
