﻿/* Custom styles that override or extend Tailwind can go here */
body {
    /* Smooth scrolling */
    scroll-behavior: smooth;
}

/* Capitalize service names and headings */
.capitalize-words {
    text-transform: capitalize;
}

/* Service cards - capitalize names */
.service-card h3,
.service-name,
h3.service-title {
    text-transform: capitalize;
}

/* General service list capitalization */
section h3 a,
section h3 span {
    text-transform: capitalize;
}

/* Location service grid items */
.grid a h3 {
    text-transform: capitalize;
}

/* Footer service list */
footer ul li a {
    text-transform: capitalize;
}

/* Break long words/zip codes */
.break-words {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Truncate text with ellipsis */
.truncate-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Multi-line truncation */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Neighborhood pills */
.neighborhood-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #f3f4f6;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #374151;
    margin: 0.25rem;
}

/* Footer */
.pp-footer {
    background: #080e24;
    color: #b5bacc;
    padding: 40px 16px 24px;
}
.pp-footer-inner { max-width: 1200px; margin: 0 auto; }
.pp-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px 24px;
    margin-bottom: 28px;
}
@media (min-width: 640px) {
    .pp-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .pp-footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}
.pp-footer-brand { margin-bottom: 8px; }
.pp-footer-brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.pp-footer-logo {
    flex-shrink: 0;
    line-height: 0;
}
.pp-footer-logo img {
    height: 40px;
    width: 40px;
    display: block;
    object-fit: contain;
    border-radius: 8px;
}
.pp-footer-site-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    line-height: 1.25;
    margin: 0;
}
.pp-footer-site-title:hover { color: var(--brand-accent, #ffc531); }
.pp-footer-brand-row:hover .pp-footer-site-title { color: var(--brand-accent, #ffc531); }
.pp-footer-tagline {
    font-size: 13px;
    line-height: 1.6;
    color: #878ea7;
    margin: 0;
    max-width: 280px;
}
.pp-footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pp-footer-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pp-footer-col-links li { margin-bottom: 8px; }
.pp-footer-col-links a {
    color: #b5bacc;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
}
.pp-footer-col-links a:hover { color: #fff; }
.pp-footer-view-all {
    font-weight: 700;
    color: var(--brand-accent, #ffc531) !important;
}
.pp-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.pp-footer-links { display: flex; flex-wrap: wrap; gap: 16px; list-style: none; padding: 0; margin: 0; }
.pp-footer-links a { color: #b5bacc; text-decoration: none; font-size: 14px; }
.pp-footer-links a:hover { color: #fff; }
.pp-footer-contact {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}
.pp-footer-contact li { margin-bottom: 10px; }
.pp-footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b5bacc;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
}
.pp-footer-contact a:hover { color: #fff; }
.pp-footer-contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--brand-accent, #ffc531);
}
.pp-footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b5bacc;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
}
.pp-footer-contact-link:hover { color: #fff; }
.pp-footer-company-list .pp-footer-list-divider {
    height: 1px;
    margin: 12px 0 10px;
    background: #212841;
    list-style: none;
}
.pp-footer-copyright {
    border-top: 1px solid #212841;
    padding-top: 20px;
    font-size: 12px;
    line-height: 1.6;
    color: #878ea7;
    text-align: center;
}
