/* ============================================
   GOLDSTEP CAPITAL LTD - Shared Page Styles
   Page headers, breadcrumbs, common layouts
   used across About, Services, Contact, Apply
   ============================================ */

/* ============================================
   PAGE HEADERS (All Inner Pages)
   ============================================ */
.page-header {
    padding: 110px 0 50px;
    background: var(--black);
    text-align: center;
    position: relative;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--gray-light);
    position: relative;
}

.breadcrumb a {
    color: var(--gold-primary);
}

.breadcrumb span {
    color: var(--gray-light);
}

/* ============================================
   COMMON SECTION STYLES
   ============================================ */
.content-section {
    padding: var(--section-padding);
    background: var(--white);
}

.content-section.alt-bg {
    background: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--gray);
}

/* ============================================
   CARD GRID (Reusable)
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-primary);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--white);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--black);
}

.card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   CTA SECTION (Shared)
   ============================================ */
.cta-section {
    padding: 45px 0;
    background: var(--gold-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    background: var(--black);
    color: var(--white);
}

.cta-content .btn:hover {
    background: var(--white);
    color: var(--black);
}

/* ============================================
   STATS SECTION (Shared)
   ============================================ */
.stats-section {
    padding: var(--section-padding);
    background: var(--black);
    color: var(--white);
}

.stats-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.stats-text {
    flex: 1;
}

.stats-text .section-subtitle {
    color: var(--gold-primary);
}

.stats-text .section-title {
    color: var(--white);
}

.stats-text p {
    color: var(--gray-light);
}

.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SHARED PAGE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 90px 0 40px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .card-grid,
    .card-grid.cols-2,
    .card-grid.cols-4 {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 30px 24px;
    }
    
    .stats-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .stats-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cta-section {
        padding: 36px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 80px 0 32px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}