/* Image and Visual Enhancements */

/* Background Images with Navy/Gold Theme */
.hero-with-bg {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.7)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="legal-pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><rect width="60" height="60" fill="%23f8f9fa"/><circle cx="30" cy="30" r="2" fill="%23d4af37" opacity="0.3"/></pattern></defs><rect width="1200" height="800" fill="url(%23legal-pattern)"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-with-pattern {
    background: linear-gradient(135deg, var(--light-gray), rgba(212, 175, 55, 0.05));
    position: relative;
}

.section-with-pattern::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="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Decorative Elements */
.decorative-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.decorative-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px auto;
    border-radius: 2px;
}

/* Card Enhancements with Images */
.enhanced-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(10, 37, 64, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
}

.enhanced-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.15);
}

/* Image Placeholders with Legal Theme */
.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

/* Achievement Badges */
.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--navy);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin: 5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.achievement-icon {
    width: 24px;
    height: 24px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 12px;
}

/* Team Member Cards */
.team-member {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(10, 37, 64, 0.08);
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), rgba(10, 37, 64, 0.8));
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 48px;
    font-weight: bold;
    border: 4px solid var(--gold);
}

/* About Section Visual Elements */
.about-visual {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.05), rgba(212, 175, 55, 0.05));
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
}

.about-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Stats Enhancement */
.stats-enhanced {
    background: linear-gradient(135deg, var(--navy), rgba(10, 37, 64, 0.9));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-enhanced::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 200 200"><defs><pattern id="legal-grid" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="200" height="200" fill="url(%23legal-grid)"/></svg>');
    opacity: 0.2;
}

/* Responsive Images */
@media (max-width: 768px) {
    .decorative-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
    
    .about-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
}

