/**
 * About Page Professional Design
 * Trust elements, team, timeline, success stories
 */

/* ============================================
   About Hero Section
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.about-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.trust-badge-item i {
    font-size: 28px;
    color: #10b981;
}

.trust-badge-item span {
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   Company Timeline
   ============================================ */
.company-timeline {
    position: relative;
    padding: 40px 0;
    margin: 40px 0;
}

.company-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #6366f1, #8b5cf6);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-item.active .timeline-year {
    background: linear-gradient(135deg, #10b981, #059669);
    animation: pulse-glow 2s ease-in-out infinite;
}

.timeline-content {
    flex: 1;
    padding: 25px 40px;
    background: #f9fafb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    color: #1f2937;
    font-size: 18px;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #6b7280;
    margin: 0;
}

/* ============================================
   Team Section
   ============================================ */
.team-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 60px 40px;
    border-radius: 16px;
    margin: 60px 0;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 40px;
}

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

.team-member {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #6366f1;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
}

.member-photo {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.member-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: #10b981;
    border: 3px solid #ffffff;
    border-radius: 50%;
}

.member-status.online {
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

.team-member h3 {
    color: #1f2937;
    font-size: 20px;
    margin-bottom: 5px;
}

.member-role {
    color: #6366f1;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.team-member p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.member-social a {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.member-social a:hover {
    background: #6366f1;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================
   Success Stories
   ============================================ */
.success-stories-section {
    padding: 60px 0;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.success-story {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.success-story:hover {
    border-color: #10b981;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    transform: translateY(-4px);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}

.story-platform {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.story-platform i {
    font-size: 24px;
    color: #6366f1;
}

.story-date {
    font-size: 13px;
    color: #9ca3af;
}

.story-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.metric-change {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.metric-change .before {
    color: #9ca3af;
    font-size: 16px;
    font-weight: 600;
}

.metric-change i {
    color: #10b981;
    font-size: 14px;
}

.metric-change .after {
    color: #10b981;
    font-size: 24px;
    font-weight: 700;
}

.metric-change .label {
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-story blockquote {
    font-style: italic;
    color: #1f2937;
    margin: 20px 0;
    padding: 20px;
    background: #f9fafb;
    border-left: 4px solid #10b981;
    border-radius: 8px;
    line-height: 1.6;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 2px solid #f3f4f6;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.story-author strong {
    color: #1f2937;
    display: block;
    font-size: 15px;
}

.story-author span {
    color: #6b7280;
    font-size: 13px;
}

/* ============================================
   Contact Info Section
   ============================================ */
.contact-info-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 60px 40px;
    border-radius: 16px;
    margin: 60px 0;
}

.contact-info-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1f2937;
}

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

.info-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #6366f1;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
}

.info-card h4 {
    color: #1f2937;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info-card h4 i {
    color: #6366f1;
    font-size: 24px;
}

.info-card p {
    color: #6b7280;
    margin: 10px 0;
    line-height: 1.6;
}

.info-card strong {
    color: #1f2937;
    display: block;
    margin: 10px 0;
}

.info-card .btn {
    margin: 15px 0;
}

.info-note {
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: #10b981;
}

/* ============================================
   Improved Stats Section
   ============================================ */
.stats-section-improved {
    padding: 60px 0;
}

.stats-grid-improved {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card-improved {
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card-improved:hover {
    border-color: #6366f1;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
}

.stat-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.stat-number-large {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.stat-label-large {
    font-size: 16px;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-subtext {
    font-size: 13px;
    color: #9ca3af;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-section {
    padding: 60px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: #6366f1;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.why-card h3 {
    color: #1f2937;
    font-size: 20px;
    margin-bottom: 15px;
}

.why-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.why-proof {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

/* ============================================
   Improved CTA Section
   ============================================ */
.about-cta-improved {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 16px;
    margin: 60px 0;
    text-align: center;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.cta-content h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 16px;
}

.cta-buttons .btn-primary {
    background: #ffffff;
    color: #6366f1;
}

.cta-buttons .btn-primary:hover {
    background: #f3f4f6;
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-guarantee {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* ============================================
   About Content Sections
   ============================================ */
.about-content {
    padding: 60px 0;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.about-section .lead {
    font-size: 20px;
    color: #1f2937;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-section p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }

    .timeline-content {
        padding: 20px;
    }

    .company-timeline::before {
        left: 50px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about-trust-badges {
        gap: 15px;
    }

    .trust-badge-item {
        padding: 12px 20px;
    }

    .company-timeline {
        padding-left: 80px;
    }

    .company-timeline::before {
        left: 50px;
    }

    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 18px;
    }

    .team-section,
    .company-info-section,
    .about-cta-improved {
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .stat-number-large {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0 40px;
    }

    .about-hero h1 {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 14px;
    }

    .company-timeline {
        padding-left: 60px;
    }

    .company-timeline::before {
        left: 30px;
    }

    .member-avatar {
        width: 80px;
        height: 80px;
        font-size: 26px;
    }

    .stat-icon-large {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .stat-number-large {
        font-size: 32px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
