/* ═══════════════════════════════════════════════════════════════════════════
   PAUL HANDYMAN PRO — Design System
   Electric blue · Plus Jakarta Sans · Mobile-first · Clean & modern
   Built by Paul Walsh — paul-walsh.co.uk
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
    --ph-blue:       #2563eb;
    --ph-blue-dark:  #1d4ed8;
    --ph-blue-light: #eff6ff;
    --ph-blue-50:    #dbeafe;
    --ph-blue-900:   #1e3a5f;

    --ph-dark:       #0f172a;
    --ph-dark-2:     #1e293b;
    --ph-dark-3:     #334155;

    --ph-text:       #1e293b;
    --ph-text-2:     #475569;
    --ph-text-3:     #94a3b8;

    --ph-bg:         #f8fafc;
    --ph-bg-2:       #f1f5f9;
    --ph-white:      #ffffff;
    --ph-border:     #e2e8f0;

    --ph-orange:     #f97316;
    --ph-green:      #16a34a;
    --ph-red:        #dc2626;

    --ph-font:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ph-radius:     8px;
    --ph-radius-lg:  12px;
    --ph-radius-xl:  16px;
    --ph-shadow:     0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --ph-shadow-md:  0 4px 12px rgba(0,0,0,.06);
    --ph-shadow-lg:  0 10px 30px rgba(0,0,0,.08);
    --ph-transition: 0.2s ease;
}

/* ── Base ─────────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--ph-font);
    color: var(--ph-text);
    background: var(--ph-white);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ph-blue); text-decoration: none; transition: color var(--ph-transition); }
a:hover { color: var(--ph-blue-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ph-font);
    color: var(--ph-text);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

h1 { font-size: clamp(28px, 5vw, 40px); }
h2 { font-size: clamp(24px, 4vw, 32px); margin-bottom: 16px; }
h3 { font-size: clamp(20px, 3vw, 24px); margin-bottom: 12px; }
h4 { font-size: 17px; margin-bottom: 8px; }

p { margin-bottom: 16px; color: var(--ph-text-2); }
ul, ol { margin-bottom: 16px; padding-left: 24px; }
li { margin-bottom: 6px; color: var(--ph-text-2); }

/* ── Container ────────────────────────────────────────────────────────────── */
.ph-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.ph-section { padding: 48px 0; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.ph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 28px;
    border-radius: var(--ph-radius);
    font-family: var(--ph-font);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--ph-transition);
    white-space: nowrap;
}

.ph-btn:active { transform: scale(0.97); }

.ph-btn-primary {
    background: var(--ph-blue);
    color: var(--ph-white);
    box-shadow: 0 1px 3px rgba(37,99,235,.25);
}
.ph-btn-primary:hover {
    background: var(--ph-blue-dark);
    color: var(--ph-white);
    box-shadow: 0 4px 12px rgba(37,99,235,.3);
}

.ph-btn-white {
    background: var(--ph-white);
    color: var(--ph-blue);
    font-weight: 700;
}
.ph-btn-white:hover {
    background: var(--ph-blue-light);
    color: var(--ph-blue-dark);
}

.ph-btn-outline {
    background: transparent;
    color: var(--ph-blue);
    border: 2px solid var(--ph-blue);
}
.ph-btn-outline:hover {
    background: var(--ph-blue);
    color: var(--ph-white);
}


/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

.ph-header { position: relative; z-index: 100; }

/* Top bar */
.ph-topbar {
    background: var(--ph-dark);
    padding: 8px 0;
    font-size: 13px;
}

.ph-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ph-topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ph-topbar-link {
    color: var(--ph-text-3) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}
.ph-topbar-link:hover { color: var(--ph-white) !important; }

.ph-topbar-divider { color: var(--ph-dark-3); }

.ph-topbar-social {
    color: var(--ph-text-3) !important;
    transition: color var(--ph-transition);
}
.ph-topbar-social:hover { color: var(--ph-white) !important; }

/* Navigation */
.ph-nav {
    background: var(--ph-white);
    padding: 16px 0;
    border-bottom: 1px solid var(--ph-border);
    transition: box-shadow var(--ph-transition), padding var(--ph-transition);
}

.ph-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 0;
    box-shadow: var(--ph-shadow-md);
    z-index: 999;
}

.ph-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.ph-logo { display: flex; align-items: center; text-decoration: none !important; }
.ph-logo img,
.ph-logo .custom-logo-link img,
.ph-logo .custom-logo,
.ph-logo svg,
.ph-nav .custom-logo-link img,
.ph-nav img,
header img {
    max-height: 55px !important;
    width: auto !important;
    height: auto !important;
    max-width: 180px !important;
}
.ph-logo .custom-logo-link { display: flex; align-items: center; }
.ph-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: var(--ph-text);
}
.ph-logo-text strong { font-size: 26px; letter-spacing: 1px; }
.ph-logo-text span { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--ph-text-2); }
.ph-logo-text--light strong { color: var(--ph-white); }
.ph-logo-text--light span { color: var(--ph-text-3); }

/* Menu */
.ph-menu-wrap { display: flex; align-items: center; gap: 8px; }
.ph-menu { display: flex; list-style: none; gap: 4px; margin: 0; padding: 0; }
.ph-menu li { position: relative; }
.ph-menu > li > a {
    display: block;
    padding: 8px 14px;
    color: var(--ph-text-2) !important;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--ph-radius);
    transition: all var(--ph-transition);
}
.ph-menu > li > a:hover,
.ph-menu > li.current-menu-item > a,
.ph-menu > li.current_page_item > a {
    color: var(--ph-blue) !important;
    background: var(--ph-blue-light);
}

/* Dropdown */
.ph-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--ph-white);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius);
    box-shadow: var(--ph-shadow-lg);
    min-width: 260px;
    padding: 8px;
    list-style: none;
    z-index: 50;
}
@media (min-width: 769px) {
    .ph-menu li:hover > .sub-menu { display: block; }
}
.ph-menu .sub-menu a {
    display: block;
    padding: 8px 14px;
    color: var(--ph-text-2) !important;
    font-size: 14px;
    border-radius: 6px;
}
.ph-menu .sub-menu a:hover {
    color: var(--ph-blue) !important;
    background: var(--ph-blue-light);
}

/* Nav CTA */
.ph-nav-cta { margin-left: 12px; }

/* Mobile toggle */
.ph-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.ph-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ph-text);
    border-radius: 2px;
    transition: all 0.3s;
}
.ph-menu-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.ph-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.ph-menu-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HERO
   ═══════════════════════════════════════════════════════════════════════════ */

.ph-page-hero {
    background: linear-gradient(135deg, var(--ph-dark) 0%, var(--ph-blue-900) 100%);
    padding: 48px 0;
    text-align: center;
}

.ph-page-hero h1 {
    color: var(--ph-white);
    margin: 0;
    font-size: clamp(26px, 4vw, 36px);
}

.ph-breadcrumbs {
    margin-bottom: 12px;
    font-size: 13px;
}
.ph-breadcrumbs a {
    color: rgba(255,255,255,.6) !important;
    text-decoration: none;
}
.ph-breadcrumbs a:hover {
    color: rgba(255,255,255,.9) !important;
}
.ph-breadcrumbs span.breadcrumb_last {
    color: rgba(255,255,255,.8);
}
.ph-breadcrumbs .separator {
    color: rgba(255,255,255,.4);
    margin: 0 6px;
}

.ph-hero-sub {
    color: var(--ph-text-3) !important;
    font-size: 16px;
    margin: 8px 0 0;
}

.ph-post-meta-hero {
    margin-top: 12px;
    font-size: 14px;
    color: var(--ph-text-3);
}
.ph-post-meta-hero a { color: var(--ph-blue-50) !important; }
.ph-meta-sep { margin: 0 8px; }


/* ═══════════════════════════════════════════════════════════════════════════
   CONTENT LAYOUT — sidebar + main
   ═══════════════════════════════════════════════════════════════════════════ */

.ph-content-wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.ph-content {
    min-width: 0;
}

/* Content typography */
.ph-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--ph-blue-light);
    font-size: clamp(20px, 3vw, 24px);
    color: var(--ph-dark);
}
.ph-content h2:first-child { margin-top: 0; }
.ph-content h3 {
    margin-top: 28px;
    margin-bottom: 8px;
    font-size: 17px;
    color: var(--ph-dark);
}
/* FAQ-style: H3 after "Frequently Asked Questions" H2 get card treatment */
.ph-content h2 ~ h3 {
    background: var(--ph-bg);
    margin: 20px 0 0;
    padding: 14px 18px;
    border-radius: var(--ph-radius) var(--ph-radius) 0 0;
    border: 1px solid var(--ph-border);
    border-bottom: none;
    font-size: 16px;
    color: var(--ph-blue);
}
.ph-content h2 ~ h3 + p {
    background: var(--ph-white);
    border: 1px solid var(--ph-border);
    border-top: none;
    border-radius: 0 0 var(--ph-radius) var(--ph-radius);
    padding: 14px 18px;
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ph-text-2);
}

.ph-content img { border-radius: var(--ph-radius); margin: 16px 0; }

/* Styled lists */
.ph-content ul {
    padding-left: 0;
    list-style: none;
}
.ph-content ul li {
    position: relative;
    padding: 10px 16px 10px 28px;
    margin-bottom: 4px;
    background: var(--ph-bg);
    border-radius: var(--ph-radius);
    font-size: 15px;
    color: var(--ph-text);
    border: 1px solid transparent;
    transition: all var(--ph-transition);
}
.ph-content ul li:hover {
    border-color: var(--ph-blue-50);
    background: var(--ph-blue-light);
}
.ph-content ul li::before {
    content: '✓';
    position: absolute;
    left: 8px;
    color: var(--ph-blue);
    font-weight: 700;
    font-size: 13px;
}
.ph-content ul li a {
    font-weight: 600;
}

/* Ordered lists (How It Works) */
.ph-content ol {
    padding-left: 0;
    list-style: none;
    counter-reset: steps;
}
.ph-content ol li {
    counter-increment: steps;
    position: relative;
    padding: 16px 16px 16px 56px;
    margin-bottom: 8px;
    background: var(--ph-white);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius);
    font-size: 15px;
    line-height: 1.6;
}
.ph-content ol li::before {
    content: counter(steps);
    position: absolute;
    left: 14px;
    top: 14px;
    width: 28px;
    height: 28px;
    background: var(--ph-blue);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-content blockquote {
    border-left: 4px solid var(--ph-blue);
    padding: 16px 20px;
    margin: 24px 0;
    background: var(--ph-blue-light);
    border-radius: 0 var(--ph-radius) var(--ph-radius) 0;
}
.ph-content blockquote p { color: var(--ph-text); margin: 0; }
.ph-content hr {
    border: none;
    border-top: 1px solid var(--ph-border);
    margin: 32px auto;
    max-width: 80px;
}

/* Separator blocks — hide them, the H2 borders do the job */
.ph-content .wp-block-separator {
    display: none;
}

/* Featured image */
.ph-featured-image {
    margin-bottom: 24px;
    border-radius: var(--ph-radius-lg);
    overflow: hidden;
}
.ph-featured-image img { width: 100%; }

/* Post CTA block */
.ph-post-cta {
    margin-top: 40px;
    padding: 28px;
    background: var(--ph-blue-light);
    border-radius: var(--ph-radius-lg);
    border-left: 4px solid var(--ph-blue);
}
.ph-post-cta h3 { color: var(--ph-text); margin-bottom: 8px; }
.ph-post-cta p { color: var(--ph-text-2); margin-bottom: 16px; }


/* ═══════════════════════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════════════════════ */

.ph-sidebar {
    position: sticky;
    top: 100px;
}

.ph-sidebar-form {
    background: var(--ph-white);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius-lg);
    padding: 28px 24px;
    box-shadow: var(--ph-shadow);
}

.ph-sidebar-form h3 {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--ph-text);
}

.ph-sidebar-form > p {
    font-size: 14px;
    color: var(--ph-text-3);
    margin-bottom: 16px;
}

/* ── CF7 form styling ─────────────────────────────────────────────────────── */
.wpcf7 label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ph-text);
    display: block;
    margin-bottom: 3px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--ph-border);
    border-radius: var(--ph-radius);
    font-size: 14px;
    font-family: var(--ph-font);
    background: var(--ph-bg);
    color: var(--ph-text);
    transition: border-color var(--ph-transition), box-shadow var(--ph-transition), background var(--ph-transition);
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: var(--ph-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
    background: var(--ph-white);
}

.wpcf7 textarea { min-height: 80px; resize: vertical; }

.wpcf7 input[type="submit"] {
    background: var(--ph-blue);
    color: var(--ph-white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--ph-radius);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--ph-font);
    cursor: pointer;
    width: 100%;
    transition: background var(--ph-transition);
    margin-top: 4px;
}
.wpcf7 input[type="submit"]:hover { background: var(--ph-blue-dark); }

/* Radio pills */
.wpcf7 .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 4px 0 6px;
}
.wpcf7 .wpcf7-list-item { margin: 0; }
.wpcf7 .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;
    font-size: 12px;
    color: var(--ph-text-2);
    cursor: pointer;
    padding: 5px 10px;
    border: 1.5px solid var(--ph-border);
    border-radius: 6px;
    background: var(--ph-bg);
    transition: all 0.15s;
    margin: 0;
}
.wpcf7 .wpcf7-list-item label:hover {
    border-color: var(--ph-blue);
    background: var(--ph-blue-light);
}
.wpcf7 .wpcf7-list-item input[type="radio"] { accent-color: var(--ph-blue); }

.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--ph-green);
    background: #f0fdf4;
    color: #166534;
    border-radius: var(--ph-radius);
    padding: 10px 14px;
}

/* Sidebar form — tighter spacing */
.ph-sidebar-form .wpcf7 br { display: none; }
.ph-sidebar-form .wpcf7 p { margin-bottom: 6px; }


/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.ph-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.ph-contact-form-wrap h2 { margin-bottom: 8px; }
.ph-contact-form-wrap > p { margin-bottom: 24px; color: var(--ph-text-2); }

.ph-contact-info { display: flex; flex-direction: column; gap: 16px; }

.ph-info-card {
    padding: 20px;
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius-lg);
    background: var(--ph-white);
}

.ph-info-card-icon {
    width: 44px;
    height: 44px;
    background: var(--ph-blue-light);
    color: var(--ph-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.ph-info-card h4 { font-size: 15px; margin-bottom: 4px; }
.ph-info-card p { font-size: 14px; margin: 0; color: var(--ph-text-2); }
.ph-info-card a { color: var(--ph-blue); font-size: 14px; }

.ph-info-card--highlight {
    background: var(--ph-blue-light);
    border-color: var(--ph-blue-50);
}
.ph-info-card--highlight ul {
    margin: 8px 0 0;
    padding-left: 20px;
}
.ph-info-card--highlight li {
    font-size: 14px;
    color: var(--ph-text-2);
    margin-bottom: 4px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════════════════════ */

.ph-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.ph-blog-card {
    background: var(--ph-white);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius-lg);
    overflow: hidden;
    transition: box-shadow var(--ph-transition), transform var(--ph-transition);
}
.ph-blog-card:hover {
    box-shadow: var(--ph-shadow-md);
    transform: translateY(-2px);
}

.ph-blog-card-image img { width: 100%; height: 200px; object-fit: cover; }

.ph-blog-card-body { padding: 20px; }
.ph-blog-card-date { font-size: 13px; color: var(--ph-text-3); }
.ph-blog-card-title { font-size: 18px; margin: 6px 0 8px; }
.ph-blog-card-title a { color: var(--ph-text) !important; }
.ph-blog-card-title a:hover { color: var(--ph-blue) !important; }
.ph-blog-card-excerpt { font-size: 14px; color: var(--ph-text-2); margin-bottom: 12px; }
.ph-blog-card-link { color: var(--ph-blue); font-weight: 600; font-size: 14px; }

.ph-pagination { margin-top: 40px; text-align: center; }
.ph-pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.ph-pagination a, .ph-pagination span {
    padding: 8px 16px;
    border-radius: var(--ph-radius);
    font-size: 14px;
    font-weight: 500;
}
.ph-pagination a { background: var(--ph-bg); color: var(--ph-text-2); }
.ph-pagination a:hover { background: var(--ph-blue-light); color: var(--ph-blue); }
.ph-pagination .current { background: var(--ph-blue); color: var(--ph-white); }


/* ═══════════════════════════════════════════════════════════════════════════
   CTA BANNER — before footer
   ═══════════════════════════════════════════════════════════════════════════ */

.ph-cta-banner {
    background: linear-gradient(135deg, var(--ph-blue) 0%, var(--ph-blue-dark) 100%);
    padding: 48px 0;
}

.ph-cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.ph-cta-banner h2 { color: var(--ph-white); margin: 0 0 6px; font-size: 28px; }
.ph-cta-banner p { color: rgba(255,255,255,.75); margin: 0; font-size: 16px; }


/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.ph-footer {
    background: var(--ph-dark);
    padding: 56px 0 0;
    color: var(--ph-text-3);
}

.ph-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--ph-dark-3);
}

.ph-footer h4 {
    color: var(--ph-white);
    font-size: 15px;
    margin-bottom: 16px;
    font-weight: 600;
}

.ph-footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ph-text-3);
    margin-bottom: 16px;
}

.ph-footer-logo { margin-bottom: 16px; }
.ph-footer-logo img { max-height: 50px; filter: brightness(10); }

.ph-footer-social {
    display: flex;
    gap: 12px;
}
.ph-footer-social a {
    color: var(--ph-text-3) !important;
    transition: color var(--ph-transition);
}
.ph-footer-social a:hover { color: var(--ph-white) !important; }

.ph-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ph-footer-col ul li { margin-bottom: 8px; }
.ph-footer-col ul a {
    color: var(--ph-text-3) !important;
    font-size: 14px;
    transition: color var(--ph-transition);
}
.ph-footer-col ul a:hover { color: var(--ph-white) !important; }

.ph-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--ph-text-3);
}
.ph-footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--ph-text-3); }
.ph-footer-contact a { color: var(--ph-text-3) !important; }
.ph-footer-contact a:hover { color: var(--ph-white) !important; }

.ph-footer-hours p { font-size: 14px; color: var(--ph-text-3); margin: 0; line-height: 1.6; }

.ph-footer-trades { margin-top: 20px; text-align: left; }
.ph-footer-trades h4 { color: var(--ph-white); font-size: 15px; margin-bottom: 8px; text-align: left; }
.ph-footer-trades ul { list-style: none; padding: 0; margin: 0; text-align: left; }
.ph-footer-trades li { margin-bottom: 6px; }
.ph-footer-trades a { color: var(--ph-text-3) !important; font-size: 14px; text-decoration: none; transition: color var(--ph-transition); }
.ph-footer-trades a:hover { color: var(--ph-white) !important; }

/* Bottom bar */
.ph-footer-bottom {
    padding: 20px 0;
    text-align: center;
}
.ph-footer-bottom p {
    font-size: 13px;
    color: var(--ph-dark-3);
    margin-bottom: 4px;
}
.ph-footer-bottom a { color: var(--ph-text-3) !important; }
.ph-footer-bottom a:hover { color: var(--ph-white) !important; }
.ph-footer-credit { font-size: 12px !important; }

/* Trades bar */
.ph-footer-trades {
    padding: 14px 0;
    text-align: center;
    border-top: 1px solid var(--ph-dark-3);
    font-size: 14px;
}
.ph-footer-trades span { color: var(--ph-text-3); margin-right: 8px; }
.ph-footer-trades a { color: var(--ph-blue) !important; font-weight: 600; }
.ph-footer-trades a:hover { color: #60a5fa !important; }


/* ═══════════════════════════════════════════════════════════════════════════
   GUIDE PRICES PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.ph-guide-intro { margin-bottom: 40px; }

.ph-guide-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--ph-blue-light);
    border: 1px solid rgba(37, 99, 235, .15);
    border-left: 4px solid var(--ph-blue);
    border-radius: var(--ph-radius);
    padding: 20px 24px;
    font-size: 15px;
    color: var(--ph-text-2);
    line-height: 1.6;
}
.ph-guide-notice-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

.ph-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ph-price-card {
    background: var(--ph-white);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius-xl);
    overflow: hidden;
    transition: box-shadow var(--ph-transition), transform var(--ph-transition);
}
.ph-price-card:hover {
    box-shadow: var(--ph-shadow-lg);
    transform: translateY(-2px);
}

.ph-price-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--ph-dark);
    color: var(--ph-white);
}
.ph-price-card-icon { font-size: 24px; }
.ph-price-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--ph-white);
}

.ph-price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ph-price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid var(--ph-border);
    font-size: 15px;
}
.ph-price-list li:last-child { border-bottom: none; }
.ph-price-list li:nth-child(even) { background: rgba(0,0,0,.015); }

.ph-price-name {
    color: var(--ph-text);
    font-weight: 500;
}
.ph-price-cost {
    color: var(--ph-blue);
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    margin-left: 16px;
}

.ph-guide-cta {
    text-align: center;
    background: var(--ph-bg);
    border-radius: var(--ph-radius-xl);
    padding: 48px 32px;
}
.ph-guide-cta h3 {
    font-size: 24px;
    margin-bottom: 8px;
}
.ph-guide-cta p {
    color: var(--ph-text-2);
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .ph-guide-grid { grid-template-columns: 1fr; }
    .ph-guide-notice { flex-direction: column; gap: 8px; }
    .ph-guide-cta { padding: 32px 20px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   TRADES PAGES
   ═══════════════════════════════════════════════════════════════════════════ */

.ph-trades-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2563eb 100%);
    padding: 48px 0;
    text-align: center;
}
.ph-trades-hero h1 {
    color: #fff;
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 8px;
}
.ph-trades-hero .ph-hero-sub {
    color: rgba(255,255,255,.75) !important;
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto;
}

/* Story / Why join */
.ph-trades-why { background: var(--ph-bg); }

.ph-trades-story {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}
.ph-trades-story h2 { margin-bottom: 16px; }
.ph-trades-story p {
    color: var(--ph-text-2);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.ph-trades-benefits {
    max-width: 720px;
    margin: 0 auto;
}
.ph-trades-benefits h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 22px;
}

.ph-trades-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.ph-trades-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--ph-white);
    padding: 20px 24px;
    border-radius: var(--ph-radius);
    border: 1px solid var(--ph-border);
}
.ph-trades-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--ph-blue);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}
.ph-trades-step strong { display: block; margin-bottom: 4px; font-size: 16px; }
.ph-trades-step p { margin: 0; color: var(--ph-text-2); font-size: 14px; line-height: 1.5; }

.ph-trades-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.ph-trades-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--ph-text);
    background: var(--ph-white);
    padding: 12px 16px;
    border-radius: var(--ph-radius);
    border: 1px solid var(--ph-border);
}
.ph-trades-perk span { flex-shrink: 0; }

/* Trades form content */
.ph-trades-form-wrap {
    max-width: 640px;
    margin: 0 auto;
}
.ph-trades-dashboard-wrap {
    max-width: 900px;
}
.ph-trades-form-wrap .ph-sidebar,
.ph-trades-form-wrap .ph-sidebar-form {
    display: none !important;
}

/* ── Plugin colour overrides — orange → blue ─────────────────────────────── */
.paul-leads-wrap .btn-primary,
.paul-leads-wrap button[type="submit"],
.paul-leads-wrap .unlock-btn,
.paul-leads-wrap .pl-unlock-btn,
.paul-leads-wrap input[type="submit"] {
    background: var(--ph-blue) !important;
    border-color: var(--ph-blue) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}
.paul-leads-wrap .btn-primary:hover,
.paul-leads-wrap button[type="submit"]:hover,
.paul-leads-wrap .unlock-btn:hover,
.paul-leads-wrap .pl-unlock-btn:hover,
.paul-leads-wrap input[type="submit"]:hover {
    background: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
}

/* Tabs */
.paul-leads-wrap .pl-tabs button.active,
.paul-leads-wrap .pl-tabs a.active,
.paul-leads-wrap .pl-tab.active {
    border-color: var(--ph-blue) !important;
    color: var(--ph-blue) !important;
}

/* Status badges */
.paul-leads-wrap .badge-approved,
.paul-leads-wrap .pl-status-approved {
    background: #dbeafe !important;
    color: var(--ph-blue) !important;
}

/* Links */
.paul-leads-wrap a {
    color: var(--ph-blue) !important;
}
.paul-leads-wrap a:hover {
    color: #1d4ed8 !important;
}

/* Registration form on trades-register */
.ph-trades-content input[type="text"],
.ph-trades-content input[type="email"],
.ph-trades-content input[type="tel"],
.ph-trades-content input[type="password"],
.ph-trades-content input[type="url"],
.ph-trades-content textarea,
.ph-trades-content select {
    border: 1px solid var(--ph-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 15px;
    width: 100%;
    transition: border-color var(--ph-transition);
}
.ph-trades-content input:focus,
.ph-trades-content textarea:focus,
.ph-trades-content select:focus {
    border-color: var(--ph-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}
.ph-trades-content input[type="submit"],
.ph-trades-content button[type="submit"] {
    background: var(--ph-blue) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 32px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: background var(--ph-transition);
}
.ph-trades-content input[type="submit"]:hover,
.ph-trades-content button[type="submit"]:hover {
    background: #1d4ed8 !important;
}

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


/* ═══════════════════════════════════════════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════════════════════ */

.ph-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.ph-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .ph-content-wrap { grid-template-columns: 1fr; gap: 32px; }
    .ph-sidebar { position: static; }
    .ph-contact-grid { grid-template-columns: 1fr; }
    .ph-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Header */
    .ph-topbar-left { display: none; }
    .ph-topbar { text-align: right; }

    body.ph-menu-open { overflow: hidden; }

    .ph-menu-toggle { display: flex; }

    .ph-menu-wrap {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ph-white);
        border-top: 1px solid var(--ph-border);
        box-shadow: var(--ph-shadow-lg);
        padding: 16px 20px;
        flex-direction: column;
        gap: 0;
    }
    .ph-menu-wrap.is-open { display: flex; max-height: 75vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .ph-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .ph-menu > li > a {
        padding: 12px 0;
        border-bottom: 1px solid var(--ph-border);
    }
    .ph-menu .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        min-width: auto;
        display: none;
    }
    .ph-menu .sub-menu.is-open { display: block; }

    .ph-menu .menu-item-has-children { position: relative; }
    .ph-menu .menu-item-has-children > a { padding-right: 50px; }
    .ph-submenu-toggle {
        position: absolute;
        right: 0;
        top: 0;
        width: 48px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        background: var(--ph-blue-light);
        border: none;
        border-left: 1px solid var(--ph-border);
        border-radius: 0 0 8px 8px;
        font-size: 14px;
        color: var(--ph-blue);
        font-weight: 700;
        transition: all .2s ease;
    }
    .ph-submenu-toggle.is-open {
        transform: rotate(180deg);
        background: var(--ph-blue);
        color: #fff;
    }
    .ph-menu .sub-menu a {
        padding: 10px 14px;
        border-bottom: 1px solid rgba(0,0,0,.05);
        font-size: 14px;
    }
    .ph-nav-cta {
        margin: 12px 0 0;
        width: 100%;
        text-align: center;
    }

    /* CTA banner */
    .ph-cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .ph-cta-banner h2 { font-size: 24px; }

    /* Footer */
    .ph-footer-grid { grid-template-columns: 1fr; gap: 32px; }

    /* Blog */
    .ph-blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .ph-section { padding: 32px 0; }
    .ph-page-hero { padding: 36px 0; }
    .ph-sidebar-form { padding: 20px 16px; }
}

/* ── WordPress block compatibility ────────────────────────────────────────── */
.wp-block-image { margin-bottom: 16px; }
.wp-block-image img { border-radius: var(--ph-radius); }
.wp-block-separator { border-color: var(--ph-border); margin: 32px auto; max-width: 80px; }
.wp-block-quote { border-left-color: var(--ph-blue); }
.wp-block-button__link {
    background: var(--ph-blue) !important;
    border-radius: var(--ph-radius) !important;
    padding: 12px 24px !important;
    font-family: var(--ph-font) !important;
    font-weight: 600 !important;
}
.wp-block-button__link:hover { background: var(--ph-blue-dark) !important; }


/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Section header — centred titles */
.ph-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}
.ph-section-header h2 { margin-bottom: 8px; }
.ph-section-header p { color: var(--ph-text-2); font-size: 16px; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.ph-hero {
    position: relative;
    background: var(--ph-dark);
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ph-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,.88) 0%, rgba(30,58,95,.82) 100%);
}

.ph-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.ph-hero-text h1 {
    color: var(--ph-white);
    font-size: clamp(32px, 5vw, 44px);
    margin-bottom: 16px;
    line-height: 1.15;
}

.ph-hero-sub {
    color: rgba(255,255,255,.8) !important;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.ph-hero-areas {
    color: rgba(255,255,255,.6) !important;
    font-size: 15px;
    margin-bottom: 24px;
}

.ph-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ph-btn-lg { padding: 16px 32px; font-size: 16px; }

.ph-btn-outline-light {
    background: transparent;
    color: var(--ph-white);
    border: 2px solid rgba(255,255,255,.3);
}
.ph-btn-outline-light:hover {
    background: rgba(255,255,255,.1);
    color: var(--ph-white);
    border-color: rgba(255,255,255,.5);
}

.ph-hero-form-card {
    background: var(--ph-white);
    border-radius: var(--ph-radius-xl);
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.ph-hero-form-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--ph-text);
}

/* ── Who We Serve ─────────────────────────────────────────────────────────── */
.ph-serve { background: var(--ph-bg); }

.ph-serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ph-serve-card {
    background: var(--ph-white);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius-lg);
    padding: 32px 28px;
    transition: transform var(--ph-transition), box-shadow var(--ph-transition);
}
.ph-serve-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ph-shadow-md);
}

.ph-serve-icon {
    width: 52px;
    height: 52px;
    background: var(--ph-blue-light);
    color: var(--ph-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ph-serve-card h3 { font-size: 20px; margin-bottom: 8px; }
.ph-serve-card p { color: var(--ph-text-2); font-size: 15px; margin: 0; }

/* ── About ────────────────────────────────────────────────────────────────── */
.ph-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.ph-about-image img,
.ph-about-image .ph-about-photo {
    width: 100%;
    border-radius: var(--ph-radius-xl);
    box-shadow: var(--ph-shadow-lg);
    object-fit: cover;
}

.ph-about-brand {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2563eb 100%);
    border-radius: var(--ph-radius-xl);
    box-shadow: var(--ph-shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.ph-about-brand::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, .15);
    border-radius: 50%;
}
.ph-about-brand::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
}
.ph-about-brand-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}
.ph-about-brand-name {
    display: block;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
}
.ph-about-brand-tag {
    display: block;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    opacity: .7;
    margin-top: 4px;
}
.ph-about-brand-line {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--ph-blue);
    margin: 20px auto;
    border-radius: 2px;
}
.ph-about-brand-sub {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: .5;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ph-about-text h2 { margin-bottom: 16px; }
.ph-about-text > p { color: var(--ph-text-2); font-size: 16px; line-height: 1.7; }

.ph-about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 24px 0;
}

.ph-about-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ph-text);
}

/* ── Services Grid ────────────────────────────────────────────────────────── */
.ph-services-section { background: var(--ph-dark); padding: 64px 0; }
.ph-services-section .ph-section-header h2 { color: var(--ph-white); }
.ph-services-section .ph-section-header p { color: var(--ph-text-3); }

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

.ph-service-card {
    background: var(--ph-dark-2);
    border: 1px solid var(--ph-dark-3);
    border-radius: var(--ph-radius-lg);
    padding: 28px 24px;
    transition: transform var(--ph-transition), border-color var(--ph-transition);
}
.ph-service-card:hover {
    transform: translateY(-2px);
    border-color: var(--ph-blue);
}

.ph-service-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.ph-service-card h3 { color: var(--ph-white); font-size: 18px; margin-bottom: 8px; }
.ph-service-card p { color: var(--ph-text-3); font-size: 14px; margin-bottom: 12px; line-height: 1.6; }
.ph-service-link { color: var(--ph-blue) !important; font-size: 14px; font-weight: 600; }
.ph-service-link:hover { color: #60a5fa !important; }

/* ── Reviews ──────────────────────────────────────────────────────────────── */
.ph-reviews { background: var(--ph-bg); }

.ph-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ph-review-card {
    background: var(--ph-white);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius-lg);
    padding: 28px 24px;
}

.ph-review-stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.ph-review-card p {
    color: var(--ph-text-2);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
    font-style: italic;
}

.ph-review-author strong {
    display: block;
    color: var(--ph-text);
    font-size: 15px;
}
.ph-review-author span {
    color: var(--ph-text-3);
    font-size: 13px;
}

/* ── Areas ────────────────────────────────────────────────────────────────── */
.ph-areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.ph-area-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--ph-white);
    border: 1px solid var(--ph-border);
    border-radius: var(--ph-radius);
    color: var(--ph-text) !important;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--ph-transition);
    text-decoration: none !important;
}
.ph-area-card:hover {
    border-color: var(--ph-blue);
    background: var(--ph-blue-light);
    color: var(--ph-blue) !important;
}

.ph-area-pin { font-size: 18px; }
.ph-area-name { flex: 1; }
.ph-area-arrow { color: var(--ph-text-3); transition: color var(--ph-transition); }
.ph-area-card:hover .ph-area-arrow { color: var(--ph-blue); }


/* ── Homepage mobile ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ph-about-grid { grid-template-columns: 1fr; }
    .ph-about-image { order: -1; max-width: 480px; }
    .ph-areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .ph-hero { min-height: auto; padding: 40px 0; }
    .ph-hero-inner { padding-top: 48px; padding-bottom: 48px; }
    .ph-hero-text h1 { font-size: 28px; }
    .ph-serve-grid { grid-template-columns: 1fr; }
    .ph-services-grid { grid-template-columns: 1fr; }
    .ph-reviews-grid { grid-template-columns: 1fr; }
    .ph-areas-grid { grid-template-columns: 1fr 1fr; }
    .ph-about-points { grid-template-columns: 1fr; }
    .ph-hero-btns { flex-direction: column; }
    .ph-btn-lg { text-align: center; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   THEME LOGO — constrain in all contexts
   ═══════════════════════════════════════════════════════════════════════════ */

.custom-logo-link img,
.custom-logo,
.wp-block-site-logo img {
    max-height: 55px !important;
    width: auto !important;
    height: auto !important;
}

.ph-footer-logo .ph-footer-brand {
    text-decoration: none !important;
}
.ph-footer-brand-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}
.ph-footer-brand-accent {
    color: var(--ph-blue);
    font-style: italic;
}
