/* ===== PAGES CSS - Trailfit Sous-pages ===== */

/* Page Hero */
.page-hero {
    padding: 160px 0 80px;
    background: #111;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139,197,63,.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.4);
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.page-breadcrumb a {
    color: #8BC53F;
    text-decoration: none;
}

.page-breadcrumb a:hover {
    color: #a4d65a;
}

.page-breadcrumb .sep {
    color: rgba(255,255,255,.2);
}

.page-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: #fff;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 16px;
}

.page-hero h1 .accent {
    color: #8BC53F;
}

.page-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,.6);
    max-width: 600px;
    line-height: 1.6;
}

/* Page Content */
.page-section {
    padding: 100px 0;
}

.page-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-section.dark {
    background: #0a0a0a;
}

.page-section.darker {
    background: #111;
}

.page-section.darkest {
    background: #080808;
}

/* Section headers */
.page-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #8BC53F;
    margin-bottom: 16px;
}

.page-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.page-section h2 .accent {
    color: #8BC53F;
}

.page-section-text {
    font-size: 16px;
    color: rgba(255,255,255,.6);
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 24px;
}

.page-section-text strong {
    color: #fff;
    font-weight: 600;
}

/* Content grid (text + image) */
.page-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-content-grid.reverse {
    direction: rtl;
}

.page-content-grid.reverse > * {
    direction: ltr;
}

.page-content-img {
    border-radius: 16px;
    overflow: hidden;
}

.page-content-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Feature cards */
.page-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.page-feature-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all .3s ease;
}

.page-feature-card:hover {
    background: rgba(139,197,63,.06);
    border-color: rgba(139,197,63,.15);
    transform: translateY(-4px);
}

.page-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(139,197,63,.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #8BC53F;
}

.page-feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.page-feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
}

/* Info list */
.page-info-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.page-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 15px;
    color: rgba(255,255,255,.7);
}

.page-info-list li svg {
    min-width: 20px;
    color: #8BC53F;
    margin-top: 2px;
}

/* Pricing cards for animations */
.page-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.page-pricing-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all .3s ease;
}

.page-pricing-card:hover {
    border-color: rgba(139,197,63,.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

.page-pricing-card-img {
    height: 200px;
    overflow: hidden;
}

.page-pricing-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.page-pricing-card:hover .page-pricing-card-img img {
    transform: scale(1.05);
}

.page-pricing-card-body {
    padding: 24px;
}

.page-pricing-card-body h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.page-pricing-card-body .price {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #8BC53F;
    margin-bottom: 4px;
}

.page-pricing-card-body .price-detail {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}

.page-pricing-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.page-pricing-card-body li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    padding: 6px 0;
}

.page-pricing-card-body li svg {
    min-width: 16px;
    color: #8BC53F;
}

.page-pricing-card-body .btn-primary {
    display: block;
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, #8BC53F, #5da828);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .3s ease;
}

.page-pricing-card-body .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139,197,63,.3);
}

/* Station locations grid */
.page-stations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.page-station-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}

.page-station-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-station-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,.8));
}

.page-station-card-overlay h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
}

/* CTA Banner */
.page-cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #8BC53F, #5da828);
    text-align: center;
}

.page-cta-banner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.page-cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    margin-bottom: 32px;
}

.page-cta-banner .btn {
    display: inline-block;
    padding: 16px 40px;
    background: #0a0a0a;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s ease;
}

.page-cta-banner .btn:hover {
    background: #fff;
    color: #0a0a0a;
    transform: translateY(-3px);
}

/* Process steps */
.page-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.page-step {
    text-align: center;
}

.page-step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8BC53F, #5da828);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: #fff;
    margin: 0 auto 16px;
}

.page-step h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.page-step p {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 { font-size: 40px; }
    .page-section h2 { font-size: 36px; }
    .page-content-grid { grid-template-columns: 1fr; gap: 32px; }
    .page-content-grid.reverse { direction: ltr; }
    .page-features { grid-template-columns: 1fr; }
    .page-pricing-grid { grid-template-columns: 1fr; }
    .page-stations-grid { grid-template-columns: repeat(2, 1fr); }
    .page-cta-banner h2 { font-size: 32px; }
}
