/* Çalışma Alanları Dark Mode CSS */
body {
    background-color: #121212;
    color: #e0e0e0;
}

header, footer {
    background-color: #000;
}

.practice-areas-hero {
    position: relative;
    height: 300px;
    background-image: url('../uploads/practice-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.practice-areas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.practice-areas-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.practice-areas-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Gotham', sans-serif;
    color: #ffffff;
}

.practice-areas-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.breadcrumb {
    background-color: #1e1e1e;
    padding: 15px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
}

.breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.breadcrumb li {
    font-size: 14px;
    color: #999;
}

.breadcrumb li:not(:last-child):after {
    content: "/";
    margin: 0 10px;
    color: #666;
}

.breadcrumb a {
    color: #cccccc;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ff0000;
}

.practice-areas-container {
    padding: 0 0 60px;
}

.practice-areas-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.practice-areas-intro h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.practice-areas-intro p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.practice-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.practice-area-card {
    background-color: #1e1e1e;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
}

.practice-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: #ff0000;
}

.practice-area-icon {
    width: 70px;
    height: 70px;
    background-color: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.practice-area-icon i {
    font-size: 30px;
    color: #ff0000;
}

.practice-area-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.practice-area-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

.practice-area-card .read-more {
    color: #ff0000;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    margin-bottom: 15px;
    color: #ffffff;
}

.practice-area-card .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.practice-area-card .read-more:hover i {
    transform: translateX(5px);
}

.practice-area-card .area-link {
    text-decoration: none;
    color: inherit;
}

.practice-areas-cta {
    background-color: #1e1e1e;
    border-radius: 5px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #333;
}

.practice-areas-cta h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.practice-areas-cta p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .practice-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .practice-areas-content h1 {
        font-size: 32px;
    }
    
    .practice-areas-intro h2 {
        font-size: 28px;
    }
    
    .practice-areas-cta {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .practice-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .practice-areas-hero {
        height: 250px;
    }
    
    .practice-areas-content h1 {
        font-size: 28px;
    }
    
    .practice-area-card {
        padding: 20px;
    }
}
