/* Shared styling for the advertising service detail pages.
   Matches the rate card on /advertise. Palette:
   bg #1A1A1A | card #232323 | border #2E2E2E | accent #FFC107
   text #E0E0E0 | muted #B8B8B8 | dim #8A8A8A                     */

/* style.css line ~1330 defines a GLOBAL, unscoped `h3:before` that stamps an amber
   circle badge on every h3 on the site. It is meant for numbered review headings that
   carry a data-number attribute; on any other h3 it renders as an empty amber blob.
   style.css loads after this file, so we cannot win on order - these selectors carry
   a class and therefore outrank the bare `h3:before` on specificity instead. */
.price-panel h3::before,
.detail-card h3::before,
.enquire-block h3::before,
.service-section h3::before {
    display: none !important;
    content: none !important;
}

.service-section {
    background: #1A1A1A;
    color: #E0E0E0;
    padding: 64px 0;
}

.service-section.section-divider {
    border-top: 1px solid #2E2E2E;
}

.service-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.service-section .section-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #B8B8B8;
    max-width: 720px;
    margin: 0 auto 8px;
}

.service-section .eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFC107;
    margin-bottom: 12px;
}

/* --- Price panel ------------------------------------------------------- */

.price-panel {
    background: #232323;
    border: 1px solid #2E2E2E;
    border-radius: 12px;
    padding: 32px 28px;
    /* width, not height: these sit inside .d-flex columns and stretch to match
       their row. `height: 100%` breaks whenever more than one card shares a
       column - each child claims the full column height and they overlap. */
    width: 100%;
    display: flex;
    flex-direction: column;
}

.price-panel.featured {
    border-color: #FFC107;
}

    .price-panel h3 {
        color: #FFFFFF;
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .price-panel .panel-spec {
        font-size: 0.85rem;
        color: #8A8A8A;
        margin-bottom: 16px;
    }

    .price-panel .price-line {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #2E2E2E;
    }

    .price-panel .price {
        font-size: 2.5rem;
        font-weight: 800;
        color: #FFC107;
        line-height: 1;
    }

    .price-panel .price-period {
        font-size: 0.95rem;
        color: #8A8A8A;
    }

/* Included / excluded lists */
.spec-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
    flex-grow: 1;
}

    .spec-list li {
        position: relative;
        padding-left: 26px;
        margin-bottom: 10px;
        font-size: 0.98rem;
        line-height: 1.55;
        color: #B8B8B8;
    }

        .spec-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 7px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #FFC107;
        }

        .spec-list li.excluded {
            color: #8A8A8A;
        }

            .spec-list li.excluded::before {
                background: #4A4A4A;
            }

/* --- Buttons ----------------------------------------------------------- */

.btn-book {
    display: inline-block;
    align-self: flex-start;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 28px;
    background: #FFC107;
    border: 1px solid #FFC107;
    border-radius: 8px;
    color: #1A1A1A;
    text-decoration: none;
    transition: background 0.2s;
}

    .btn-book:hover {
        background: #E0A800;
        border-color: #E0A800;
        color: #1A1A1A;
        text-decoration: none;
    }

.btn-ghost {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 11px 26px;
    border: 1px solid #4A4A4A;
    border-radius: 8px;
    color: #B8B8B8;
    background: transparent;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

    .btn-ghost:hover {
        border-color: #FFC107;
        color: #FFC107;
        text-decoration: none;
    }

/* --- Detail / copy blocks ---------------------------------------------- */

.detail-card {
    background: #232323;
    border: 1px solid #2E2E2E;
    border-radius: 12px;
    padding: 28px;
    width: 100%;
}

    .detail-card h3 {
        color: #FFFFFF;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 14px;
        padding-bottom: 12px;
        border-bottom: 1px solid #2E2E2E;
    }

    .detail-card p {
        font-size: 0.98rem;
        line-height: 1.7;
        color: #B8B8B8;
        margin-bottom: 0;
    }

.stat-inline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
    margin-top: 36px;
}

.stat-inline-item {
    text-align: center;
}

    .stat-inline-item .stat-number {
        display: block;
        font-size: 2rem;
        font-weight: 800;
        color: #FFC107;
        line-height: 1.1;
    }

    .stat-inline-item .stat-label {
        font-size: 0.9rem;
        color: #8A8A8A;
    }

/* --- Enquiry block ------------------------------------------------------ */

.enquire-block {
    background: #232323;
    border: 1px solid #2E2E2E;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    margin-top: 8px;
}

    .enquire-block h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .enquire-block p {
        font-size: 1rem;
        color: #B8B8B8;
        max-width: 560px;
        margin: 0 auto 24px;
    }

.enquire-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

    .enquire-actions .btn-book {
        align-self: auto;
    }

.enquire-email {
    display: block;
    margin-top: 18px;
    font-size: 0.95rem;
    color: #8A8A8A;
}

    .enquire-email a {
        color: #FFC107;
        text-decoration: none;
    }

        .enquire-email a:hover {
            text-decoration: underline;
        }

/* --- Responsive --------------------------------------------------------- */

@media (max-width: 767px) {
    .service-section h1 {
        font-size: 2rem;
    }

    .price-panel {
        margin-bottom: 16px;
    }

    .detail-card {
        margin-bottom: 16px;
    }

    .stat-inline {
        gap: 28px;
    }
}
