:root {
  --pt-red: #b0161f;
  --pt-red-dark: #7a0f16;
  --pt-red-bright: #d81e2c;
  --pt-black: #0a0a0a;
  --pt-charcoal: #17181a;
  --pt-chrome: #c9ccd1;
  --pt-chrome-light: #eef0f3;
  --pt-ink: #101112;
  --pt-muted: #5b5d61;
  --pt-line: #dcdcdc;
  --pt-font: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --pt-font-condensed: "Oswald", "Arial Narrow", Arial, sans-serif;
}

body {
  color: var(--pt-ink);
  font-family: var(--pt-font);
  font-size: 16px;
  line-height: 26px;
}

button,
input,
textarea,
select {
  font-family: var(--pt-font);
}

section {
  padding-top: 64px;
  padding-bottom: 64px;
}

section.pt-band,
section.pt-dark-band {
  padding-top: 58px;
  padding-bottom: 58px;
}

p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--pt-font-condensed);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
  color: var(--pt-black);
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  line-height: 42px;
}

h3 {
  font-size: 26px;
  line-height: 32px;
}

h4 {
  font-size: 22px;
  line-height: 28px;
}

li {
  font-size: 16px;
  line-height: 26px;
}

.fs-20 {
  font-size: 18px !important;
  line-height: 28px !important;
}

.fs-19 {
  font-size: 17px !important;
  line-height: 28px !important;
}

.pt-card h3.fs-24,
.pt-area-card h3.fs-24 {
  font-size: 21px !important;
  line-height: 27px !important;
}

a {
  color: var(--pt-red);
}

.bg-base-color,
.btn-base-color {
  background-color: var(--pt-red) !important;
}

.btn-base-color {
  border-color: var(--pt-red) !important;
}

.btn-base-color:hover {
  background-color: var(--pt-red-dark) !important;
  border-color: var(--pt-red-dark) !important;
}

.text-base-color {
  color: var(--pt-red) !important;
}

.btn-base-color,
.btn-base-color:hover {
  color: #fff !important;
}

.btn-round-edge,
.border-radius-10px,
.border-radius-8px {
  border-radius: 4px !important;
}

.ls-minus-05px,
.ls-minus-1px,
.ls-minus-2px,
.ls-minus-3px,
.ls-minus-4px,
.ls-minus-5px,
.ls-minus-6px,
.ls-minus-7px,
.ls-minus-8px,
.ls-minus-9px,
.ls-minus-10px {
  letter-spacing: 0 !important;
}

.navbar-brand img {
  max-height: 68px;
  width: auto;
}

.navbar {
  min-height: 82px;
  background: #fff;
}

.navbar .container-fluid {
  align-items: center;
}

.header-top-bar {
  background: var(--pt-black) !important;
  border-bottom: 2px solid var(--pt-red);
}

.navbar .nav-link {
  color: var(--pt-ink);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--pt-red);
}

.navbar .dropdown-with-icon-style02 {
  position: relative;
}

.navbar .dropdown-with-icon-style02 > .dropdown-toggle {
  color: var(--pt-red);
  cursor: pointer;
}

.navbar .dropdown-menu {
  border: 1px solid var(--pt-line);
  border-top: 3px solid var(--pt-red);
  border-radius: 4px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .25);
  padding: 12px;
}

.navbar .dropdown-menu li a,
.navbar .dropdown-menu li a i {
  color: var(--pt-ink);
  font-weight: 700;
}

.navbar .dropdown-menu li a:hover,
.navbar .dropdown-menu li a:hover i {
  color: var(--pt-red);
}

@media (min-width: 992px) {
  .navbar .dropdown-with-icon-style02 > .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    min-width: 260px;
  }

  .navbar .dropdown-with-icon-style02:hover > .dropdown-menu,
  .navbar .dropdown-with-icon-style02:focus-within > .dropdown-menu,
  .navbar .dropdown-with-icon-style02 > .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 3px;
    line-height: 20px;
  }

  .navbar .dropdown-menu li a:hover {
    background: var(--pt-chrome-light);
  }
}

.pt-hero {
  min-height: 620px;
  margin-top: 136px;
  position: relative;
  background-position: center;
  background-size: cover;
}

@media (max-width: 767px) {
  .pt-hero {
    margin-top: 68px;
  }
}

.pt-hero-corvette {
  background-position: center 40% !important;
}

@media (max-width: 991px) {
  .pt-hero-corvette {
    background-position: center 30% !important;
  }
}

.pt-hero::before,
.pt-page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5,5,5,.95), rgba(20,4,5,.86) 45%, rgba(30,5,6,.55));
}

.pt-hero > .container,
.pt-page-title > .container {
  position: relative;
  z-index: 1;
}

.pt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.pt-eyebrow::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: var(--pt-red-bright);
}

/* Visible breadcrumb trail (mirrors BreadcrumbList schema) */
.pt-breadcrumb-bar {
  background: #f6f6f6;
  border-bottom: 1px solid #ececec;
  padding: 12px 0;
  margin-top: 129px;
}

@media (max-width: 767px) {
  .pt-breadcrumb-bar {
    margin-top: 68px;
  }
}

.pt-breadcrumb-bar ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.pt-breadcrumb-bar li {
  display: flex;
  align-items: center;
  color: #777;
}

.pt-breadcrumb-bar li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #bbb;
}

.pt-breadcrumb-bar a {
  color: #555;
  text-decoration: none;
}

.pt-breadcrumb-bar a:hover {
  color: var(--pt-red);
}

.pt-breadcrumb-bar li[aria-current="page"] {
  color: var(--pt-red);
  font-weight: 700;
}

/* Embedded service-area map */
.pt-area-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ececec;
  margin-bottom: 30px;
}

.pt-area-map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.pt-hero h1,
.pt-page-title h1 {
  color: #fff;
  max-width: 900px;
  font-size: 58px;
  line-height: 64px;
  text-transform: uppercase;
}

.pt-hero p,
.pt-page-title p {
  color: rgba(255,255,255,.9);
  max-width: 720px;
  font-size: 18px;
  line-height: 29px;
}

.btn-transparent-white-border {
  background: transparent;
  border: 2px solid #fff;
  color: #fff !important;
}

.btn-transparent-white-border:hover,
.btn-transparent-white-border:focus {
  background: #fff;
  border-color: #fff;
  color: var(--pt-ink, #1a1a1a) !important;
}

.pt-hero-form-card {
  background: #fff;
  border: 1px solid rgba(255,255,255,.35);
  border-top: 5px solid var(--pt-red);
  border-radius: 4px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .4);
  padding: 28px;
}

.pt-hero-form-card h2 {
  color: var(--pt-ink);
  font-size: 28px;
  line-height: 33px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.pt-hero-form-card .pt-form input,
.pt-hero-form-card .pt-form textarea {
  margin-bottom: 10px;
}

.pt-quick-form textarea {
  min-height: 92px;
}

.pt-page-title {
  position: relative;
  padding: 118px 0 72px;
  background-position: center;
  background-size: cover;
  background-color: var(--pt-black);
}

.pt-card {
  border: 1px solid var(--pt-line);
  border-radius: 4px;
  background: #fff;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
  transition: box-shadow .2s ease, transform .2s ease;
}

.pt-card:hover {
  box-shadow: 0 16px 34px rgba(0,0,0,.2);
  transform: translateY(-2px);
}

.pt-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pt-card-body {
  padding: 22px;
  border-top: 3px solid var(--pt-red);
}

.pt-home-service-list {
  display: grid;
  gap: 34px;
}

.pt-home-service-row {
  display: grid;
  grid-template-columns: minmax(260px, 38%) 1fr;
  align-items: center;
  gap: 42px;
  padding: 42px;
  background: #fff;
  border: 1px solid var(--pt-line);
  border-left: 5px solid var(--pt-red);
  border-radius: 4px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, .1);
}

.pt-home-service-image {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.pt-home-service-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.pt-home-service-content h3 {
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pt-home-service-content h3 a {
  color: var(--pt-ink);
}

.pt-home-service-content p {
  color: var(--pt-muted);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 24px;
  max-width: 760px;
}

.pt-home-service-link {
  color: var(--pt-red);
  font-size: 18px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pt-home-service-link i {
  font-size: 16px;
  margin-left: 8px;
}

.pt-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pt-check-list li {
  display: flex;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--pt-line);
}

.pt-check-list li:last-child {
  border-bottom: 0;
}

.pt-check-list i {
  color: var(--pt-red);
  margin-top: 4px;
}

.pt-band {
  background: linear-gradient(180deg, #f7f7f7 0%, #ececec 100%);
}

.pt-dark-band {
  background: linear-gradient(135deg, var(--pt-black), var(--pt-red-dark));
  color: #fff;
}

.pt-dark-band h2,
.pt-dark-band h3,
.pt-dark-band a,
.pt-dark-band p {
  color: #fff;
}

.pt-home-trust-strip {
  padding: 22px 0;
  background: var(--pt-black);
  border-top: 2px solid var(--pt-red);
  border-bottom: 2px solid var(--pt-red);
}

.pt-home-trust-item {
  display: flex;
  gap: 22px;
  padding: 18px 30px;
}

.pt-home-trust-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.15);
}

.pt-home-trust-icon {
  flex: 0 0 48px;
  color: var(--pt-red-bright);
  font-size: 34px;
  line-height: 1;
  padding-top: 4px;
}

.pt-home-trust-info h3 {
  color: #fff;
  font-size: 22px;
  line-height: 27px;
  margin-bottom: 8px;
}

.pt-home-trust-info p {
  color: var(--pt-chrome);
  margin-bottom: 14px;
}

.pt-home-trust-info a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pt-local-crew-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(0,0,0,.18);
}

.pt-local-crew-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}

.pt-local-crew-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--pt-line);
  font-weight: 600;
  color: var(--pt-ink);
}

.pt-local-crew-list li:last-child {
  border-bottom: none;
}

.pt-local-crew-list li i {
  color: var(--pt-red);
  font-size: 15px;
  margin-top: 4px;
  flex: 0 0 auto;
}

.pt-contact-panel {
  background: #fff;
  border: 1px solid var(--pt-line);
  border-top: 5px solid var(--pt-red);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
  padding: 26px;
}

.pt-contact-info-card {
  background: var(--pt-black);
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
  padding: 28px;
}

.pt-contact-info-card a {
  color: var(--pt-chrome-light);
}

.pt-contact-service-area {
  background: linear-gradient(180deg, #f7f7f7 0%, #ececec 100%);
}

.pt-contact-area-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.pt-contact-area-links a {
  display: block;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--pt-line);
  border-left: 4px solid var(--pt-red);
  border-radius: 4px;
  color: var(--pt-ink);
  font-weight: 800;
}

.pt-form input,
.pt-form textarea,
.pt-form select {
  width: 100%;
  border: 1px solid var(--pt-line);
  border-radius: 3px;
  padding: 12px 14px;
  margin-bottom: 12px;
  color: var(--pt-ink);
  background: #fff;
}

.pt-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23555'%3e%3cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
}

.pt-form select:focus {
  outline: none;
  border-color: var(--pt-red);
}

.pt-form select option {
  color: var(--pt-ink);
  background: #fff;
}

.pt-form textarea {
  min-height: 110px;
  resize: vertical;
}

.pt-form label.pt-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--pt-ink);
}

.pt-form label.pt-checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 2px 0 0;
}

.pt-full-contact-form textarea {
  min-height: 135px;
}

.pt-honeypot {
  position: absolute;
  left: -5000px;
}

.pt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pt-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.pt-service-main {
  min-width: 0;
}

.pt-service-block {
  padding: 42px 0;
  border-bottom: 1px solid var(--pt-line);
}

.pt-service-block:first-child {
  padding-top: 0;
}

.pt-service-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pt-service-block-band {
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  background: linear-gradient(180deg, #f7f7f7 0%, #ececec 100%);
  border-radius: 4px;
  border-bottom: 0;
}

.pt-service-block + .pt-service-block-band,
.pt-service-block-band + .pt-service-block {
  margin-top: 12px;
}

.pt-service-main .pt-style-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pt-style-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 34px;
}

.pt-style-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  height: 100%;
  text-align: center;
  box-shadow: none;
}

.pt-style-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: transparent;
  border-radius: 4px;
  border-bottom: 4px solid var(--pt-red);
  margin-bottom: 24px;
  display: block;
}

.pt-style-card h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: var(--pt-ink);
  margin: 0;
  text-transform: uppercase;
}

/* Pricing table */
.pt-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

.pt-pricing-table th,
.pt-pricing-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--pt-line);
  font-size: 16px;
}

.pt-pricing-table thead th {
  background: var(--pt-black);
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .5px;
}

.pt-pricing-table thead th.pt-col-platinum {
  background: var(--pt-red);
}

.pt-pricing-table tbody tr:nth-child(even) {
  background: #f7f7f7;
}

.pt-pricing-table td.pt-price-basic {
  font-weight: 700;
  color: var(--pt-ink);
}

.pt-pricing-table td.pt-price-platinum {
  font-weight: 800;
  color: var(--pt-red);
}

.pt-pricing-note {
  border-left: 4px solid var(--pt-red);
  padding: 14px 18px;
  background: #fff7f7;
  border-radius: 0 4px 4px 0;
  margin-top: 18px;
  font-size: 15px;
}

.pt-estimate-badge {
  display: inline-block;
  background: var(--pt-red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.pt-service-option-list {
  display: grid;
  gap: 26px;
}

.pt-service-option-card {
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
  align-items: center;
  gap: 34px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--pt-line);
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
}

.pt-service-option-image {
  overflow: hidden;
  border-radius: 4px;
  background: #f4f4f4;
}

.pt-service-option-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.pt-service-option-content h3 {
  color: var(--pt-ink);
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.pt-service-option-content p {
  color: var(--pt-muted);
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 0;
}

.pt-feature-benefit {
  border-left: 4px solid var(--pt-red);
  padding: 0 0 0 18px;
  margin-bottom: 18px;
}

.pt-feature-benefit h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 800;
  color: var(--pt-ink);
  margin-bottom: 8px;
  text-transform: none;
}

.pt-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pt-area-card {
  border: 1px solid var(--pt-line);
  border-top: 4px solid var(--pt-red);
  border-radius: 4px;
  padding: 22px;
  height: 100%;
  background: #fff;
}

.pt-area-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.pt-area-pill {
  display: block;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--pt-line);
  border-left: 4px solid var(--pt-red);
  border-radius: 4px;
  color: var(--pt-ink);
  font-weight: 800;
}

.pt-area-profile-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pt-area-profile-card {
  border: 1px solid var(--pt-line);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.pt-area-profile-card .row {
  margin: 0;
}

.pt-area-profile-img {
  min-height: 220px;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.pt-area-profile-body {
  padding: 26px 28px;
}

.pt-area-profile-body h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.pt-area-profile-body h3 a {
  color: var(--pt-ink);
}

.pt-area-profile-body h3 a:hover {
  color: var(--pt-red);
}

.pt-area-profile-body p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.pt-area-profile-body p strong {
  color: var(--pt-ink);
}

.pt-area-profile-body .pt-area-serving a {
  color: var(--pt-red);
  font-weight: 700;
  text-decoration: none;
}

.pt-area-profile-body .pt-area-serving a:hover {
  text-decoration: underline;
}

.pt-area-profile-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: var(--pt-red);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .pt-area-profile-img {
    min-height: 180px;
  }
}

.pt-area-pill:hover {
  color: var(--pt-red);
}

.pt-faq-list {
  display: grid;
  gap: 12px;
}

.pt-faq-item {
  border: 1px solid var(--pt-line);
  border-radius: 4px;
  background: #fff;
  padding: 18px 20px;
}

.pt-faq-item summary {
  cursor: pointer;
  list-style: none;
}

.pt-faq-item summary::-webkit-details-marker {
  display: none;
}

.pt-faq-item summary h3 {
  color: var(--pt-ink);
  font-size: 19px;
  line-height: 25px;
  font-weight: 800;
  margin: 0;
  padding-right: 28px;
  position: relative;
  text-transform: none;
}

.pt-faq-item summary h3::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--pt-red);
}

.pt-faq-item[open] summary h3::after {
  content: "-";
}

.pt-faq-item p {
  margin: 14px 0 0;
}

.pt-powered-by {
  text-align: center;
  font-family: Arial, sans-serif;
}

.pt-powered-by a {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
}

.pt-powered-label {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0;
  margin-right: 4px;
}

.pt-powered-fence,
.pt-powered-branders {
  font-family: "Acumin Pro", "bahnschrift-light", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.pt-powered-fence {
  color: #fff;
}

.pt-powered-branders {
  color: #89d631;
}

.pt-sticky-sidebar {
  position: sticky;
  top: 110px;
}

.pt-sidebar-column {
  align-self: flex-start;
}

.pt-side-card {
  border: 1px solid var(--pt-line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .1);
  margin-bottom: 18px;
  overflow: hidden;
}

.pt-side-card-body {
  padding: 20px;
}

.pt-side-card .pt-side-card-body > h3 {
  font-size: 22px !important;
  line-height: 28px !important;
  margin-bottom: 14px !important;
}

.pt-area-nav-title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: var(--pt-ink);
  margin-bottom: 14px;
}

.pt-area-nav details {
  border-bottom: 1px solid var(--pt-line);
}

.pt-area-nav > details:last-child,
.pt-area-nav > .pt-area-nav-plain:last-of-type {
  border-bottom: 0;
}

.pt-area-nav summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  padding: 10px 0;
}

.pt-area-nav summary::-webkit-details-marker {
  display: none;
}

.pt-area-nav summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  background: #f4e5e6;
  color: var(--pt-red);
  font-weight: 700;
}

.pt-area-nav details[open] summary::after {
  content: "-";
}

.pt-area-nav summary a {
  color: var(--pt-ink);
  font-weight: 700;
}

.pt-area-nav summary a:hover,
.pt-area-nav summary a.active,
.pt-area-nav .active {
  color: var(--pt-red);
}

.pt-area-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 0 12px 15px;
}

.pt-area-nav li {
  margin: 0;
}

.pt-area-nav li a {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 5px 0;
  color: var(--pt-muted);
  font-weight: 600;
}

.pt-area-nav li a:hover,
.pt-area-nav li a.active {
  color: var(--pt-red);
}

.pt-area-nav li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pt-red);
  opacity: .65;
  flex: 0 0 auto;
}

.pt-area-nav-plain {
  border-bottom: 1px solid var(--pt-line);
  padding: 10px 0;
}

.pt-area-nav-plain a {
  color: var(--pt-ink);
  font-weight: 700;
}

.pt-area-nav-plain a:hover,
.pt-area-nav-plain a.active {
  color: var(--pt-red);
}

.pt-side-cta {
  background: linear-gradient(135deg, var(--pt-black), var(--pt-red-dark));
  color: #fff;
}

.pt-side-cta h3,
.pt-side-cta p,
.pt-side-cta a {
  color: #fff;
}

.pt-footer-logo {
  max-width: 150px;
  border-radius: 4px;
}

.footer-dark {
  background: var(--pt-black);
}

.footer-dark h6 {
  color: #fff;
  text-transform: uppercase;
}

/* Discount badges */
.pt-discount-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pt-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pt-black);
  color: #fff;
  padding: 8px 14px;
  border-radius: 3px;
  border-left: 3px solid var(--pt-red-bright);
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 991px) {
  section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  section.pt-band,
  section.pt-dark-band {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .pt-home-trust-item {
    padding: 24px 10px;
  }

  .pt-home-trust-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .pt-hero {
    min-height: 520px;
  }

  .pt-hero-form-card {
    padding: 24px;
  }

  .pt-hero-form-card h2 {
    font-size: 24px;
    line-height: 29px;
  }

  .pt-hero h1,
  .pt-page-title h1 {
    font-size: 42px;
    line-height: 48px;
  }

  .pt-hero p,
  .pt-page-title p {
    font-size: 18px !important;
    line-height: 28px;
  }

  .pt-area-grid,
  .pt-gallery-grid,
  .pt-style-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .pt-sticky-sidebar {
    position: static;
    top: auto;
    margin-top: 35px;
  }

  .pt-service-main .pt-style-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pt-home-service-row {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px;
  }

  .pt-service-option-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .pt-contact-area-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .navbar {
    min-height: 68px;
  }

  .navbar-brand img {
    max-height: 54px;
  }

  .navbar-collapse {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-top: 2px solid var(--pt-red);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .2);
    z-index: 99;
  }

  .navbar .navbar-nav {
    padding: 12px 20px 18px;
  }

  .navbar .navbar-nav .nav-link {
    padding: 12px 0;
    line-height: 20px;
  }

  .navbar .navbar-nav .nav-item {
    border-bottom: 1px solid var(--pt-line);
  }

  .navbar .navbar-nav .nav-item:last-child {
    border-bottom: 0;
  }

  .navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    min-width: 0;
    border: 0;
    box-shadow: none;
    padding: 0 0 10px 12px;
    margin: 0;
    background: transparent;
  }

  .navbar .navbar-nav .pt-mobile-nav-phone .nav-link {
    color: var(--pt-red) !important;
    font-weight: 800;
  }

  .navbar .navbar-nav .pt-mobile-nav-phone .nav-link i {
    color: var(--pt-red) !important;
  }
}

@media (max-width: 767px) {
  .header-top-bar {
    display: block;
  }

  .header-top-bar .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-top-bar .row {
    height: 36px !important;
    min-height: 36px;
  }

  .header-top-bar .col-12 {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .navbar-brand img {
    max-height: 46px;
  }

  .pt-hero {
    min-height: auto;
    padding: 95px 0 58px;
  }

  .pt-page-title {
    padding: 92px 0 52px;
  }

  .pt-hero-form-card {
    margin-top: 8px;
    padding: 22px;
  }

  .pt-hero h1,
  .pt-page-title h1 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 16px !important;
  }

  .pt-hero p,
  .pt-page-title p {
    font-size: 16px !important;
    line-height: 25px;
  }

  .pt-hero .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 0 0 12px !important;
  }

  .pt-home-service-list {
    gap: 22px;
  }

  .pt-home-service-row {
    padding: 20px;
  }

  .pt-area-grid,
  .pt-gallery-grid,
  .pt-style-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pt-service-main .pt-style-grid {
    grid-template-columns: 1fr;
  }

  .pt-service-block-band {
    margin-left: 0;
    margin-right: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .pt-pricing-table th,
  .pt-pricing-table td {
    padding: 10px 10px;
    font-size: 14px;
  }

  .pt-footer-logo {
    max-width: 110px;
  }
}

/* Nav dropdown white background override for Litho demo conflicts */
.header-with-topbar .navbar.header-light .navbar-nav .dropdown.dropdown-with-icon-style02 > .dropdown-menu,
.header-with-topbar .navbar.header-light .navbar-nav .dropdown.dropdown-with-icon-style02 > .dropdown-menu.show {
  background: #fff !important;
  border-color: var(--pt-line) !important;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .2) !important;
}

.header-with-topbar .navbar.header-light .navbar-nav .dropdown.dropdown-with-icon-style02 > .dropdown-menu li > a,
.header-with-topbar .navbar.header-light .navbar-nav .dropdown.dropdown-with-icon-style02 > .dropdown-menu li > a:hover {
  background: transparent !important;
  color: var(--pt-ink) !important;
}

.header-with-topbar .navbar.header-light .navbar-nav .dropdown.dropdown-with-icon-style02 > .dropdown-menu li > a i,
.header-with-topbar .navbar.header-light .navbar-nav .dropdown.dropdown-with-icon-style02 > .dropdown-menu li > a:hover i {
  color: var(--pt-red) !important;
}

@media (max-width: 991px) {
  .header-with-topbar .navbar.header-light .navbar-collapse {
    background: #fff !important;
  }
}

/* Video testimonial component */
.pt-video-block {
  display: flex;
  gap: 30px;
  align-items: center;
  background: var(--pt-ink, #1a1a1a);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  border-left: 4px solid var(--pt-red);
}

@media (max-width: 767px) {
  .pt-video-block {
    flex-direction: column;
    padding: 20px;
  }
}

.pt-video-player-wrap {
  flex: 0 0 220px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: 390px;
  background: #000;
  cursor: pointer;
}

@media (max-width: 767px) {
  .pt-video-player-wrap {
    flex-basis: auto;
    width: 200px;
    margin: 0 auto;
  }
}

.pt-video-player-wrap.pt-video-landscape {
  aspect-ratio: 4 / 3;
  flex-basis: 320px;
  max-height: none;
}

@media (max-width: 767px) {
  .pt-video-player-wrap.pt-video-landscape {
    width: 100%;
  }
}

.pt-video-player-wrap video,
.pt-video-player-wrap img.pt-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pt-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pt-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
  transition: transform .2s ease, background .2s ease;
  z-index: 2;
}

.pt-video-player-wrap:hover .pt-video-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
}

.pt-video-play-btn::after {
  content: '';
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

.pt-video-play-btn.pt-video-playing {
  opacity: 0;
  pointer-events: none;
}

.pt-video-copy h3 {
  color: #fff;
  margin-bottom: 10px;
}

.pt-video-copy p {
  color: var(--pt-light-gray, #c7c7c7);
  margin-bottom: 0;
}

.pt-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.pt-video-badge i {
  color: var(--pt-red);
}

/* Generated-photo gallery grid (house washing / landscaping) */
.pt-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0 30px;
}

@media (max-width: 767px) {
  .pt-photo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pt-photo-grid figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.pt-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.pt-photo-grid figure:hover img {
  transform: scale(1.05);
}

.pt-illustrative-note {
  font-size: 13px;
  color: var(--pt-muted, #767676);
  font-style: italic;
  margin-top: -14px;
  margin-bottom: 26px;
}

/* Service Areas nav dropdown: county / city nesting */
.navbar .navbar-nav .dropdown .dropdown-menu li.pt-nav-area-county > a {
  font-weight: 700;
}

.navbar .navbar-nav .dropdown .dropdown-menu li.pt-nav-area-city > a {
  padding-left: 44px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  font-size: 13px;
  color: var(--pt-muted, #767676);
  background: rgba(23, 23, 23, 0.03);
}

.navbar .navbar-nav .dropdown .dropdown-menu li.pt-nav-area-city > a i {
  font-size: 11px;
  width: 18px;
}

/* Footer Service Areas list: county / city nesting */
.pt-footer-area-county > a {
  font-weight: 700;
  color: #fff;
}

.pt-footer-area-city > a {
  display: inline-block;
  padding-left: 16px;
  font-size: 14px;
}

/* ==========================================================================
   Service Areas nav: two-level hub -> city flyout (matches FPS Fence Pros pattern)
   ========================================================================== */
.navbar .pt-service-area-dropdown .pt-nav-area-group {
  padding: 4px 0 8px;
  border-bottom: 1px solid var(--pt-line);
}

.navbar .pt-service-area-dropdown i {
  display: none !important;
}

.pt-nav-area-toggle {
  display: none;
}

.navbar .pt-service-area-dropdown .pt-nav-area-group:last-child {
  border-bottom: 0;
}

.navbar .pt-service-area-dropdown .pt-nav-area-hub {
  font-weight: 800 !important;
  color: var(--pt-ink) !important;
}

.navbar .pt-nav-area-spokes {
  list-style: none;
  padding: 2px 0 0 30px;
  margin: 0;
}

.navbar .pt-nav-area-spokes li a {
  padding: 5px 0 !important;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600 !important;
  color: var(--pt-muted) !important;
}

.navbar .pt-nav-area-spokes li a:hover {
  color: var(--pt-red) !important;
}

@media (min-width: 992px) {
  .navbar .pt-service-area-dropdown {
    min-width: 250px;
    overflow: visible !important;
    padding: 8px 0;
  }

  .navbar .pt-service-area-dropdown .pt-nav-area-group {
    position: relative;
    padding: 0;
    border-bottom: 0;
  }

  .navbar .pt-service-area-dropdown > li > a {
    min-height: 0;
    padding: 9px 32px 9px 18px !important;
    gap: 0 !important;
    font-family: var(--pt-font) !important;
    font-size: 15px !important;
    line-height: 20px !important;
    font-weight: 700 !important;
  }

  .navbar .pt-service-area-dropdown .pt-nav-area-hub {
    padding-right: 32px !important;
  }

  .navbar .pt-service-area-dropdown .pt-nav-area-hub::after {
    content: ">";
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    position: absolute;
    right: 16px;
    color: var(--pt-muted);
  }

  .navbar .pt-nav-area-spokes {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    padding: 8px 0;
    background: #fff;
    border: 1px solid var(--pt-line);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(10, 10, 10, .14);
    z-index: 1001;
  }

  .navbar .pt-nav-area-group:hover > .pt-nav-area-spokes,
  .navbar .pt-nav-area-group:focus-within > .pt-nav-area-spokes {
    display: block;
  }

  .navbar .pt-nav-area-spokes li a {
    padding: 9px 18px !important;
    border-radius: 0;
    font-family: var(--pt-font) !important;
    font-size: 15px !important;
    line-height: 20px !important;
    font-weight: 700 !important;
    color: var(--pt-ink) !important;
  }
}

@media (max-width: 991.98px) {
  .navbar .pt-service-area-dropdown {
    min-width: 0;
    max-height: 58vh;
    overflow-y: auto;
    padding: 0 0 10px 12px;
  }

  .navbar .pt-service-area-dropdown .pt-nav-area-group {
    position: relative;
    padding: 7px 0 10px;
    border-bottom: 1px solid var(--pt-line);
  }

  .navbar .pt-service-area-dropdown .pt-nav-area-hub {
    display: block !important;
    padding: 6px 42px 6px 0 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 800 !important;
  }

  .navbar .pt-service-area-dropdown .pt-nav-area-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 5px;
    right: 0;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--pt-ink);
  }

  .navbar .pt-service-area-dropdown .pt-nav-area-toggle::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
  }

  .navbar .pt-service-area-dropdown .pt-nav-area-group.open .pt-nav-area-toggle::before {
    transform: rotate(225deg) translateY(-2px);
  }

  .navbar .pt-nav-area-spokes {
    display: none !important;
    position: static !important;
    min-width: 0 !important;
    padding-top: 3px;
    padding-left: 18px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .navbar .pt-nav-area-group.open > .pt-nav-area-spokes {
    display: block !important;
  }

  .navbar .pt-nav-area-spokes li a {
    padding: 4px 0 !important;
    font-size: 13px;
    line-height: 18px;
    font-weight: 600 !important;
    color: var(--pt-muted) !important;
  }
}
