/* ============================================
   PRACTICE AREAS / SERVICES SECTION STYLES
   ============================================ */

/* Intro Section */
.intro-section {
    background-color: var(--bg-primary);
    padding: 100px 20px;
    transition: background-color 0.3s ease;
}

.intro-section h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.intro-section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

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

.highlight-item {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-small);
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.highlight-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.highlight-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    transition: color 0.3s ease;
}

/* Practice Areas Section */
.practice-areas {
    background-color: var(--bg-secondary);
    padding: 100px 20px;
    transition: background-color 0.3s ease;
}

.practice-areas h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--bg-primary);
    padding: 45px 35px;
    border-radius: 10px;
    box-shadow: var(--shadow-small);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-card:nth-child(2) {
    border-top-color: var(--accent-color);
}

.service-card:nth-child(3) {
    border-top-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

/* Service Detail Sections */
.service-detail-section {
    background-color: var(--bg-primary);
    padding: 80px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.service-detail-section:nth-child(even) {
    background-color: var(--bg-secondary);
}

.service-detail-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.2rem;
    transition: color 0.3s ease;
}

.service-detail-content h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-detail-content li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
    transition: color 0.3s ease;
}

.service-detail-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 80px 20px;
    transition: background 0.3s ease;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background-color: var(--bg-primary);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-small);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.feature-box p {
    color: var(--text-secondary);
    margin: 0;
    transition: color 0.3s ease;
}

/* CTA Section */
.cta-section {
    background: var(--cta-bg);
    color: white;
    padding: 80px 20px;
    text-align: center;
    transition: background 0.3s ease;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section .btn-secondary {
    background-color: white;
    color: #003d82;
}

.cta-section .btn-secondary:hover {
    background-color: #f0f0f0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .intro-section,
    .practice-areas,
    .cta-section,
    .why-choose-us,
    .service-detail-section {
        padding: 50px 20px;
    }

    .intro-section h2,
    .practice-areas h2,
    .cta-section h2,
    .why-choose-us h2 {
        font-size: 1.8rem;
    }

    .intro-highlights {
        gap: 20px;
    }

    .highlight-item {
        padding: 20px 15px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .service-detail-content h3 {
        font-size: 1.3rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-box {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .intro-section h2,
    .practice-areas h2,
    .cta-section h2,
    .why-choose-us h2 {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-detail-content h3 {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}