/* Terms & Conditions — shared styles for ticket and cargo pages */

.terms-page {
    background: #fff;
}

/* ── Hero ── */
.terms-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF0E8;
    border-bottom: 1px solid rgba(0, 0, 102, 0.06);
}

.terms-hero-content {
    text-align: center;
    padding: 56px 20px 64px;
    max-width: 900px;
    margin: 0 auto;
}

.terms-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.terms-breadcrumb a {
    color: rgba(0, 0, 102, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}

.terms-breadcrumb a:hover {
    color: var(--primary-color, #EF782C);
}

.terms-breadcrumb .sep {
    color: rgba(0, 0, 102, 0.35);
}

.terms-breadcrumb .current {
    color: var(--primary-color, #EF782C);
}

.terms-hero-title {
    font-size: clamp(1.85rem, 4.5vw, 3rem);
    font-weight: 400;
    color: #000066;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.2;
}

/* ── Content ── */
.terms-content-section {
    background: #fff;
    padding: 56px 0 80px;
}

.terms-content-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.terms-content-title {
    font-size: 1.35rem;
    font-weight: 500;
    color: #888;
    margin: 0 0 18px;
    line-height: 1.3;
}

.terms-intro {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #444;
    margin: 0 0 28px;
}

.terms-subheading {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin: 32px 0 14px;
    line-height: 1.4;
}

.terms-subheading:first-of-type {
    margin-top: 0;
}

.terms-content-wrap > p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #444;
    margin: 0 0 16px;
}

.terms-bullet-list,
.terms-dash-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.terms-bullet-list li,
.terms-dash-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.98rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 14px;
}

.terms-bullet-list li:last-child,
.terms-dash-list li:last-child {
    margin-bottom: 0;
}

.terms-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #333;
}

.terms-dash-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    top: 0;
    color: #333;
    font-weight: 600;
}

.terms-bullet-list a,
.terms-content-wrap a {
    color: var(--primary-color, #EF782C);
    text-decoration: none;
    transition: color 0.2s ease;
}

.terms-bullet-list a:hover,
.terms-content-wrap a:hover {
    color: #000066;
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 575px) {
    .terms-hero {
        min-height: 240px;
    }

    .terms-hero-content {
        padding: 44px 16px 52px;
    }

    .terms-content-section {
        padding: 40px 0 64px;
    }
}
