/**
 * 0711 Corporate Group Template - page.css
 * Shared styles for inner pages (about, contact, sitemap)
 * Page banner, breadcrumb, section headers
 */

/* ===== Page Banner ===== */
.page-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 24px;
    text-align: center;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.08) 0%, transparent 60%);
    pointer-events: none;
}
.page-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.page-banner-label {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
}
.page-banner-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 16px;
    letter-spacing: .02em;
    text-shadow: 0 2px 16px rgba(0,0,0,.2);
}
.page-banner-desc {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin: 0;
}

/* ===== Breadcrumb ===== */
.breadcrumb-nav {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 14px 0;
    font-size: 13px;
}
.breadcrumb-nav a {
    color: var(--color-text-secondary);
    transition: color var(--tr-fast);
}
.breadcrumb-nav a:hover { color: var(--color-primary); }
.breadcrumb-sep {
    margin: 0 10px;
    color: var(--color-text-muted);
}
.breadcrumb-current {
    color: var(--color-primary);
    font-weight: 600;
}

/* ===== Shared Section Styles (reuse from home.css design tokens) ===== */
.section-header {
    text-align: center;
    margin-bottom: 52px;
}
.section-label {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: rgba(14,144,107,.06);
    color: var(--color-primary);
}
.section-label--gold { background: rgba(197,165,114,.12); color: var(--color-accent-dark); }
.section-label--light { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 12px;
    line-height: 1.3;
    letter-spacing: .01em;
}
.section-title--light { color: #fff; }
.section-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 680px;
}
.section-desc--light { color: rgba(255,255,255,.65); }
.gold-divider {
    display: inline-block;
    width: 48px;
    height: 3px;
    background: var(--color-accent);
    margin-bottom: 20px;
    border-radius: 2px;
}

/* ===== CTA Card (shared) ===== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all .3s cubic-bezier(0.4,0,0.2,1);
    letter-spacing: .02em;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-cta-primary {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(197,165,114,.30);
}
.btn-cta-primary:hover {
    background: var(--color-accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197,165,114,.40);
}
.btn-cta-outline {
    background: transparent;
    border-color: rgba(255,255,255,.4);
    color: #fff;
}
.btn-cta-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== Advantage Card Hover Colors (shared with home) ===== */
.adv-card-1 { --adv-color: #0E906B; --adv-rgb: 14,144,107; }
.adv-card-2 { --adv-color: #14B37A; --adv-rgb: 20,179,122; }
.adv-card-3 { --adv-color: #C5A572; --adv-rgb: 197,165,114; }
.adv-card-4 { --adv-color: #E8853A; --adv-rgb: 232,133,58; }
.adv-card-5 { --adv-color: #3DA5A0; --adv-rgb: 61,165,160; }
.adv-card-6 { --adv-color: #6B7FD7; --adv-rgb: 107,127,215; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .page-banner { padding: 60px 24px; }
    .page-banner-title { font-size: 36px; }
}
@media (max-width: 768px) {
    .page-banner { padding: 50px 24px; }
    .page-banner-title { font-size: 30px; }
    .page-banner-desc { font-size: 14px; }
    .section-title { font-size: 30px; }
    .section-header { margin-bottom: 38px; }
}
@media (max-width: 480px) {
    .page-banner { padding: 40px 20px; }
    .page-banner-title { font-size: 26px; }
    .section-title { font-size: 26px; }
    .btn-cta { padding: 12px 28px; font-size: 14px; }
}
