/* ==========================================================================
   PREMIUM-2026.CSS
   Hyde Park Plumbing - Premium Component Styles
   Built on top of design-system-2026.css
   ========================================================================== */


/* ==========================================================================
   1. PROOF TICKER
   Social proof bar with scrolling stats
   ========================================================================== */

.proof-ticker-2026 {
    background: linear-gradient(135deg, var(--hpp-primary) 0%, #3d2211 100%);
    padding: 16px 0;
    overflow: clip;
    position: relative;
}

.ticker-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.ticker-item strong {
    font-family: var(--font-stat);
    font-weight: 700;
    color: var(--hpp-gold-light);
    font-size: 1.1rem;
}

.ticker-divider {
    color: var(--hpp-gold);
    opacity: 0.5;
}


/* ==========================================================================
   2. GALLERY SECTION
   Masonry-style image grid with hover overlays
   ========================================================================== */

.gallery-section-2026 {
    padding: var(--section-padding) 0;
    background: var(--hpp-gray-50);
}

.gallery-grid-2026 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* Gallery mobile responsiveness */
@media (max-width: 1024px) {
    .gallery-grid-2026 {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .gallery-grid-2026 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .gallery-grid-2026 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item {
        aspect-ratio: 16/10;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}


/* ==========================================================================
   3. PARTNERS SHOWCASE
   Brand logo strip with grayscale-to-color hover
   ========================================================================== */

/* Partners section - infinite scroll carousel */
.partners-section-2026 {
    padding: 40px 0 36px;
    background: var(--hpp-warm-white, #faf8f5);
    border-top: 1px solid var(--hpp-gray-200, #e0dcd4);
    border-bottom: 1px solid var(--hpp-gray-200, #e0dcd4);
    overflow: clip;
}

.partners-title {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--hpp-gray-400, #9ca3af);
    margin: 0 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.partners-carousel {
    position: relative;
    width: 100%;
    overflow: clip;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: partnerScroll 25s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes partnerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    opacity: 0.45;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    padding: 0.75rem 1rem;
    flex-shrink: 0;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08) translateY(-2px);
}

.partner-logo img {
    height: 42px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.partner-name {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--hpp-gray-400, #9ca3af);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.partner-logo:hover .partner-name {
    opacity: 1;
}


/* ==========================================================================
   4. PREMIUM HEADER ENHANCEMENTS
   Glassmorphism scroll effect and nav underline animations
   ========================================================================== */

/* Scrolled header: glass effect */
.site-header-2026.scrolled .header-main-2026,
.site-header-2026.is-scrolled .header-main-2026 {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Premium nav link underline animation */
.nav-menu-2026 > li > a,
.nav-menu-2026 > .menu-item > a {
    position: relative;
    padding-bottom: 4px;
}

.nav-menu-2026 > li > a::after,
.nav-menu-2026 > .menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--hpp-gold);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.nav-menu-2026 > li > a:hover::after,
.nav-menu-2026 > .menu-item > a:hover::after,
.nav-menu-2026 > li.current-menu-item > a::after,
.nav-menu-2026 > .menu-item.current-menu-item > a::after {
    width: 100%;
}


/* ==========================================================================
   5. PREMIUM FOOTER
   Dark gradient footer with gold accents
   ========================================================================== */

.site-footer-2026 {
    background: linear-gradient(180deg, #1a1714 0%, #0f0d0b 100%);
    position: relative;
}

.site-footer-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hpp-gold), transparent);
}

.footer-grid-2026 {
    padding-top: 80px;
    padding-bottom: 60px;
}

.footer-heading {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--hpp-gold);
    margin-bottom: 1.5rem;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-col ul li a:hover {
    color: var(--hpp-gold-light);
    padding-left: 4px;
}

.footer-bottom-2026 {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0 1rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-row-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-row-2 {
    text-align: center;
    padding-top: 0.75rem;
}

.footer-bottom-row-2 p {
    margin: 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.72rem;
}

/* Header "Find a Plumber Near Me" link */
.top-link-highlight {
    color: var(--hpp-gold, #b2aa7e) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    transition: color 0.3s;
}

.top-link-highlight:hover {
    color: #fff !important;
}

.top-link-highlight svg {
    flex-shrink: 0;
}

/* Footer "Find a Plumber Near You" link */
.footer-near-me {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--hpp-gold, #b2aa7e);
    border: 1px solid rgba(178, 170, 126, 0.3);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-near-me:hover {
    background: rgba(178, 170, 126, 0.15);
    border-color: var(--hpp-gold, #b2aa7e);
    color: #fff;
}

/* Footer bottom bar - social icons, legal links, license */
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.footer-social-icons a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
}

.footer-social-icons a:hover {
    color: var(--hpp-gold, #b2aa7e);
    transform: translateY(-2px);
}

.footer-legal-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.footer-legal-center a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.footer-legal-center .legal-sep {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.6rem;
}

.footer-license-text {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.72rem;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .footer-bottom-row-1 {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    .footer-legal-center {
        flex-wrap: wrap;
    }
    .footer-license-text {
        text-align: center;
    }
}


/* ==========================================================================
   6. PREMIUM SCROLL ANIMATIONS
   Intersection Observer driven reveal effects
   ========================================================================== */

[data-animate] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate="fade-up"] {
    transform: translateY(50px);
}

[data-animate="fade-left"] {
    transform: translateX(60px);
}

[data-animate="fade-right"] {
    transform: translateX(-60px);
}

[data-animate="fade-in"] {
    transform: none;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* ==========================================================================
   7. PREMIUM TRUST BAR
   Badge/logo strip with subtle gradient background
   ========================================================================== */

.trust-bar-2026 {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, var(--hpp-warm-white) 0%, #f5f2ec 100%);
    border-top: none;
    border-bottom: none;
    position: relative;
}

.trust-bar-2026::before,
.trust-bar-2026::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hpp-gray-300), transparent);
}

.trust-bar-2026::before { top: 0; }
.trust-bar-2026::after { bottom: 0; }

.trust-bar-label {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 2.5rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--hpp-gray-500);
    font-weight: 500;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.trust-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    opacity: 0.85;
    padding: 0.75rem;
}

.trust-logos a:hover {
    opacity: 1;
    transform: translateY(-4px) scale(1.05);
}

.trust-logos img {
    max-height: 100px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}


/* ==========================================================================
   8. PREMIUM EMERGENCY CTA
   High-impact call-to-action with pulsing ring animation
   ========================================================================== */

.emergency-cta-2026 {
    padding: 120px 0;
}

.emergency-content-2026 {
    position: relative;
    z-index: 2;
}

.emergency-content-2026 h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    font-family: var(--font-display);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.emergency-content-2026 p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.btn-emergency-2026 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--hpp-cta-urgent);
    color: white;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(212, 134, 58, 0.4);
}

.btn-emergency-2026::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--radius-xl) + 4px);
    border: 2px solid rgba(212, 134, 58, 0.3);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.15); opacity: 0; }
}

.btn-emergency-2026:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 134, 58, 0.5);
    background: var(--hpp-cta-urgent-hover);
}

.emergency-subtitle {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--hpp-gold-light);
    font-weight: 600;
}

.emergency-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}


/* ==========================================================================
   9. PREMIUM WHY CHOOSE SECTION
   Two-column feature list with image frame
   ========================================================================== */

.why-choose-2026 {
    padding: 100px 0;
    background: white;
}

.why-choose-grid-2026 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--hpp-gray-200);
    transition: all 0.3s ease;
}

.feature-item:hover {
    padding-left: 8px;
    border-color: var(--hpp-gold);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-check {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(178, 170, 126, 0.15), rgba(178, 170, 126, 0.08));
    border-radius: 50%;
    color: var(--hpp-gold);
}

.feature-content strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--hpp-primary);
    margin-bottom: 0.25rem;
}

.feature-content span {
    color: var(--hpp-gray-500);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Premium image frame */
.why-choose-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-choose-image::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 2px solid rgba(178, 170, 126, 0.3);
    border-radius: calc(var(--radius-2xl) - 8px);
    pointer-events: none;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* ==========================================================================
   10. PREMIUM STATS ROW
   Counter stats in a dark branded bar
   ========================================================================== */

.stats-row-2026 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 60px;
    padding: 48px;
    background: linear-gradient(135deg, var(--hpp-primary) 0%, #3d2211 100%);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.stat-card {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-family: var(--font-stat);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--hpp-gold-light);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}


/* ==========================================================================
   11. AREA CARDS
   Location cards with image backgrounds and hover effects
   ========================================================================== */

.areas-section-2026 {
    padding: 100px 0;
    background: var(--hpp-gray-50);
}

.areas-grid-2026 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.area-card-2026 {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.area-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.area-card-2026:hover .area-card-bg {
    transform: scale(1.08);
}

.area-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    transition: background 0.4s ease;
}

.area-card-2026:hover .area-card-overlay {
    background: linear-gradient(to top, rgba(84, 48, 25, 0.9) 0%, rgba(84, 48, 25, 0.2) 60%, transparent 100%);
}

.area-card-content {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
    width: 100%;
    text-align: left;
}

.area-card-content h3 {
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 0.25rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.area-time {
    color: var(--hpp-gold-light, #d4c88e);
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.area-card-2026:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}


/* ==========================================================================
   12. REVIEWS SECTION
   Google reviews integration with star display
   ========================================================================== */

.reviews-section-2026 {
    padding: 100px 0;
    background: white;
}

/* Fix white-on-white text: reviews has white bg but design-system sets white text */
.reviews-section-2026 h2,
.reviews-section-2026 .section-title-2026 {
    color: var(--hpp-primary, #5a3a1a);
}

.reviews-section-2026 .section-subtitle {
    color: var(--hpp-gray-500, #6b7280);
}

.reviews-section-2026 .reviews-summary span {
    color: var(--hpp-gray-600, #4b5563);
}

.reviews-section-2026 .section-tag {
    background: rgba(178, 170, 126, 0.15);
    color: var(--hpp-gold-dark, #8a7f5a);
}

/* Review card text on white background */
.reviews-section-2026 .review-card p,
.reviews-section-2026 .review-card {
    color: var(--hpp-gray-700, #374151);
}

.reviews-section-2026 .review-card strong {
    color: var(--hpp-primary, #5a3a1a);
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.stars-display {
    display: flex;
    gap: 3px;
}

.stars-display svg {
    filter: drop-shadow(0 1px 3px rgba(178, 170, 126, 0.4));
}

.reviews-widget-container {
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

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

.reviews-google-btn {
    background: white !important;
    color: var(--hpp-primary) !important;
    border: 2px solid var(--hpp-gray-200) !important;
    box-shadow: var(--shadow-md);
}

.reviews-google-btn:hover {
    border-color: var(--hpp-gold) !important;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}


/* ==========================================================================
   13. FAQ SECTION
   Accordion-style FAQ with details/summary
   ========================================================================== */

.homepage-faq-2026 {
    padding: 100px 0;
    background: var(--hpp-warm-white);
}

.faq-section-2026 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--hpp-gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item:hover {
    border-color: var(--hpp-gold);
}

.faq-item[open] {
    border-color: var(--hpp-gold);
    box-shadow: 0 4px 20px rgba(178, 170, 126, 0.12);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--hpp-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--hpp-gold);
    transition: transform 0.3s ease;
}

[open] .faq-question::after {
    content: '\2212';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--hpp-gray-500);
    line-height: 1.7;
    border-top: 1px solid var(--hpp-gray-200);
    margin-top: -0.5rem;
    padding-top: 1rem;
}


/* ==========================================================================
   14. PREFOOTER CTA
   Full-width dark CTA band above the footer
   ========================================================================== */

.prefooter-cta-2026 {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--hpp-primary) 0%, #2a1a0d 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prefooter-cta-2026::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(178, 170, 126, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.prefooter-content h2 {
    font-family: var(--font-display);
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.prefooter-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prefooter-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ==========================================================================
   15. FINAL CTA
   Background image closing CTA section
   ========================================================================== */

.final-cta-2026 {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-2026 .emergency-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.final-cta-2026 .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(84, 48, 25, 0.85) 0%, rgba(30, 18, 10, 0.9) 100%);
    z-index: 1;
}

.final-cta-2026 .container {
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: white;
    margin-bottom: 1rem;
}

.final-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.final-cta-trust-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.trust-icon-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-icon-item svg {
    color: var(--hpp-gold-light);
    stroke: var(--hpp-gold-light);
}

.final-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.final-cta-trust svg {
    color: var(--hpp-gold);
    stroke: var(--hpp-gold);
}

.final-cta-note {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}


/* ==========================================================================
   16. PREMIUM INTERIOR PAGES
   Hero backgrounds, story sections, premium cards
   ========================================================================== */

/* Interior hero with background image */
.about-hero-2026.hero-bg-image,
.contact-hero-2026.hero-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.about-hero-2026 .hero-overlay,
.contact-hero-2026 .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(84, 48, 25, 0.8) 0%, rgba(30, 18, 10, 0.85) 100%);
    z-index: 1;
}

.about-hero-2026 .container,
.contact-hero-2026 .container {
    position: relative;
    z-index: 2;
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Story section image */
.story-image-column {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-photo.premium-rounded {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-2xl);
}

/* Premium card enhancements */
.premium-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Premium stat cards */
.premium-stat {
    transition: transform 0.3s ease;
}

.premium-stat:hover {
    transform: scale(1.05);
}

/* Promise bar for contact page */
.promise-bar {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: var(--hpp-gray-50);
    border-radius: var(--radius-lg);
    margin-top: 1.5rem;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--hpp-gray-500);
}

.promise-item svg {
    color: var(--hpp-gold);
    stroke: var(--hpp-gold);
    flex-shrink: 0;
}

/* Gallery lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.is-active {
    opacity: 1;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-inner img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 1;
}


/* ==========================================================================
   17. RESPONSIVE - TABLET (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {

    /* Gallery: 2 columns */
    .gallery-grid-2026 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

    /* Stats: 2 columns */
    .stats-row-2026 {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px 24px;
        gap: 1.5rem;
    }
    .stat-card:not(:last-child)::after {
        display: none;
    }

    /* Areas: 2 columns */
    .areas-grid-2026 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .area-card-2026 {
        min-height: 220px;
    }

    /* Partners carousel: smaller on tablet */
    .partners-track {
        gap: 3rem;
    }
    .partner-logo img {
        height: 34px;
        max-width: 110px;
    }

    /* Ticker: smaller text */
    .ticker-content {
        font-size: 0.85rem;
        gap: 1rem;
    }
    .ticker-item strong {
        font-size: 1rem;
    }

    /* Why Choose: stack */
    .why-choose-grid-2026 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-choose-2026 {
        padding: 60px 0;
    }

    /* Emergency CTA */
    .emergency-cta-2026 {
        padding: 80px 0;
    }
    .btn-emergency-2026 {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    /* Trust bar */
    .trust-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        max-width: 700px;
    }
    .trust-logos img {
        max-height: 80px;
    }

    /* Reviews */
    .reviews-section-2026 {
        padding: 60px 0;
    }

    /* FAQ */
    .homepage-faq-2026 {
        padding: 60px 0;
    }

    /* Prefooter CTA */
    .prefooter-cta-2026 {
        padding: 60px 0;
    }

    /* Final CTA */
    .final-cta-2026 {
        padding: 80px 0;
    }
    .final-cta-trust-icons {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Interior heroes */
    .about-hero-2026.hero-bg-image,
    .contact-hero-2026.hero-bg-image {
        min-height: 300px;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    /* Story grid stack */
    .story-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* Promise bar */
    .promise-bar {
        flex-direction: column;
        gap: 1rem;
    }

    /* Footer */
    .footer-grid-2026 {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .footer-bottom-trust {
        flex-direction: column;
        gap: 0.75rem;
    }
}


/* ==========================================================================
   18. RESPONSIVE - MOBILE (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {

    /* Gallery: single column */
    .gallery-grid-2026 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .gallery-item.large {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    /* Stats: 2 columns tighter */
    .stats-row-2026 {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px 16px;
        gap: 1rem;
        border-radius: var(--radius-xl);
        margin-top: 40px;
    }
    .stat-number {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    .stat-label {
        font-size: 0.75rem;
    }

    /* Areas: single column */
    .areas-grid-2026 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .area-card-2026 {
        min-height: 200px;
    }

    /* Partners carousel: compact on mobile */
    .partners-section-2026 {
        padding: 24px 0 20px;
    }
    .partners-track {
        gap: 2.5rem;
        animation-duration: 18s;
    }
    .partner-logo img {
        height: 28px;
        max-width: 90px;
    }
    .partner-name {
        display: none;
    }
    .partners-heading {
        font-size: 1.25rem;
    }

    /* Ticker: natural wrap */
    .proof-ticker-2026 {
        padding: 12px 0;
    }
    .ticker-content {
        font-size: 0.8rem;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    .ticker-item strong {
        font-size: 0.9rem;
    }
    .ticker-divider {
        display: none;
    }

    /* Emergency CTA */
    .emergency-cta-2026 {
        padding: 60px 0;
    }
    .btn-emergency-2026 {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    /* Trust bar */
    .trust-bar-2026 {
        padding: 40px 0;
    }
    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 320px;
    }
    .trust-logos a {
        padding: 0.5rem;
    }
    .trust-logos img {
        max-height: 60px;
    }
    .trust-bar-label {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    /* Reviews */
    .reviews-section-2026 {
        padding: 50px 0;
    }
    .reviews-summary {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* FAQ */
    .homepage-faq-2026 {
        padding: 50px 0;
    }
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Prefooter CTA */
    .prefooter-cta-2026 {
        padding: 50px 0;
    }
    .prefooter-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Final CTA */
    .final-cta-2026 {
        padding: 60px 0;
    }
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .final-cta-trust-icons {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Interior heroes */
    .about-hero-2026.hero-bg-image,
    .contact-hero-2026.hero-bg-image {
        min-height: 250px;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Footer */
    .footer-grid-2026 {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    .footer-bottom-2026 {
        padding: 1.5rem 0;
        font-size: 0.75rem;
    }
}


/* ==========================================================================
   18b. SIDEBAR CTA FIX
   Constrain buttons and content within sidebar container
   ========================================================================== */
.sidebar-cta {
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.sidebar-cta .btn-primary-2026,
.sidebar-cta .btn-secondary-2026,
.sidebar-cta-card .btn-primary-2026,
.sidebar-cta-card .btn-secondary-2026 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center;
    white-space: nowrap;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.95rem;
}

/* ==========================================================================
   18c. CONTACT INFO CARD TEXT VISIBILITY
   Force dark text on light background info cards
   ========================================================================== */
/* Light info cards (non-highlight) */
.info-card:not(.highlight) {
    color: #333 !important;
}

.info-card:not(.highlight) h3 {
    color: #543019 !important;
}

.info-card:not(.highlight) p,
.info-card:not(.highlight) td,
.info-card:not(.highlight) li,
.info-card:not(.highlight) span,
.info-card:not(.highlight) a {
    color: #333 !important;
}

.info-card:not(.highlight) .hours-table td {
    color: #1a1a1a !important;
}

.info-card:not(.highlight) .hours-table td:last-child {
    font-weight: 600;
}

.info-card:not(.highlight) .emergency-note {
    color: #d4863a !important;
}

.info-card:not(.highlight) .service-areas-list a {
    color: #543019 !important;
}

.info-card:not(.highlight) .service-areas-list a:hover {
    color: #b2aa7e !important;
}

.info-card:not(.highlight) .link-arrow {
    color: #b2aa7e !important;
    font-weight: 600;
}

/* Dark highlight info cards — force white text */
.info-card.highlight {
    color: #fff !important;
}

.info-card.highlight h3 {
    color: #fff !important;
}

.info-card.highlight p,
.info-card.highlight td,
.info-card.highlight li,
.info-card.highlight span {
    color: #fff !important;
}

.info-card.highlight .benefits-list li {
    color: #fff !important;
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

/* ==========================================================================
   19. GLOBAL MOBILE OPTIMIZATION
   Prevent horizontal overflow, ensure tap targets, smooth scrolling
   ========================================================================== */

/* Prevent horizontal scroll on all devices — use 'clip' not 'hidden' for iOS Safari */
html, body {
    overflow-x: clip;
    max-width: 100%;
    overscroll-behavior-x: none;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Minimum tap target size for mobile (44x44px per WCAG) */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
    }

    /* Ensure sidebar stacks properly on interior pages */
    .service-sidebar-2026 {
        position: static;
    }

    /* Service compact cards: 2-col on tablet */
    .services-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Location stats */
    .location-stats-2026 .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Neighborhood cards */
    .neighborhood-cards-grid {
        grid-template-columns: 1fr;
    }

    /* Additional services list */
    .additional-services-list {
        columns: 1;
    }

    /* Contact methods */
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    /* Sticky CTA: ensure full-width tap area */
    .sticky-cta-2026 a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Service compact cards: single column */
    .services-grid-compact {
        grid-template-columns: 1fr;
    }

    /* Location hero */
    .location-hero-2026 {
        padding: 2rem 0;
    }

    /* FAQ items tighter */
    .faq-section-2026 {
        max-width: 100%;
    }

    /* Contact page promise bar */
    .promise-bar {
        padding: 1rem;
    }

    /* Buttons full-width on smallest screens */
    .btn-primary-2026.btn-lg,
    .btn-secondary-2026.btn-lg,
    .btn-primary-2026.btn-xl,
    .btn-secondary-2026.btn-xl {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}


/* ==========================================================================
   LIGHT-BACKGROUND SECTION FIXES
   Buttons and text that were designed for dark sections need overrides
   when premium-2026.css changes backgrounds to white
   ========================================================================== */

/* Secondary button on light backgrounds: make it visible */
.services-section-2026 .btn-secondary-2026,
.why-choose-2026 .btn-secondary-2026,
.areas-section-2026 .btn-secondary-2026,
.gallery-section-2026 .btn-secondary-2026,
.homepage-faq-2026 .btn-secondary-2026 {
    background: var(--hpp-primary, #5a3a1a);
    color: #fff;
    border: 2px solid var(--hpp-primary, #5a3a1a);
}

.services-section-2026 .btn-secondary-2026:hover,
.why-choose-2026 .btn-secondary-2026:hover,
.areas-section-2026 .btn-secondary-2026:hover,
.gallery-section-2026 .btn-secondary-2026:hover,
.homepage-faq-2026 .btn-secondary-2026:hover {
    background: var(--hpp-accent, #d4863a);
    border-color: var(--hpp-accent, #d4863a);
    color: #fff;
    transform: translateY(-2px);
}

/* Primary button hover: ensure it stays visible on light backgrounds */
.btn-primary-2026:hover {
    background: var(--hpp-primary, #5a3a1a);
    color: #fff;
}

/* Fix any white text in light-background sections */
.services-section-2026 .section-title-2026,
.why-choose-2026 .section-title-2026,
.areas-section-2026 .section-title-2026,
.gallery-section-2026 .section-title-2026,
.homepage-faq-2026 .section-title-2026 {
    color: var(--hpp-primary, #5a3a1a);
}

.services-section-2026 .section-subtitle,
.why-choose-2026 .section-subtitle,
.areas-section-2026 .section-subtitle,
.gallery-section-2026 .section-subtitle,
.homepage-faq-2026 .section-subtitle {
    color: var(--hpp-gray-500, #6b7280);
}


/* ==========================================================================
   HERO VAN - Scroll-driven animation
   Van drives across bottom of hero as user scrolls
   ========================================================================== */

.hero-van-wrapper {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
    height: 90px;
}

.hero-van {
    position: absolute;
    bottom: 0;
    right: -220px;
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    will-change: left;
    transition: none;
}

@media (min-width: 768px) {
    .hero-van-wrapper {
        height: 140px;
        bottom: -10px;
    }

    .hero-van {
        width: 300px;
        right: -320px;
    }
}

@media (min-width: 1200px) {
    .hero-van-wrapper {
        height: 170px;
        bottom: -5px;
    }

    .hero-van {
        width: 380px;
        right: -400px;
    }
}

/* Hide van on very small screens */
@media (max-width: 480px) {
    .hero-van-wrapper {
        display: none;
    }
}


/* ==========================================================================
   BLOG FEED - Homepage latest articles
   ========================================================================== */

.blog-feed-2026 {
    padding: 80px 0;
    background: var(--hpp-warm-white, #faf8f5);
}

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

.blog-feed-card {
    background: white;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    border: 1px solid var(--hpp-gray-200, #e0dcd4);
}

.blog-feed-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.blog-feed-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-feed-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-feed-card:hover .blog-feed-thumb img {
    transform: scale(1.05);
}

.blog-feed-content {
    padding: 1.25rem 1.5rem 1.5rem;
}

.blog-feed-content time {
    font-size: 0.75rem;
    color: var(--hpp-gray-400, #9ca3af);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.blog-feed-content h3 {
    font-family: var(--font-display, Georgia, serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--hpp-primary, #5a3a1a);
    margin: 0.5rem 0;
    line-height: 1.3;
}

.blog-feed-content p {
    font-size: 0.9rem;
    color: var(--hpp-gray-600, #4b5563);
    line-height: 1.5;
    margin: 0 0 0.75rem;
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hpp-accent, #b2aa7e);
    transition: color 0.3s;
}

.blog-feed-card:hover .blog-read-more {
    color: var(--hpp-primary, #5a3a1a);
}

.blog-feed-all {
    text-align: center;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .blog-feed-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .blog-feed-2026 {
        padding: 50px 0;
    }
}

/* ==========================================================================
   BLOG INDEX & ARCHIVE - Read more links
   ========================================================================== */

.entry-2026 {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--hpp-gray-200, #e0dcd4);
}

.entry-2026 .entry-thumbnail {
    display: block;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    margin-bottom: 1.25rem;
    text-decoration: none;
}

.entry-2026 .entry-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.entry-2026:hover .entry-thumbnail img {
    transform: scale(1.02);
}

.entry-2026 .entry-title a {
    color: var(--hpp-primary, #5a3a1a);
    text-decoration: none;
    transition: color 0.3s;
}

.entry-2026 .entry-title a:hover {
    color: var(--hpp-accent, #b2aa7e);
}

.entry-2026 .entry-meta {
    color: var(--hpp-gray-400, #9ca3af);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.entry-2026 .entry-excerpt {
    color: var(--hpp-gray-600, #4b5563);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Prominent "Read Full Article" button */
.read-article-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--hpp-primary, #5a3a1a);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

.read-article-btn:hover {
    background: var(--hpp-accent, #b2aa7e);
    color: #fff !important;
    transform: translateX(4px);
}

.read-article-btn svg {
    transition: transform 0.3s;
}

.read-article-btn:hover svg {
    transform: translateX(3px);
}

/* Post cards in archive */
.post-card-2026 .post-content .read-more-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--hpp-accent, #b2aa7e);
    text-decoration: none;
    transition: color 0.3s;
}

.post-card-2026 .post-content .read-more-link:hover {
    color: var(--hpp-primary, #5a3a1a);
}

/* ==========================================================================
   MULTI-STEP BOOKING FORM
   Hero service request form with step navigation
   ========================================================================== */

/* Override zero padding from design-system (was for iframe) */
.hero-form-body {
    padding: 20px 24px 24px;
}

.hpp-booking-form {
    padding: 0;
}

/* Progress Bar */
.hpp-form-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hpp-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(178, 170, 126, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.hpp-progress-fill {
    width: 50%;
    height: 100%;
    background: var(--hpp-gold, #b2aa7e);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.hpp-progress-label {
    font-size: 0.75rem;
    color: #8a7f6a;
    white-space: nowrap;
    font-family: var(--font-body);
}

/* Steps */
.hpp-form-step {
    display: none;
}

.hpp-form-step.hpp-step-active {
    display: block;
    animation: hppFadeIn 0.3s ease;
}

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

/* Step 1: Service Grid */
.hpp-step-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hpp-primary, #5a3a1a);
    margin-bottom: 16px;
    text-align: center;
}

.hpp-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hpp-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 10px;
    background: #f8f6f1;
    border: 1.5px solid #e8e4d9;
    border-radius: 10px;
    color: var(--hpp-primary, #5a3a1a);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.hpp-service-card:hover {
    background: #f0ece2;
    border-color: var(--hpp-gold, #b2aa7e);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 58, 26, 0.1);
}

.hpp-service-card:active {
    transform: translateY(0);
    background: #e8e4d9;
}

.hpp-service-card .hpp-service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--hpp-primary, #5a3a1a);
    color: #fff;
    flex-shrink: 0;
}

.hpp-service-card .hpp-service-icon svg {
    stroke: #fff;
}

.hpp-service-card:hover .hpp-service-icon {
    background: var(--hpp-accent, #d4863a);
}

/* Step 2: Contact Form */
.hpp-selected-service {
    background: #f0ece2;
    border: 1px solid #d8d2c2;
    border-radius: 8px;
    padding: 8px 14px;
    color: var(--hpp-primary, #5a3a1a);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
    font-family: var(--font-body);
}

.hpp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hpp-form-group {
    margin-bottom: 12px;
}

.hpp-form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #5a3a1a;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.hpp-form-group input,
.hpp-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    background: #f8f6f1;
    border: 1px solid #d8d2c2;
    border-radius: 8px;
    color: #2d1f0e;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: border-color 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
}

.hpp-form-group input::placeholder,
.hpp-form-group textarea::placeholder {
    color: #a89f8e;
}

.hpp-form-group input:focus,
.hpp-form-group textarea:focus {
    outline: none;
    border-color: var(--hpp-gold, #b2aa7e);
    background: #fff;
}

.hpp-form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.hpp-submit-btn {
    width: 100%;
    margin-top: 4px;
}

.hpp-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    background: none;
    border: none;
    color: #8a7f6a;
    font-size: 0.82rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: color 0.2s ease;
}

.hpp-back-btn:hover {
    color: var(--hpp-primary, #5a3a1a);
}

/* Spinner */
.hpp-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(90, 58, 26, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: hppSpin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes hppSpin {
    to { transform: rotate(360deg); }
}

/* Success / Error States */
.hpp-success-state,
.hpp-error-state {
    text-align: center;
    padding: 24px 16px;
}

.hpp-success-state h4,
.hpp-error-state h4 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.3rem;
    color: var(--hpp-primary, #5a3a1a);
    margin: 16px 0 8px;
}

.hpp-success-state p,
.hpp-error-state p {
    color: #6b5d4d;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.hpp-success-phone a {
    color: var(--hpp-accent, #d4863a);
    font-weight: 600;
}

/* Contact Page Success */
.hpp-contact-success {
    text-align: center;
    padding: 40px 20px;
}

.hpp-contact-success h3 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.5rem;
    margin: 16px 0 8px;
}

.hpp-contact-success p {
    color: var(--hpp-text-muted, #6b7280);
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .hero-form-body {
        padding: 16px 16px 20px;
    }

    .hpp-service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hpp-service-card {
        padding: 12px 8px;
        font-size: 0.78rem;
    }

    .hpp-service-card .hpp-service-icon {
        width: 36px;
        height: 36px;
    }

    .hpp-service-card .hpp-service-icon svg {
        width: 18px;
        height: 18px;
    }

    .hpp-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hpp-form-group input,
    .hpp-form-group textarea {
        padding: 9px 10px;
        font-size: 16px; /* Prevent iOS zoom */
    }
}


/* ==========================================================================
   END PREMIUM-2026.CSS
   ========================================================================== */
