/*
 * GOLD CENTER - About Page Styles
 * Dedicated CSS for about us page
 * Version 1.0
 */

/* ========================================
   About Header
======================================== */
.about-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    padding: 140px 24px 80px;
    text-align: center;
    color: white;
}

.about-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Story Section
======================================== */
.story-section {
    padding: 80px 24px;
    background: #f9fafb;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.story-image {
    position: relative;
}

.story-image .main-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-image .accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    padding: 24px 32px;
    border-radius: 16px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.story-image .accent-box .number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.story-image .accent-box .label {
    font-size: 14px;
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.story-content p {
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 15px;
}

.story-content .highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 20px 24px;
    border-radius: 12px;
    border-right: 4px solid #fbbf24;
    font-weight: 600;
    color: #92400e;
}

/* ========================================
   Values Section
======================================== */
.values-section {
    padding: 80px 24px;
    background: white;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.section-header p {
    color: #6b7280;
    font-size: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.value-card {
    background: #f9fafb;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.value-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card .icon svg {
    width: 32px;
    height: 32px;
    color: #b45309;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.value-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   Stats Section
======================================== */
.stats-section {
    padding: 60px 24px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-item .number {
    font-size: 3rem;
    font-weight: 700;
    color: #fbbf24;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Team Section
======================================== */
.team-section {
    padding: 80px 24px;
    background: #f9fafb;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.team-card .photo {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card .photo svg {
    width: 80px;
    height: 80px;
    color: #9ca3af;
}

.team-card .info {
    padding: 24px;
}

.team-card .name {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 14px;
    color: #b45309;
    font-weight: 600;
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    padding: 80px 24px;
    background: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
}

.cta-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 16px;
}

.cta-container p {
    color: #b45309;
    font-size: 16px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.3);
}

.cta-btn.secondary {
    background: white;
    color: #92400e;
}

.cta-btn.secondary:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 768px) {
    .about-header {
        padding: 120px 16px 60px;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .story-section,
    .values-section,
    .team-section,
    .cta-section {
        padding: 60px 16px;
    }

    .story-content h2 {
        font-size: 1.75rem;
    }

    .cta-container {
        padding: 40px 24px;
    }
}