/* ================================================================
   Book Melbourne Taxi — specialty-pages.css
   NDIS / TAC / WorkSafe Transport Pages
   ================================================================ */

/* ── Per-page accent colours ─────────────────────────────────── */
.sp-page          { --sp-accent: #D4890A; --sp-accent-light: #F5A623; }
.sp-page--ndis    { --sp-accent: #7B2D8B; --sp-accent-light: #a855c8; }
.sp-page--tac     { --sp-accent: #D4890A; --sp-accent-light: #F5A623; }
.sp-page--ws      { --sp-accent: #1565C0; --sp-accent-light: #42A5F5; }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.sp-breadcrumb { margin-bottom: 28px; }
.sp-breadcrumb a,
.sp-breadcrumb span { color: rgba(255,255,255,.45); font-size: 13px; text-decoration: none; }
.sp-breadcrumb-sep { margin: 0 6px; }
.sp-breadcrumb-current { color: var(--sp-accent-light) !important; }

/* ── Hero ────────────────────────────────────────────────────── */
.sp-hero {
    background: linear-gradient(135deg, #0A0D14 0%, #0F1320 100%);
    margin-top: 116px;
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}
.sp-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, var(--sp-accent) 0%, transparent 65%);
    opacity: 0.14;
    pointer-events: none;
}
.sp-hero-inner {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.sp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.85);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 0;
    margin-bottom: 22px;
}
.sp-hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sp-accent-light);
    flex-shrink: 0;
}
.sp-hero h1 {
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 18px;
    letter-spacing: -.02em;
}
.sp-hero-sub {
    color: rgba(255,255,255,.7);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 32px;
    max-width: 520px;
}
.sp-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.sp-hero-dots {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.sp-hero-dot {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.5);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.sp-hero-dot::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sp-accent-light);
    flex-shrink: 0;
}

/* Hero right card */
.sp-hero-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 0;
    padding: 32px;
    backdrop-filter: blur(10px);
}
.sp-hero-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--sp-accent-light);
    margin: 0 0 8px;
}
.sp-hero-card-sub {
    color: rgba(255,255,255,.6);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 22px;
}
.sp-hero-card-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.08);
    margin: 20px 0;
}
.sp-hero-card-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255,255,255,.6);
    font-size: 13px;
}
.sp-hero-card-feature svg { color: var(--sp-accent-light); flex-shrink: 0; }

/* ── Shared Buttons ──────────────────────────────────────────── */
.sp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 0;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
    cursor: pointer;
    border: none;
}
.sp-btn--primary {
    background: #FFC000;
    color: #1A1A1A;
    border: 2px solid #FFC000;
}
.sp-btn--primary:hover {
    background: #1A1A1A;
    color: #fff;
    border-color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.sp-btn--outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.sp-btn--outline:hover {
    background: #fff;
    color: #1A1A1A;
    transform: translateY(-2px);
}
.sp-btn--dark {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.sp-btn--dark:hover {
    background: #fff;
    color: #1A1A1A;
    transform: translateY(-2px);
}
.sp-btn--wa { background: #25D366; color: #fff; border: 2px solid #25D366; }
.sp-btn--wa:hover { opacity: .9; }
.sp-btn--block { display: flex; width: 100%; border-radius: 0; margin-bottom: 10px; }

/* ── Trust Bar ───────────────────────────────────────────────── */
.sp-trust-bar { background: var(--sp-accent); padding: 13px 0; }
.sp-trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}
.sp-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

/* ── Sections ────────────────────────────────────────────────── */
.sp-section        { padding: 80px 0; }
.sp-section--sm    { padding: 64px 0; }
.sp-section--white  { background: #fff; }
.sp-section--light  { background: #F8F9FC; }
.sp-section--dark   { background: linear-gradient(135deg, #0A0D14, #0F1320); }
.sp-section--accent { background: var(--sp-accent); }
.sp-section--accent .sp-cta-wrap h2 { color: #fff; }
.sp-section--accent .sp-cta-wrap p  { color: rgba(255,255,255,.8); }

.sp-section-header { text-align: center; margin-bottom: 52px; }
.sp-section-label {
    display: inline-block;
    background: rgba(212,137,10,.1);
    color: var(--sp-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 0;
    margin-bottom: 14px;
}
.sp-section--dark .sp-section-label {
    background: rgba(255,255,255,.07);
    color: var(--sp-accent-light);
}
.sp-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #0A0D14;
    margin: 0 0 14px;
    letter-spacing: -.02em;
}
.sp-section--dark .sp-section-title { color: #fff; }
.sp-section-sub {
    color: #6B748A;
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}
.sp-section--dark .sp-section-sub { color: rgba(255,255,255,.55); }

/* ── 2-column info layout ────────────────────────────────────── */
.sp-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sp-info-text p { color: #6B748A; font-size: 16px; line-height: 1.8; margin: 0 0 14px; }
.sp-info-text p strong { color: #0A0D14; }

.sp-checklist-card {
    background: #F8F9FC;
    border-radius: 0;
    padding: 36px;
    border: 1px solid #eef0f5;
}
.sp-checklist-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0A0D14;
    margin: 0 0 20px;
}
.sp-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}
.sp-check-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--sp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.sp-checklist-item > span { color: #6B748A; font-size: 14px; line-height: 1.6; }
.sp-checklist-note { color: #6B748A; font-size: 12px; font-style: italic; margin: 14px 0 0; }
.sp-checklist-note a { color: var(--sp-accent); font-weight: 600; text-decoration: none; }

/* ── Cards ───────────────────────────────────────────────────── */
.sp-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.sp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.sp-card {
    background: #fff;
    border-radius: 0;
    padding: 28px;
    border: 1px solid #eef0f5;
    border-top: 3px solid var(--sp-accent);
    transition: box-shadow .2s, transform .2s;
}
.sp-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-2px); }
.sp-card--light { background: #F8F9FC; }
.sp-card--dark {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-top: 3px solid var(--sp-accent-light);
}
.sp-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: rgba(212,137,10,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--sp-accent);
}
.sp-card--dark .sp-card-icon { background: rgba(255,255,255,.07); color: var(--sp-accent-light); }
.sp-card--light .sp-card-icon { background: #fff; }
.sp-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0A0D14;
    margin: 0 0 9px;
}
.sp-card--dark h3 { color: #fff; }
.sp-card p { color: #6B748A; font-size: 14px; line-height: 1.7; margin: 0; }
.sp-card--dark p { color: rgba(255,255,255,.5); }

/* ── Vehicle Cards ───────────────────────────────────────────── */
.sp-vehicle-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 0;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: background .2s;
}
.sp-vehicle-card:hover { background: rgba(255,255,255,.08); }
.sp-vehicle-icon {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sp-accent-light);
}
.sp-vehicle-body { flex: 1; }
.sp-vehicle-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
}
.sp-vehicle-specs { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.sp-vehicle-spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.55);
}
.sp-vehicle-spec--hi { color: var(--sp-accent-light); }
.sp-vehicle-body p { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.65; margin: 0 0 16px; }

/* ── Steps ───────────────────────────────────────────────────── */
.sp-steps-wrap { position: relative; }
.sp-steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.sp-steps-line {
    position: absolute;
    top: 27px;
    left: calc(16.7% + 10px);
    right: calc(16.7% + 10px);
    height: 2px;
    background: linear-gradient(90deg, var(--sp-accent), var(--sp-accent-light));
    z-index: 0;
}
.sp-step { text-align: center; }
.sp-step-num {
    width: 56px;
    height: 56px;
    background: var(--sp-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.sp-step h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0A0D14;
    margin: 0 0 10px;
}
.sp-step p { color: #6B748A; font-size: 14px; line-height: 1.7; margin: 0; }

/* ── Billing Cards ───────────────────────────────────────────── */
.sp-billing-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-top: 3px solid var(--sp-accent-light);
    border-radius: 0;
    padding: 24px;
}
.sp-billing-card h3 {
    color: var(--sp-accent-light);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 10px;
}
.sp-billing-card p { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.65; margin: 0; }

/* ── Area Tags ───────────────────────────────────────────────── */
.sp-areas-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.sp-area-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #F8F9FC;
    border: 1px solid #e5e9f0;
    border-radius: 0;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #0A0D14;
}
.sp-area-tag svg { color: var(--sp-accent); flex-shrink: 0; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.sp-faq-wrap { max-width: 820px; margin: 0 auto; }
.sp-faq-item { border-bottom: 1px solid #e5e9f0; }
.sp-faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    gap: 16px;
}
.sp-faq-q {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0A0D14;
    line-height: 1.4;
    text-align: left;
}
.sp-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212,137,10,.1);
    color: var(--sp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .3s;
}
.sp-faq-btn[aria-expanded="true"] .sp-faq-icon {
    background: var(--sp-accent);
    color: #fff;
    transform: rotate(180deg);
}
.sp-faq-body { display: none; padding-bottom: 20px; }
.sp-faq-body.is-open { display: block; }
.sp-faq-body p { color: #6B748A; font-size: 15px; line-height: 1.75; margin: 0; }

/* ── CTA Banner ──────────────────────────────────────────────── */
.sp-cta-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.sp-cta-wrap h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #0A0D14;
    margin: 0 0 14px;
}
.sp-cta-wrap p { color: #6B748A; font-size: 16px; max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.sp-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Note Box ────────────────────────────────────────────────── */
.sp-note {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-left: 4px solid var(--sp-accent-light);
    border-radius: 0;
    padding: 16px 22px;
    margin-top: 22px;
}
.sp-note p { color: rgba(255,255,255,.7); font-size: 14px; margin: 0; line-height: 1.6; }
.sp-note a { color: var(--sp-accent-light); font-weight: 600; text-decoration: none; }

/* ── FAQ JS init ─────────────────────────────────────────────── */
.sp-faq-body { display: none; }
.sp-faq-body.is-open { display: block; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .sp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .sp-hero-card { max-width: 500px; }
    .sp-grid-3 { grid-template-columns: 1fr 1fr; }
    .sp-steps-line { display: none; }
    .sp-steps { grid-template-columns: 1fr; gap: 20px; }
    .sp-step { text-align: left; display: flex; gap: 18px; align-items: flex-start; }
    .sp-step-num { margin: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 16px; }
}
@media (max-width: 768px) {
    .sp-hero { padding: 60px 0 56px; }
    .sp-section { padding: 48px 0; }
    .sp-section--sm { padding: 36px 0; }
    .sp-2col { grid-template-columns: 1fr; gap: 28px; }
    .sp-grid-3 { grid-template-columns: 1fr; }
    .sp-grid-2 { grid-template-columns: 1fr; }
    .sp-hero-actions { flex-direction: column; }
    .sp-hero-actions .sp-btn { justify-content: center; }
    .sp-vehicle-card { flex-direction: column; gap: 16px; }
    .sp-trust-bar-inner { gap: 14px; justify-content: flex-start; padding: 0 16px; }
    .sp-cta-actions { flex-direction: column; }
    .sp-cta-actions .sp-btn { justify-content: center; }
}

/* ── Scheme logo in hero ── */
.sp-scheme-logo {
    display: block;
    margin-bottom: 24px;
}
.sp-scheme-logo svg,
.sp-scheme-logo img {
    display: block;
    max-height: 60px;
    width: auto;
}
