/* ─── Contact Page ────────────────────────────────────────────────── */

.ct-page {
    position: relative;
    background-image: url('../img/hero.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.ct-page__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.ct-page__content {
    position: relative;
    z-index: 1;
    padding: 36px 0 60px;
}

/* ─── Page Title ─────────────────────────────────────────────────── */
.ct-page-title {
    text-align: center;
    padding: 0 0 28px;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
    margin: 0;
}

/* ─── Accordion ───────────────────────────────────────────────────── */
.ct-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 10px;
}

.ct-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .03em;
    padding: 16px 20px;
    box-shadow: none !important;
    border-radius: 10px !important;
}

.ct-accordion .accordion-button:not(.collapsed) {
    background: rgba(26, 122, 26, 0.35);
    color: #f0c040;
}

.ct-accordion .accordion-button::after {
    filter: invert(1) brightness(2);
}

.ct-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
}

.ct-accordion .accordion-collapse {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ct-accordion .accordion-body {
    padding: 0;
}

/* ─── Table ───────────────────────────────────────────────────────── */
.ct-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    font-size: .875rem;
    color: rgba(255, 255, 255, .9);
}

.ct-table thead th {
    background: rgba(26, 122, 26, 0.5);
    color: #f0c040;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 12px 18px;
    border: none;
}

.ct-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background .2s;
}

.ct-table tbody tr:last-child {
    border-bottom: none;
}

.ct-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.07);
}

.ct-table tbody td {
    padding: 12px 18px;
    border: none;
    vertical-align: middle;
}

.ct-table td:last-child {
    white-space: nowrap;
    color: #86efac;
    font-weight: 600;
}

/* ─── Empty state ─────────────────────────────────────────────────── */
.ct-empty {
    text-align: center;
    padding: 20px;
    color: rgba(255,255,255,.5);
    font-size: .85rem;
}
