/* Practice Areas Page Styles */
@font-face {
    font-family: 'CustomFont';
    src: url('../includes/fonts/248169530.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    overflow-y: auto;
    background-color: #1a1a1a;
    color: #f5f5f5;
    font-family: 'Gotham', Arial, sans-serif;
}

/* Hero Section */
.practice-area-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to right, #1a1a1a, #333333, #1a1a1a);
    background-size: cover;
}

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

.practice-area-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.practice-area-content h1 {
    font-family: 'CustomFont', 'Gotham', Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #222;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #ff0000;
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb ul li {
    font-size: 14px;
    color: #aaa;
    position: relative;
    padding: 5px 0;
    font-weight: 400;
}

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

.breadcrumb ul li:last-child {
    color: #fff;
    font-weight: 500;
}

.breadcrumb ul li a {
    color: #ff0000;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ff0000;
    transition: width 0.3s ease;
}

.breadcrumb ul li a:hover {
    color: #ff3333;
}

.breadcrumb ul li a:hover::after {
    width: 100%;
}

/* Main Content Layout */
.practice-area-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.sidebar {
    flex: 1;
    min-width: 250px;
}

.content-area {
    flex: 3;
    min-width: 300px;
}

/* Sidebar Styles */
.sidebar h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff0000;
}

.sidebar ul {
    list-style: none;
    margin-bottom: 40px;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    display: block;
    padding: 10px 15px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.sidebar ul li a:hover,
.sidebar ul li.active a {
    background-color: #222;
    border-left-color: #ff0000;
}

.contact-box {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 5px;
}

.contact-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

.contact-box p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.contact-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #cc0000;
}

/* Content Area Styles */
.practice-description {
    color: #f5f5f5;
}

.practice-description .lead {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
}

.practice-description p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ccc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.service-card {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 30px;
    color: #ff0000;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

.expertise-areas {
    margin: 40px 0;
}

.expertise-areas h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.expertise-areas ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    list-style: none;
}

.expertise-areas ul li {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #ccc;
}

.expertise-areas ul li i {
    color: #ff0000;
    margin-right: 10px;
}

.approach {
    margin: 40px 0;
}

.approach h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.cta-box {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    margin-top: 50px;
}

.cta-box h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .practice-area-container {
        flex-direction: column;
    }
    
    .sidebar {
        order: 2;
    }
    
    .content-area {
        order: 1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .practice-area-content h1 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-areas ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .practice-area-content h1 {
        font-size: 28px;
    }
    
    .breadcrumb ul {
        flex-wrap: wrap;
    }
}
