/* ============================================================
   Portcullis Power Solutions - Area Pages Shared CSS
   File: /wp-content/uploads/portcullis-css/portcullis-area-pages.css
   ============================================================ */

/* ── Reset & Base ── */
.pp-wrap {
  font-family: Georgia, serif;
  color: #1a1a1a;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  margin-bottom: 60px;
}
.pp-wrap * {
  box-sizing: border-box;
}
.pp-wrap a {
  color: #cc0000;
  text-decoration: none;
}
.pp-wrap a:hover {
  text-decoration: underline;
}

/* ── Hero ── */
.pp-hero {
  position: relative;
  line-height: 0;
}
.pp-hero img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  border-radius: 0 !important;
}
.pp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px 56px;
  box-sizing: border-box;
}
.pp-eyebrow {
  font-family: Arial, sans-serif;
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #cc0000;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #cc0000;
}
.pp-hero h1 {
  font-family: Arial, sans-serif;
  font-size: 2.8em;
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.1;
  max-width: 680px;
}
.pp-hero h1 em {
  color: #cc0000;
  font-style: normal;
}
.pp-hero-sub {
  font-family: Arial, sans-serif;
  font-size: 1.05em;
  color: rgba(255,255,255,0.82);
  margin: 0 0 28px 0;
  max-width: 540px;
  line-height: 1.6;
}
.pp-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.pp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.pp-trust-badge {
  font-family: Arial, sans-serif;
  font-size: 0.75em;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 7px;
}
.pp-trust-dot {
  width: 8px;
  height: 8px;
  background: #cc0000;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

/* ── Buttons ── */
.pp-btn-red,
.pp-wrap a.pp-btn-red,
.pp-landlord a.pp-btn-red,
.pp-cta a.pp-btn-red {
  display: inline-block;
  background: #cc0000;
  color: #ffffff !important;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.97em;
  text-decoration: none !important;
  padding: 15px 30px;
  border-radius: 4px;
  text-align: center;
}
.pp-btn-white,
.pp-wrap a.pp-btn-white,
.pp-landlord a.pp-btn-white,
.pp-cta a.pp-btn-white {
  display: inline-block;
  background: transparent;
  color: #ffffff !important;
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 0.97em;
  text-decoration: none !important;
  padding: 13px 28px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.65);
  text-align: center;
}
.pp-btn-red:hover,
.pp-btn-white:hover,
.pp-wrap a.pp-btn-red:hover,
.pp-wrap a.pp-btn-white:hover {
  text-decoration: none !important;
  opacity: 0.9;
  color: #ffffff !important;
}

/* ── Trust strip ── */
.pp-strip {
  background: #1a1a1a;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 68px;
}
.pp-strip-item {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.pp-strip-item:last-child { border-right: none; }
.pp-strip-val {
  font-family: Arial, sans-serif;
  font-size: 1em;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 3px;
}
.pp-strip-lbl {
  font-family: Arial, sans-serif;
  font-size: 0.68em;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: block;
}

/* ── Body wrapper ── */
.pp-body {
  padding: 0 52px;
  box-sizing: border-box;
}

/* ── Typography ── */
.pp-label {
  font-family: Arial, sans-serif;
  font-size: 0.68em;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cc0000;
  display: block;
  margin-bottom: 8px;
}
.pp-body h2 {
  font-family: Arial, sans-serif;
  font-size: 1.55em;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  line-height: 1.2;
}
.pp-body h2 span { color: #cc0000; }
.pp-body h3 {
  font-family: Arial, sans-serif;
  font-size: 1.05em;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}
.pp-body p {
  font-size: 1em;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}
.pp-rule {
  border: none;
  border-top: 1px solid #ebebeb;
  margin: 60px 0;
}
.pp-section {
  margin-bottom: 60px;
}

/* ── Two column layout ── */
.pp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.pp-two-col img {
  width: 100%;
  border-radius: 8px !important;
  display: block;
  box-shadow: 0 10px 36px rgba(0,0,0,0.12);
  will-change: auto !important;
}

/* ── Image placeholder ── */
.pp-img-placeholder {
  background: #f5f5f5;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  font-family: Arial, sans-serif;
  color: #bbb;
  font-size: 0.82em;
  line-height: 1.5;
}
.pp-img-placeholder strong {
  display: block;
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 6px;
}

/* ── Tick list ── */
.pp-tick-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}
.pp-tick-list li {
  font-family: Georgia, serif;
  font-size: 0.97em;
  color: #444;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  line-height: 1.55;
}
.pp-tick-list li:last-child { border-bottom: none; }
.pp-tick-list li .t {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: #cc0000;
  border-radius: 50%;
  display: inline-block;
}

/* ── Service cards ── */
.pp-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 16px;
}
.pp-service-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  background: #fff;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pp-service-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.pp-service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
  will-change: auto !important;
}
.pp-service-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pp-service-body h3 { margin-bottom: 6px; }
.pp-service-body p {
  font-size: 0.87em;
  color: #666;
  line-height: 1.6;
  margin: 0 0 14px 0;
  flex: 1;
}
.pp-service-link {
  font-family: Arial, sans-serif;
  font-size: 0.78em;
  font-weight: 700;
  color: #cc0000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.pp-service-link:hover { text-decoration: underline; }

/* ── Cost table ── */
.pp-costs {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-family: Arial, sans-serif;
  font-size: 0.9em;
}
.pp-costs thead tr {
  background: #1a1a1a;
  color: #fff;
}
.pp-costs thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.82em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pp-costs tbody tr {
  border-bottom: 1px solid #f0f0f0;
}
.pp-costs tbody tr:nth-child(even) {
  background: #fafafa;
}
.pp-costs tbody td {
  padding: 13px 18px;
  color: #444;
  line-height: 1.4;
}
.pp-costs tbody td:last-child {
  color: #cc0000;
  font-weight: 700;
}
.pp-costs-note {
  font-family: Arial, sans-serif;
  font-size: 0.8em;
  color: #999;
  font-style: italic;
  margin-top: -20px;
  margin-bottom: 32px;
}

/* ── Areas grid ── */
.pp-areas {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 40px 44px;
  margin-bottom: 60px;
}
.pp-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.pp-area {
  background: #fff;
  border-left: 3px solid #cc0000;
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  font-family: Arial, sans-serif;
  font-size: 0.85em;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.pp-area:hover {
  background: #cc0000;
  color: #fff;
  text-decoration: none;
}
.pp-area-plain {
  background: #fff;
  border-left: 3px solid #ddd;
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  font-family: Arial, sans-serif;
  font-size: 0.85em;
  font-weight: 700;
  color: #aaa;
  display: block;
  cursor: default;
}

/* ── Landlord dark band ── */
.pp-landlord {
  background: #1a1a1a;
  border-left: 6px solid #cc0000;
  border-radius: 8px;
  padding: 40px 44px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}
.pp-landlord h2 {
  color: #fff !important;
  font-size: 1.4em !important;
  margin-bottom: 12px !important;
}
.pp-landlord h2 span { color: #cc0000; }
.pp-landlord p {
  color: #aaa !important;
  font-size: 0.97em;
  margin-bottom: 10px;
}
.pp-landlord p a {
  color: #cc0000 !important;
}
.pp-landlord-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 190px;
}

/* ── Info callout box ── */
.pp-callout {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 60px;
  border-left: 4px solid #cc0000;
}
.pp-callout p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 0.95em;
  color: #555;
  line-height: 1.7;
}

/* ── FAQs ── */
.pp-faqs { margin-bottom: 60px; }
.pp-faq {
  border-bottom: 1px solid #ebebeb;
  padding: 22px 0;
}
.pp-faq:first-child { border-top: 1px solid #ebebeb; }
.pp-faq-q {
  font-family: Arial, sans-serif;
  font-size: 1em;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 9px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pp-faq-q .q-badge {
  background: #cc0000;
  color: #fff;
  font-size: 0.68em;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: Arial, sans-serif;
}
.pp-faq-a {
  font-size: 0.97em;
  color: #555;
  line-height: 1.75;
  margin: 0;
  padding-left: 28px;
}

/* ── CTA ── */
.pp-cta {
  background: #1a1a1a;
  border-left: 6px solid #cc0000;
  border-radius: 8px;
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}
.pp-cta h2 {
  color: #fff !important;
  font-size: 1.6em !important;
  margin: 0 0 10px 0 !important;
}
.pp-cta h2 span { color: #cc0000; }
.pp-cta p {
  color: #aaa !important;
  margin: 0 !important;
  line-height: 1.65;
}
.pp-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
}

/* ── Stats band ── */
.pp-stats {
  background: #cc0000;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 60px;
}
.pp-stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.pp-stat:last-child { border-right: none; }
.pp-stat-num {
  font-family: Arial, sans-serif;
  font-size: 2.2em;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.pp-stat-lbl {
  font-family: Arial, sans-serif;
  font-size: 0.78em;
  color: rgba(255,255,255,0.8);
  display: block;
  line-height: 1.3;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .pp-hero img { height: 480px; }
  .pp-eyebrow { display: none; }
  .pp-hero-overlay { padding: 0 22px 16px; justify-content: flex-end; }
  .pp-hero h1 { font-size: 1.6em; max-width: 100%; }
  .pp-hero-sub { max-width: 100%; font-size: 0.95em; }
  .pp-strip { grid-template-columns: repeat(2, 1fr); }
  .pp-body { padding: 0 20px; }
  .pp-services { grid-template-columns: 1fr; }
  .pp-two-col { grid-template-columns: 1fr; }
  .pp-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-landlord { grid-template-columns: 1fr; }
  .pp-cta { grid-template-columns: 1fr; }
  .pp-cta-btns { flex-direction: row; flex-wrap: wrap; }
  .pp-stats { grid-template-columns: repeat(2, 1fr); }
  #masthead,
  .site-header,
  .ast-primary-header-bar {
    background-color: #1a1a1a !important;
  }
}