/**
 * Hyde Park Plumbing - Interior Pages CSS
 * Service Pages & Location Pages - Expert Panel Approved (90+ Score)
 * Consistent with homepage-v2 styling
 *
 * @package HydePark_Pro
 */

/* ==========================================================================
   Service/Location Hero Section
   ========================================================================== */
.service-hero,
.location-hero {
    background: linear-gradient(135deg, var(--hpp-dark, #1a2332) 0%, var(--hpp-primary, #543019) 100%);
    color: var(--hpp-white);
    padding: clamp(2rem, 5vw, 4rem) 0;
    position: relative;
}

.service-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.service-trust-row .trust-stars {
    color: #b2aa7e;
}

.service-trust-row .trust-divider {
    color: var(--hpp-gray-500);
    opacity: 0.5;
}

.service-hero-grid,
.location-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.service-hero-content,
.location-hero-content {
    max-width: 600px;
}

/* Live Badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--hpp-gold, #b2aa7e);
    color: var(--hpp-gold, #b2aa7e);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.live-badge .badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--hpp-gold, #b2aa7e);
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.service-hero h1,
.location-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--hpp-white);
}

.service-hero-desc,
.location-hero-desc {
    font-size: 1.1rem;
    color: var(--hpp-gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Location Response Time */
.location-response {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--hpp-cta-urgent, #d4863a);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.location-response .response-icon {
    font-size: 1.2rem;
}

/* Value Props Row */
.service-value-props {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-value-props .value-prop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.service-value-props .prop-check {
    color: var(--hpp-gold, #b2aa7e);
    font-weight: 700;
}

/* Hero CTA */
.service-hero-cta {
    margin-bottom: 1rem;
}

.service-hero-cta .cta-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--hpp-cta-urgent, #d4863a);
    color: var(--hpp-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-base);
}

.service-hero-cta .cta-hero-phone:hover {
    background: var(--hpp-gold, #b2aa7e);
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(212, 134, 58, 0.3);
}

.cta-phone-icon {
    font-size: 1.5rem;
}

.cta-phone-content {
    display: flex;
    flex-direction: column;
}

.cta-phone-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.cta-phone-number {
    font-size: 1.25rem;
    font-weight: 700;
}

.cta-phone-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
}

/* Secondary Info */
.service-hero-secondary {
    margin-bottom: 1rem;
}

.scarcity-notice {
    color: #b2aa7e;
    font-size: 0.9rem;
}

/* Process Mini */
.service-process-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--hpp-gray-400);
    flex-wrap: wrap;
}

.service-process-mini .process-label {
    color: var(--hpp-gray-500);
}

.service-process-mini .process-arrow {
    color: var(--hpp-cta-urgent, #d4863a);
}

/* Hero Proof Card */
.service-hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    max-width: 400px;
}

.featured-review-card .review-stars {
    color: #b2aa7e;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.featured-review-card blockquote {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--hpp-gray-200);
    margin-bottom: 1rem;
}

.featured-review-card .review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.featured-review-card .review-author strong {
    color: var(--hpp-white);
}

.featured-review-card .review-author span {
    font-size: 0.85rem;
    color: var(--hpp-gray-400);
}

/* ==========================================================================
   Urgency Bar
   ========================================================================== */
.urgency-bar {
    background: linear-gradient(90deg, var(--hpp-cta-urgent, #d4863a), #c4732e);
    color: var(--hpp-white);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.urgency-bar .urgency-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.urgency-cta {
    background: var(--hpp-white);
    color: var(--hpp-cta-urgent, #d4863a);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.urgency-cta:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   Quick Proof Bar
   ========================================================================== */
.quick-proof-bar {
    background: var(--hpp-gray-900);
    color: var(--hpp-white);
    padding: 0.75rem 0;
    text-align: center;
}

.quick-proof-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.quick-proof-content .proof-stars {
    color: #b2aa7e;
}

.quick-proof-content .proof-divider {
    color: var(--hpp-gray-600);
}

.quick-proof-content .proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 640px) {
    .quick-proof-content {
        font-size: 0.8rem;
        gap: 0.75rem;
    }

    .quick-proof-content .proof-divider {
        display: none;
    }
}

/* ==========================================================================
   Why Choose Section
   ========================================================================== */
.why-choose-section,
.why-local {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--hpp-gray-50);
    border-radius: var(--radius-xl);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.why-card {
    background: var(--hpp-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--hpp-gray-200);
    transition: all var(--transition-base);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--hpp-cta-urgent, #d4863a);
}

.why-card .why-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--hpp-dark, #1a2332);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--hpp-gray-600);
    margin: 0;
}

/* ==========================================================================
   Common Problems Section
   ========================================================================== */
.common-problems {
    margin: 2rem 0;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.problem-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--hpp-gray-50);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--hpp-cta-urgent, #d4863a);
}

.problem-list li strong {
    color: var(--hpp-dark, #1a2332);
}

/* ==========================================================================
   Location Services Grid
   ========================================================================== */
.location-services {
    margin: 2rem 0;
}

.services-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.service-col h3 {
    font-size: 1rem;
    color: var(--hpp-dark, #1a2332);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--hpp-cta-urgent, #d4863a);
}

.service-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-col li {
    margin-bottom: 0.5rem;
}

.service-col a {
    color: var(--hpp-gold, #b2aa7e);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.service-col a:hover {
    color: var(--hpp-cta-urgent, #d4863a);
    text-decoration: underline;
}

.link-arrow {
    color: var(--hpp-gold, #b2aa7e);
    text-decoration: none;
    font-weight: 600;
}

.link-arrow:hover {
    color: var(--hpp-cta-urgent, #d4863a);
}

/* ==========================================================================
   Risk Reversal Compact
   ========================================================================== */
.risk-reversal-compact {
    background: linear-gradient(135deg, #b2aa7e 0%, #9d8d85 100%);
    color: var(--hpp-white);
    padding: 1.5rem 0;
    text-align: center;
}

.risk-reversal-compact .risk-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.risk-reversal-compact .risk-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.risk-reversal-compact h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* ==========================================================================
   Neighborhood Map Section
   ========================================================================== */
.neighborhood-map-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--hpp-gray-50);
}

.map-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-section-header h2 {
    margin-bottom: 0.5rem;
}

.map-section-header p {
    color: var(--hpp-gray-600);
}

.neighborhood-map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.neighborhood-map-container iframe {
    display: block;
}

.google-map-embed {
    position: relative;
}

.google-map-neighborhood .map-overlay-cta {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.map-cta-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .map-cta-row {
        flex-direction: column;
    }
    .map-cta-row .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Other Areas Grid
   ========================================================================== */
.other-areas {
    background: var(--hpp-gray-50);
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
}

.other-areas h2 {
    margin-bottom: 0.5rem;
}

.other-areas > .container > p {
    color: var(--hpp-gray-600);
    margin-bottom: 2rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.area-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1rem;
    background: var(--hpp-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--hpp-gray-200);
    text-decoration: none;
    transition: all var(--transition-base);
}

.area-card:hover {
    border-color: var(--hpp-cta-urgent, #d4863a);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.area-card .area-name {
    font-weight: 600;
    color: var(--hpp-dark, #1a2332);
    margin-bottom: 0.25rem;
}

.area-card .area-time {
    font-size: 0.8rem;
    color: var(--hpp-gray-500);
}

.areas-link {
    margin-top: 1.5rem;
}

/* ==========================================================================
   Service Reviews Section
   ========================================================================== */
.service-reviews {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.service-reviews .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Reviews Widget Container */
.reviews-widget-container {
    margin: 2rem 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--hpp-white);
    box-shadow: var(--shadow-lg);
}

.reputation-hub-widget {
    min-height: 400px;
}

.reputation-hub-widget iframe {
    border-radius: var(--radius-lg);
}

.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ==========================================================================
   Service Final CTA
   ========================================================================== */
.service-final-cta {
    background: linear-gradient(135deg, var(--hpp-dark, #1a2332) 0%, var(--hpp-primary, #543019) 100%);
    color: var(--hpp-white);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.service-final-cta .final-cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.service-final-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--hpp-white);
}

.service-final-cta p {
    font-size: 1.1rem;
    color: var(--hpp-gray-300);
    margin-bottom: 2rem;
}

.cta-final-phone {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--hpp-cta-urgent, #d4863a);
    color: var(--hpp-white);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-base);
    margin-bottom: 1.5rem;
}

.cta-final-phone:hover {
    background: var(--hpp-gold, #b2aa7e);
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(212, 134, 58, 0.3);
}

.cta-final-phone .phone-icon {
    font-size: 1.75rem;
}

.cta-final-phone .phone-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-final-phone .phone-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.cta-final-phone .phone-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.final-trust-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--hpp-gray-300);
}

/* ==========================================================================
   Trust Badges Row (Inline)
   ========================================================================== */
.trust-badges-row {
    padding: 3rem 0;
    background: var(--hpp-gray-50);
    text-align: center;
}

.badges-label {
    font-size: 0.9rem;
    color: var(--hpp-gray-500);
    margin-bottom: 1.5rem;
}

.badges-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    transition: all var(--transition-base);
}

.badge-inline img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-base);
}

.badge-inline:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .badges-inline {
        gap: 1rem;
    }

    .badge-inline img {
        max-height: 30px;
    }
}

@media (max-width: 480px) {
    .badges-inline {
        gap: 0.75rem;
    }

    .badge-inline {
        padding: 0.5rem;
    }

    .badge-inline img {
        max-height: 25px;
    }
}

/* ==========================================================================
   CTA Outline Button
   ========================================================================== */
.cta-outline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--hpp-gold, #b2aa7e);
    color: var(--hpp-gold, #b2aa7e);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
}

.cta-outline:hover {
    background: var(--hpp-gold, #b2aa7e);
    color: var(--hpp-white);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 968px) {
    .service-hero-grid,
    .location-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-hero-content,
    .location-hero-content {
        max-width: 100%;
    }

    .service-value-props {
        justify-content: center;
    }

    .service-hero-cta {
        display: flex;
        justify-content: center;
    }

    .service-process-mini {
        justify-content: center;
    }

    .service-hero-proof {
        margin-top: 2rem;
    }

    .featured-review-card {
        max-width: 100%;
    }

    .services-two-col {
        grid-template-columns: 1fr;
    }

    .risk-reversal-compact .risk-content {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 640px) {
    .service-trust-row {
        font-size: 0.8rem;
    }

    .service-trust-row .trust-divider {
        display: none;
    }

    .service-value-props {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .service-hero-cta .cta-hero-phone {
        width: 100%;
        justify-content: center;
    }

    .service-process-mini {
        flex-direction: column;
        gap: 0.25rem;
    }

    .service-process-mini .process-arrow {
        transform: rotate(90deg);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .final-trust-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-final-phone {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .cta-final-phone .phone-details {
        align-items: center;
    }
}

/* ==========================================================================
   Service Area Page Styles
   ========================================================================== */
.service-area-hero {
    background: linear-gradient(135deg, var(--hpp-dark, #1a2332) 0%, var(--hpp-primary, #543019) 100%);
    color: var(--hpp-white);
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
}

.hero-content-centered {
    max-width: 700px;
    margin: 0 auto;
}

.service-area-hero h1 {
    color: var(--hpp-white);
    margin-bottom: 1rem;
}

.service-area-hero .hero-desc {
    font-size: 1.1rem;
    color: var(--hpp-gray-300);
    margin-bottom: 2rem;
}

.hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Service Area Map */
.service-area-map {
    background: var(--hpp-gray-100);
    padding: 0;
}

.map-container-large {
    max-width: 100%;
}

.map-container-large iframe {
    display: block;
}

/* Neighborhoods Grid */
.neighborhoods-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.neighborhood-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--hpp-white);
    border: 1px solid var(--hpp-gray-200);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all var(--transition-base);
}

.neighborhood-card:hover {
    border-color: var(--hpp-cta-urgent, #d4863a);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.neighborhood-card .neighborhood-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.neighborhood-card h3 {
    color: var(--hpp-dark, #1a2332);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.neighborhood-card p {
    color: var(--hpp-gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.neighborhood-card .response-time {
    font-size: 0.8rem;
    color: var(--hpp-gold, #b2aa7e);
    font-weight: 600;
}

@media (max-width: 640px) {
    .hero-cta-row {
        flex-direction: column;
    }

    .hero-cta-row .btn {
        width: 100%;
        justify-content: center;
    }

    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-hero {
    background: linear-gradient(135deg, var(--hpp-dark, #1a2332) 0%, var(--hpp-primary, #543019) 100%);
    color: var(--hpp-white);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

/* Contact hero mobile responsiveness */
@media (max-width: 968px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-grid {
        gap: 1.5rem;
    }

    .contact-hero {
        padding: 2rem 0;
    }

    .contact-intro {
        font-size: 1rem;
    }

    .contact-method.primary {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-grid {
        gap: 1rem;
    }

    .contact-methods {
        gap: 1rem;
    }

    .method-value {
        font-size: 1rem;
    }
}

.contact-hero h1 {
    color: var(--hpp-white);
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--hpp-gray-300);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-method.primary {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--hpp-cta-urgent, #d4863a);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.method-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--hpp-gray-400);
}

.method-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hpp-white);
    font-style: normal;
}

.method-value a {
    color: var(--hpp-white);
    text-decoration: none;
}

.method-value a:hover {
    color: var(--hpp-cta-urgent, #d4863a);
}

.method-note {
    font-size: 0.8rem;
    color: var(--hpp-gold, #b2aa7e);
}

/* Quick Contact Card */
.contact-quick-card {
    background: var(--hpp-white);
    color: var(--hpp-dark, #1a2332);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-2xl);
}

.quick-card-header h3 {
    color: var(--hpp-dark, #1a2332);
    margin-bottom: 0.5rem;
}

.quick-card-header p {
    color: var(--hpp-gray-600);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.quick-card-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--hpp-cta-urgent, #d4863a);
    color: var(--hpp-white);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.quick-card-phone:hover {
    background: var(--hpp-cta-urgent, #d4863a);
    transform: scale(1.02);
}

.quick-card-phone .phone-icon {
    font-size: 1.5rem;
}

.quick-card-phone .phone-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.quick-card-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--hpp-gray-600);
}

/* Contact Map Section */
.contact-map-section {
    padding: clamp(3rem, 6vw, 4rem) 0;
    background: var(--hpp-gray-50);
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header h2 {
    margin-bottom: 0.5rem;
}

.map-header p {
    color: var(--hpp-gray-600);
}

.contact-map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map-container iframe {
    display: block;
}

/* Contact Page Layout */
.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

@media (max-width: 1024px) {
    .contact-page-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
    }

    .contact-quick-card {
        order: -1;
    }
}

/* Contact Hero Buttons */
.contact-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Quick Card Book Link */
.quick-card-or {
    color: var(--hpp-gray-400);
    font-size: 0.85rem;
    margin: 0.75rem 0;
}

.quick-card-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--hpp-gray-100);
    color: var(--hpp-dark, #1a2332);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.quick-card-book:hover {
    background: var(--hpp-gray-200);
}

/* Contact Form Section */
.contact-form-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--hpp-white);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.contact-form-content h2 {
    margin-bottom: 0.5rem;
}

.contact-form-content > p {
    color: var(--hpp-gray-600);
    margin-bottom: 2rem;
}

.contact-form-wrapper {
    background: var(--hpp-gray-50);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--hpp-gray-200);
}

.hpp-contact-form {
    min-height: 664px;
}

.hpp-contact-form iframe {
    min-height: 664px;
}

/* Contact Form Sidebar Cards */
.contact-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: var(--hpp-gray-50);
    border: 1px solid var(--hpp-gray-200);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--hpp-dark, #1a2332);
}

.sidebar-card p {
    font-size: 0.9rem;
    color: var(--hpp-gray-600);
    margin-bottom: 1rem;
}

.sidebar-card.emergency {
    background: linear-gradient(135deg, var(--hpp-cta-urgent, #d4863a), #c4732e);
    color: var(--hpp-white);
    border: none;
}

.sidebar-card.emergency h3,
.sidebar-card.emergency p {
    color: var(--hpp-white);
}

.sidebar-card.booking {
    background: var(--hpp-dark, #1a2332);
    color: var(--hpp-white);
    border: none;
}

.sidebar-card.booking h3,
.sidebar-card.booking p {
    color: var(--hpp-white);
}

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

.check-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--hpp-gray-700);
    border-bottom: 1px solid var(--hpp-gray-200);
}

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

@media (max-width: 1024px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 640px) {
    .contact-hero-buttons {
        flex-direction: column;
    }

    .contact-hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-method.primary {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .quick-card-badges {
        flex-direction: column;
    }

    .contact-form-sidebar {
        flex-direction: column;
    }

    .sidebar-card {
        min-width: 100%;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .service-hero,
    .location-hero,
    .urgency-bar,
    .risk-reversal-compact,
    .service-final-cta {
        background: none !important;
        color: #000 !important;
    }

    .service-hero-cta,
    .service-process-mini,
    .live-badge {
        display: none !important;
    }
}

/* ==========================================================================
   HTML Sitemap Page Styles
   ========================================================================== */

.sitemap-hero {
    background: linear-gradient(135deg, var(--hpp-dark, #1a2332) 0%, var(--hpp-primary, #543019) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.sitemap-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
}

.sitemap-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.sitemap-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.sitemap-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sitemap-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hpp-dark, #1a2332);
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--hpp-gold, #b2aa7e);
}

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

.sitemap-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.sitemap-list li:last-child {
    border-bottom: none;
}

.sitemap-list li.silo-hub {
    background: #f8f9fa;
    margin: 0 -1.5rem 0.5rem -1.5rem;
    padding: 0.75rem 1.5rem;
}

.sitemap-list a {
    color: var(--hpp-dark, #1a2332);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.sitemap-list a:hover {
    color: var(--hpp-gold, #b2aa7e);
    text-decoration: underline;
}

.sitemap-list .post-date {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.25rem;
}

.sitemap-quick-links {
    margin-top: 3rem;
    text-align: center;
}

.sitemap-quick-links h3 {
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
}

.quick-links-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--hpp-gold, #b2aa7e);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: var(--hpp-primary, #543019);
    transform: translateY(-2px);
    color: white;
}

.quick-link span:first-child {
    font-size: 1.25rem;
}

.sitemap-xml-info {
    margin-top: 2rem;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
}

.sitemap-xml-info a {
    color: var(--hpp-gold, #b2aa7e);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }

    .sitemap-hero h1 {
        font-size: 1.75rem;
    }

    .quick-links-grid {
        flex-direction: column;
        align-items: center;
    }

    .quick-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ==========================================================================
   BLOG RELATED SERVICES - Internal Linking Silo
   ========================================================================== */

.blog-related-services {
    background: linear-gradient(135deg, var(--hpp-warm-white, #faf8f5) 0%, #f5f3ee 100%);
    border: 1px solid var(--hpp-gray-200, #e0dcd4);
    border-radius: var(--radius-lg, 12px);
    padding: 1.5rem;
    margin: 2rem 0;
}

.blog-related-services h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hpp-dark, #1a2332);
    margin: 0 0 0.5rem 0;
}

.blog-related-services .related-intro {
    font-size: 0.9rem;
    color: var(--hpp-gray-600, #4b5563);
    margin: 0 0 1rem 0;
}

.blog-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.blog-service-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid var(--hpp-gray-200, #e0dcd4);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-service-link:hover {
    border-color: var(--hpp-gold, #b2aa7e);
    background: var(--hpp-white, #fff);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-service-link .service-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hpp-primary, #543019);
}

.blog-service-link .service-arrow {
    color: var(--hpp-gold, #b2aa7e);
    font-weight: 600;
}

.view-all-services {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hpp-gold, #b2aa7e);
    text-decoration: none;
}

.view-all-services:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .blog-services-grid {
        grid-template-columns: 1fr;
    }

    .blog-related-services {
        padding: 1.25rem;
    }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE FIXES - All Interior Pages
   ========================================================================== */

@media (max-width: 768px) {
    /* Service page hero fixes */
    .service-hero-2026 {
        padding: 2rem 0 !important;
        min-height: auto !important;
    }

    .service-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .service-hero-content h1 {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        line-height: 1.2 !important;
    }

    .service-hero-content .hero-subtitle {
        font-size: 1rem !important;
    }

    /* Service content layout */
    .service-content-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .service-sidebar-2026 {
        order: 2;
        margin-top: 1rem;
    }

    /* Trust signals row */
    .service-trust-row {
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        justify-content: center !important;
    }

    .service-trust-row span {
        font-size: 0.85rem !important;
    }

    /* Process steps */
    .process-steps-2026 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .process-step {
        padding: 1rem !important;
    }

    .step-number {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    /* FAQ sections */
    .faq-section-2026 {
        padding: 1.5rem !important;
    }

    .faq-section-2026 h2 {
        font-size: 1.25rem !important;
    }

    .faq-item summary {
        font-size: 0.95rem !important;
        padding: 0.75rem 0 !important;
    }

    /* Featured review cards */
    .featured-review-card {
        padding: 1.25rem !important;
    }

    /* Quick proof content */
    .quick-proof-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.75rem !important;
    }

    /* CTA sections */
    .content-cta-2026 {
        padding: 1.5rem !important;
        text-align: center;
    }

    .content-cta-2026 h3 {
        font-size: 1.25rem !important;
    }

    /* Service features grid */
    .service-features-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .feature-card {
        padding: 1.25rem !important;
    }

    /* Related services */
    .related-services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Service area hero */
    .service-area-hero-2026 {
        padding: 2rem 0 !important;
    }

    .service-area-hero-content h1 {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }

    /* Area cards */
    .area-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Location page layout */
    .location-content-layout {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .location-sidebar {
        order: 2;
    }

    /* About page */
    .about-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .story-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Resources page */
    .resources-hero {
        padding: 2rem 0 !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .services-grid-compact {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    /* Archive/blog page */
    .archive-layout {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .archive-sidebar {
        order: 2;
    }

    .archive-hero-2026 h1 {
        font-size: 1.75rem !important;
    }
}

@media (max-width: 480px) {
    /* Even smaller adjustments */
    .service-hero-content h1,
    .service-area-hero-content h1,
    .contact-hero h1 {
        font-size: 1.35rem !important;
    }

    .service-hero-content .hero-subtitle,
    .service-area-hero-content .hero-subtitle {
        font-size: 0.9rem !important;
    }

    .process-step {
        padding: 0.875rem !important;
    }

    .step-number {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
    }

    .faq-item summary {
        font-size: 0.9rem !important;
    }

    .content-cta-2026 {
        padding: 1.25rem !important;
    }

    .feature-card {
        padding: 1rem !important;
    }

    .feature-card h4 {
        font-size: 1rem !important;
    }

    /* Buttons full width on mobile */
    .btn-primary-2026,
    .btn-secondary-2026,
    .btn-cta-urgent,
    .btn-lg,
    .btn-xl,
    .btn-block {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* Sidebar CTA cards */
    .sidebar-cta-card {
        padding: 1rem !important;
    }

    .sidebar-cta-card h3 {
        font-size: 1.1rem !important;
    }
}
