/* ── Text block ─────────────────────────────────────────────────── */
.page-block-text p  { margin: 0 0 1em; }
.page-block-text p:last-child { margin-bottom: 0; }
.page-block-text ul, .page-block-text ol { margin: 0 0 1em 1.5em; }
.page-block-text a  { color: var(--orange); text-decoration: underline; }
.page-block-text strong { font-weight: 700; }

/* ── Accordion ──────────────────────────────────────────────────── */
.pb-accordion { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.pb-acc-item + .pb-acc-item { border-top: 1px solid var(--border); }
.pb-acc-btn { width: 100%; background: none; border: none; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: .95rem; font-weight: 600; color: var(--text); text-align: left; gap: 12px; }
.pb-acc-btn:hover { background: var(--bg); }
.pb-acc-icon { flex-shrink: 0; font-size: 1.25rem; line-height: 1; transition: transform .25s; }
.pb-acc-btn[aria-expanded="true"] .pb-acc-icon { transform: rotate(45deg); }
.pb-acc-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 20px; font-size: .93rem; line-height: 1.65; color: var(--text-muted); }
.pb-acc-btn[aria-expanded="true"] + .pb-acc-panel { max-height: 600px; padding: 4px 20px 18px; }

/* ── Features grid ──────────────────────────────────────────────── */
.pb-features { display: grid; gap: 28px; }
.pb-features-2 { grid-template-columns: repeat(2,1fr); }
.pb-features-3 { grid-template-columns: repeat(3,1fr); }
.pb-features-4 { grid-template-columns: repeat(4,1fr); }
.pb-feature { text-align: center; padding: 28px 20px; }
.pb-feat-icon { font-size: 2.6rem; margin-bottom: 14px; line-height: 1; }
.pb-feat-heading { margin: 0 0 10px; font-size: 1.05rem; color: var(--navy); }
.pb-feat-text { font-size: .88rem; color: var(--text-muted); margin: 0; line-height: 1.65; }
/* Feature card styles */
.pb-feature.pb-fs-card  { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.pb-feature.pb-fs-glow  { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: box-shadow .3s, transform .3s; }
.pb-feature.pb-fs-glow:hover { transform: translateY(-4px); box-shadow: 0 8px 32px var(--pb-glow, rgba(0,0,0,.15)); }
.pb-feature.pb-fs-filled { border-radius: 12px; }
.pb-feature.pb-fs-filled .pb-feat-heading { color: #fff; }
.pb-feature.pb-fs-filled .pb-feat-text { color: rgba(255,255,255,.85); }
/* Heading divider */
.pb-feat-divider { width: 36px; height: 2px; border-radius: 2px; background: currentColor; opacity: .3; margin: 10px auto 14px; }
.pb-feature[style*="color"] .pb-feat-divider { opacity: .5; }
/* When a text colour is explicitly set, let it cascade */
.pb-feature[style*="color"] .pb-feat-heading,
.pb-feature[style*="color"] .pb-feat-text { color: inherit; }
.pb-feature.pb-fs-glass { background: rgba(255,255,255,.12); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.25); border-radius: 12px; }
/* Icon styles */
.pb-feat-icon.pb-icon-circle  { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; margin-bottom: 14px; }
.pb-feat-icon.pb-icon-rounded { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 16px; margin-bottom: 14px; }

/* ── Video Gallery ──────────────────────────────────────────────── */
.pb-video-gallery { display: grid; gap: 1.25rem; }
.pb-video-gallery-1 { grid-template-columns: 1fr; }
.pb-video-gallery-2 { grid-template-columns: repeat(2,1fr); }
.pb-video-gallery-3 { grid-template-columns: repeat(3,1fr); }
.pb-video-gallery-item { display: flex; flex-direction: column; gap: .5rem; }
.pb-video-gallery-ratio { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; background: #000; }
.pb-video-gallery-ratio iframe,
.pb-video-gallery-ratio video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; border-radius: 8px; }
.pb-video-gallery-title { margin: 0; font-size: .88rem; font-weight: 600; text-align: center; }

/* ── Gallery ────────────────────────────────────────────────────── */
.pb-gallery { display: grid; gap: 8px; }
.pb-gallery-2 { grid-template-columns: repeat(2,1fr); }
.pb-gallery-3 { grid-template-columns: repeat(3,1fr); }
.pb-gallery-4 { grid-template-columns: repeat(4,1fr); }
.pb-gal-item { aspect-ratio: 1; overflow: hidden; border-radius: 6px; display: block;
               padding: 0; border: none; background: none; cursor: pointer; position: relative; }
.pb-gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.pb-gal-item:hover img { transform: scale(1.04); }
.pb-gal-more-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.52);
    color: #fff; font-size: 2rem; font-weight: 700; letter-spacing: -.5px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px;
    pointer-events: none;
    transition: background .2s;
}
.pb-gal-more:hover .pb-gal-more-overlay { background: rgba(0,0,0,.65); }

/* ── Gallery lightbox ───────────────────────────────────────────── */
.pblb { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999;
        display: flex; align-items: center; justify-content: center;
        opacity: 0; transition: opacity .2s; pointer-events: none; }
.pblb.open { opacity: 1; pointer-events: all; }
.pblb-img { max-width: calc(100vw - 120px); max-height: calc(100vh - 80px);
            border-radius: 6px; box-shadow: 0 8px 48px rgba(0,0,0,.5);
            object-fit: contain; display: block; transition: opacity .2s; }
.pblb-img.fade { opacity: 0; }
.pblb-close { position: absolute; top: 16px; right: 20px; background: none; border: none;
              color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; opacity: .7;
              transition: opacity .15s; padding: 4px 10px; }
.pblb-close:hover { opacity: 1; }
.pblb-nav { position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(255,255,255,.15); border: none; color: #fff;
            font-size: 1.6rem; cursor: pointer; padding: 14px 18px;
            border-radius: 6px; transition: background .15s; line-height: 1; }
.pblb-nav:hover { background: rgba(255,255,255,.3); }
.pblb-prev { left: 16px; }
.pblb-next { right: 16px; }
.pblb-counter { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
                color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 600;
                background: rgba(0,0,0,.4); padding: 4px 12px; border-radius: 20px; }

/* ── Team members ───────────────────────────────────────────────── */
.pb-team { display: grid; gap: 36px; }
.pb-team-2 { grid-template-columns: repeat(2,1fr); }
.pb-team-3 { grid-template-columns: repeat(3,1fr); }
.pb-team-4 { grid-template-columns: repeat(4,1fr); }
.pb-team-member { text-align: center; }
.pb-team-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; display: block; border: 3px solid var(--border); }
.pb-team-info { display: flex; flex-direction: column; gap: 6px; }
.pb-team-name { font-size: 1rem; font-weight: 700; color: var(--navy); display: block; }
.pb-team-role { font-size: .82rem; color: var(--orange); font-weight: 600; }
.pb-team-bio  { font-size: .85rem; color: var(--text-muted); margin: 6px 0 0; line-height: 1.6; }

/* ── Contact form embed ─────────────────────────────────────────── */
.pb-contact-form { max-width: 600px; }
.pb-cf-field { margin-bottom: 16px; }
.pb-cf-field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 5px; }
.pb-cf-field .req { color: var(--red, #dc2626); }
.pb-cf-field input, .pb-cf-field textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 6px; font-size: .9rem; font-family: inherit; }
.pb-cf-field textarea { resize: vertical; }
.pb-cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Testimonials ───────────────────────────────────────────────── */
.pb-testimonials { display: grid; gap: 20px; }
.pb-testimonials-2 { grid-template-columns: repeat(2,1fr); }
.pb-testimonials-3 { grid-template-columns: repeat(3,1fr); }
.pb-testimonials-4 { grid-template-columns: repeat(4,1fr); }
.pb-testi-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.pb-testi-stars { display: flex; gap: 2px; }
.pb-testi-body { margin: 0; font-size: .95rem; line-height: 1.65; color: #374151; flex: 1; }
.pb-testi-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.pb-testi-photo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.pb-testi-initials { width: 42px; height: 42px; border-radius: 50%; background: #1a2e4a; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.pb-testi-name { display: block; font-size: .875rem; font-weight: 700; color: #111827; }
.pb-testi-role { display: block; font-size: .78rem; color: #6b7280; }
.pb-testi-source { display: block; font-size: .72rem; color: #9ca3af; margin-top: 2px; }
@media (max-width: 768px) { .pb-testimonials-3, .pb-testimonials-4 { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 500px) { .pb-testimonials-2, .pb-testimonials-3, .pb-testimonials-4 { grid-template-columns: 1fr !important; } }

/* ── Newsletter block ───────────────────────────────────────────── */
.pb-newsletter { text-align: center; max-width: 560px; margin: 0 auto; padding: 20px 0; }
.pb-newsletter-heading { font-size: 1.6rem; font-weight: 800; color: var(--navy,#1a2e4a); margin: 0 0 10px; }
.pb-newsletter-sub { color: #6b7280; font-size: 1rem; margin: 0 0 20px; }
.pb-newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.pb-nl-input { width: 100%; padding: 12px 16px; border: 1.5px solid #d1d5db; border-radius: 8px; font-size: .95rem; transition: border-color .2s; }
.pb-nl-input:focus { outline: none; border-color: var(--navy,#1a2e4a); }
.pb-nl-row { display: flex; gap: 8px; }
.pb-nl-row .pb-nl-email { flex: 1; }
.pb-nl-btn { padding: 12px 24px; background: var(--orange,#C9A84C); color: #fff; border: none; border-radius: 8px; font-weight: 700; font-size: .95rem; cursor: pointer; white-space: nowrap; transition: background .2s; }
.pb-nl-btn:hover { background: var(--orange-dark,#A8872A); }
.pb-nl-msg { padding: 10px 14px; border-radius: 7px; font-size: .9rem; font-weight: 600; margin-top: 4px; }
.pb-nl-msg.success { background: #dcfce7; color: #166534; }
.pb-nl-msg.error   { background: #fee2e2; color: #991b1b; }
@media (max-width: 500px) { .pb-nl-row { flex-direction: column; } .pb-nl-btn { width: 100%; } }

/* ── Responsive: tablet (≤900px) ───────────────────────────────── */
@media (max-width: 900px) {
    .pb-cols-grid { grid-template-columns: 1fr !important; }
    .pb-cta-split { grid-template-columns: 1fr !important; }
    .pb-features-3, .pb-features-4 { grid-template-columns: repeat(2,1fr) !important; }
    .pb-team-3, .pb-team-4 { grid-template-columns: repeat(2,1fr) !important; }
    .pb-gallery-4 { grid-template-columns: repeat(3,1fr) !important; }
    .pb-blog-grid { grid-template-columns: repeat(2,1fr) !important; }
    .caravan-grid { grid-template-columns: repeat(2,1fr) !important; }
    .pb-video-gallery-3 { grid-template-columns: repeat(2,1fr) !important; }
}
/* ── Responsive: mobile (≤600px) ───────────────────────────────── */
@media (max-width: 600px) {
    .pb-features-2, .pb-features-3, .pb-features-4 { grid-template-columns: 1fr !important; }
    .pb-team-2, .pb-team-3, .pb-team-4 { grid-template-columns: 1fr !important; }
    .pb-gallery-2, .pb-gallery-3, .pb-gallery-4 { grid-template-columns: repeat(2,1fr) !important; }
    .pb-blog-grid { grid-template-columns: 1fr !important; }
    .caravan-grid { grid-template-columns: 1fr !important; }
    .pb-cf-row { grid-template-columns: 1fr !important; }
    .pb-video-gallery-2, .pb-video-gallery-3 { grid-template-columns: 1fr !important; }
}
