/* Additional Professional Enhancements for Lawyer Portfolio */

/* Add this to the main style.css or import it */

/* Professional Services Section Enhancements */
.services .main-text span{
    color: #fdfdfd;
    font-size: .8rem;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-box{
    flex: 1 1 18rem;
    padding: 2rem 1rem 2rem;
    text-align: center;
    background: var(--secon-bg-color);
    transition: transform .4s;
    border-radius: 10px;
}

.services-btn{
    width: auto;
    justify-content: center;
}

.services-box:hover{
    transform: translateY(-.7rem);
}

.services-box h3{
    margin-top: 10px;
    font-size: 1.5rem;
}

.services-box p{
    margin: .5rem 0 1.5rem 0;
    font-weight: 300;
    letter-spacing: 1px;
    color: #bdbdbd;
    line-height: 1.6;
}

/* Enhanced Typography for Legal Profession */
.legal-emphasis {
    font-family: var(--font-accent);
    color: var(--primary-gold);
    font-weight: 600;
    text-shadow: var(--font-neon-text-shadow);
}

/* Professional Skill Bars with Legal Theme */
.skill-bar .bar .legal-research{
    width: 95%;
    background: linear-gradient(45deg, var(--primary-gold), var(--rich-burgundy));
    animation: legalResearch 3s;
}

.skill-bar .bar .litigation{
    width: 88%;
    background: linear-gradient(45deg, var(--rich-burgundy), var(--primary-gold));
    animation: litigation 3.5s;
}

.skill-bar .bar .negotiation{
    width: 92%;
    background: linear-gradient(45deg, var(--primary-gold), var(--elegant-silver));
    animation: negotiation 4s;
}

.skill-bar .bar .client-relations{
    width: 90%;
    background: linear-gradient(45deg, var(--elegant-silver), var(--primary-gold));
    animation: clientRelations 4.5s;
}

@keyframes legalResearch {
    0% { width: 0%; }
    100% { width: 95%; }
}

@keyframes litigation {
    0% { width: 0%; }
    100% { width: 88%; }
}

@keyframes negotiation {
    0% { width: 0%; }
    100% { width: 92%; }
}

@keyframes clientRelations {
    0% { width: 0%; }
    100% { width: 90%; }
}

/* Professional Hover Effects */
.premium-service:hover .service-icon-wrapper {
    animation: pulse 1.5s infinite;
}

/* Enhanced Button Styles for Legal Profession */
.consultation-btn {
    background: linear-gradient(45deg, var(--rich-burgundy), var(--primary-gold));
    border: 2px solid var(--primary-gold);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.consultation-btn::before {
    content: '⚖️ ';
    position: absolute;
    left: -100%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5s;
}

.consultation-btn:hover::before {
    left: 10px;
}

.consultation-btn:hover {
    padding-left: 40px;
}

/* Legal Document Icon Animation */
.legal-doc-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Professional Status Indicators */
.status-indicator {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status-indicator::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.busy::before {
    background: #ffaa00;
}

.status-indicator.unavailable::before {
    background: #ff0000;
}

/* Professional Testimonials Style (if added) */
.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.5;
    font-family: var(--font-accent);
}

/* Legal Statistics Counter */
.stat-counter {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: var(--font-neon-text-shadow);
}

/* Professional Achievement Badges */
.achievement-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-gold), var(--elegant-silver));
    color: var(--deep-navy);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 5px;
    box-shadow: var(--gold-glow);
}

/* Enhanced Card Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}
