/* ============================================
   About Page Specific Styles
   ============================================ */

/* Hero Section */
.sherlock-hero-secondary {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.sherlock-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.sherlock-hero-secondary .container {
    position: relative;
    z-index: 2;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.mission-content {
    position: relative;
}

.mission-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #007bff, #0056b3);
    border-radius: 2px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #ffffff;
}

.values-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.values-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.values-card:hover::before {
    transform: scaleX(1);
}

.values-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.values-card:hover .values-icon {
    transform: scale(1.1);
    color: #0056b3;
}

/* History Section */
.history-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stats-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    border-radius: 50%;
    opacity: 0.1;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 123, 255, 0.05);
    transform: translateX(10px);
}

.stat-item i {
    font-size: 2rem;
    margin-right: 1rem;
    width: 50px;
    text-align: center;
}

.stats-numbers {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-number {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-number:hover {
    transform: translateY(-5px);
}

.stat-number h3 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: 2px solid transparent;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
    color: white;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-up:nth-child(2) {
    animation-delay: 0.1s;
}

.fade-in-up:nth-child(3) {
    animation-delay: 0.2s;
}

.fade-in-up:nth-child(4) {
    animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sherlock-hero-secondary {
        padding: 60px 0 40px;
    }
    
    .mission-section,
    .values-section,
    .history-section,
    .cta-section {
        padding: 40px 0;
    }
    
    .values-icon {
        font-size: 2.5rem;
    }
    
    .stat-number h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .mission-content::before {
        display: none;
    }
    
    .stats-numbers {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .sherlock-hero-secondary h1 {
        font-size: 2rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-item i {
        font-size: 1.5rem;
        width: 40px;
    }
} 