/* ============================================
   BRADY LAW GROUP - MAIN STYLESHEET
   ============================================ */

/* ===== DARK THEME STYLES WITH LIGHTER HERO ===== */
:root {
    --primary-dark: #003d6b;
    --primary: #005696;
    --primary-light: #1d88d8;
    --primary-hover: #2a9df5;
    --gold: #e9af00;
    --gold-light: #f5d742;
    --dark-bg: #0a1a2b;
    --dark-section: #0f2840;
    --dark-card: #162d4a;
    --text-light: #e8edf3;
    --text-muted: #8aa3c0;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.4);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

p {
    color: var(--text-muted);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER - Complete Responsive
   ============================================ */

.site-header {
    background: var(--primary-dark, #003d6b);
    border-bottom: 2px solid var(--gold, #e9af00);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 15px;
}

/* ===== LOGO ===== */
.logo {
    flex-shrink: 0;
    max-width: 280px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
    max-width: 100%;
    display: block;
    filter: brightness(0) invert(1);
}

/* ===== HEADER PHONE - Desktop only ===== */
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-light, #e8edf3);
    flex-shrink: 0;
}

.header-phone a {
    color: var(--gold, #e9af00);
    text-decoration: none;
    font-size: 1.2rem;
    white-space: nowrap;
}

.header-phone a:hover {
    color: var(--gold-light, #f5d742);
}

/* ===== MOBILE PHONE BAR - Hidden on desktop ===== */
.header-phone-mobile {
    display: none;
    background: rgba(0,0,0,0.2);
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-phone-mobile a {
    color: var(--gold, #e9af00);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light, #e8edf3);
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 10px 16px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-menu > li > a:hover {
    color: var(--gold);
    background: rgba(255,255,255,0.05);
}

.nav-menu > li > a.nav-cta {
    background: var(--gold);
    color: var(--dark-bg);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-menu > li > a.nav-cta:hover {
    background: var(--gold-light);
    color: var(--dark-bg);
}

/* ============================================
   ATTORNEY DROPDOWN WITH IMAGES
   ============================================ */

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-card);
    min-width: 280px;
    padding: 8px 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    list-style: none;
    border: 1px solid rgba(255,255,255,0.05);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.attorney-dropdown-item {
    padding: 0;
    margin: 0;
    transition: var(--transition);
}

.attorney-dropdown-item:hover {
    background: rgba(255,255,255,0.05);
}

.attorney-dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.attorney-dropdown-link:hover {
    color: var(--gold);
}

.attorney-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.attorney-thumb-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.attorney-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.attorney-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
}

.attorney-title {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.attorney-dropdown-link:hover .attorney-name {
    color: var(--gold);
}

.dropdown-menu .divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 6px 0;
}

.dropdown-menu .view-all-link {
    display: block;
    padding: 10px 16px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
}

.dropdown-menu .view-all-link:hover {
    background: rgba(255,255,255,0.05);
    color: var(--gold-light);
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */

@media (max-width: 1200px) {
    .logo {
        max-width: 220px;
    }
    .logo img {
        height: 55px;
    }
    .header-phone a {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .logo {
        max-width: 200px;
    }
    .logo img {
        height: 50px;
    }
    .header-phone a {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 8px 0;
    }
    
    .header-inner {
        padding: 8px 0;
        gap: 10px;
    }
    
    .logo {
        max-width: 180px;
    }
    .logo img {
        height: 45px;
    }
    
    .header-phone {
        display: none;
    }
    
    .header-phone-mobile {
        display: block;
    }
    
    .mobile-toggle {
        display: block;
        font-size: 1.6rem;
        padding: 6px 10px;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-card);
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 0;
        width: 100%;
        z-index: 1000;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu > li > a {
        padding: 12px 16px;
        color: var(--text-light);
        white-space: normal;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-menu > li > a.nav-cta {
        display: inline-block;
        margin-top: 10px;
        text-align: center;
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        background: transparent;
        min-width: 100%;
    }
    
    .dropdown-menu .attorney-dropdown-link {
        padding: 8px 12px;
    }
    
    .attorney-thumb {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 6px 0;
        gap: 8px;
    }
    
    .logo {
        max-width: 140px;
    }
    .logo img {
        height: 36px;
    }
    
    .mobile-toggle {
        font-size: 1.4rem;
        padding: 4px 8px;
    }
    
    .header-phone-mobile a {
        font-size: 1rem;
    }
    
    .nav-menu > li > a {
        font-size: 0.9rem;
        padding: 10px 14px;
    }
    
    .nav-menu > li > a.nav-cta {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 375px) {
    .logo {
        max-width: 120px;
    }
    .logo img {
        height: 30px;
    }
    
    .mobile-toggle {
        font-size: 1.2rem;
        padding: 4px 6px;
    }
}

/* ============================================
   INNER HERO
   ============================================ */

.inner-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('../img/inner-banner.jpg') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.inner-hero-content h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.inner-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.inner-hero-buttons .btn-secondary {
    background: var(--gold);
    color: var(--dark-bg);
    border: none;
}

.inner-hero-buttons .btn-secondary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 175, 0, 0.3);
    color: var(--dark-bg);
}

@media (max-width: 768px) {
    .inner-hero {
        padding: 60px 0 40px;
    }
    .inner-hero-content h1 {
        font-size: 1.8rem;
    }
    .inner-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .inner-hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .inner-hero {
        padding: 40px 0 30px;
    }
    .inner-hero-content h1 {
        font-size: 1.5rem;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e8edf3, #d4dce6);
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('../img/bknewset1-raw-min.jpg') center/cover;
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(10, 26, 43, 0.7), rgba(0, 61, 107, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero-content h1 {
    color: var(--white);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 80%;
    z-index: 1;
}

.hero-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.3));
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    .hero-image {
        display: none;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 175, 0, 0.3);
    color: var(--dark-bg);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-small {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background: rgba(233, 175, 0, 0.1);
    color: var(--gold);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(233, 175, 0, 0.2);
}

.btn-small:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

.btn-watch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--dark-bg);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-watch:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 175, 0, 0.3);
    color: var(--dark-bg);
}

/* ============================================
   RESULTS BAR
   ============================================ */

.results-bar {
    background: var(--dark-card);
    padding: 40px 0;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 3;
    margin-top: -40px;
    border-radius: var(--radius);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255,255,255,0.05);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.result-item {
    padding: 20px;
    transition: var(--transition);
}

.result-item:hover {
    transform: translateY(-5px);
}

.result-item .amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 4px;
}

.result-item .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.result-item .detail {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.result-item .detail a {
    color: var(--gold);
    text-decoration: none;
}

.result-item .detail a:hover {
    color: var(--gold-light);
}

@media (max-width: 768px) {
    .results-bar {
        margin-top: 0;
        padding: 30px 20px;
        border-radius: 0;
    }
    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .result-item .amount {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    .result-item .amount {
        font-size: 1.3rem;
    }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--dark-bg);
}

.section-dark-alt {
    background: var(--dark-section);
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title h2 {
    margin-bottom: 0.5rem;
}

.section-title h2 span {
    color: var(--gold);
}

.section-title .subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   ANIMATIONS GRID
   ============================================ */

.animations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.animation-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.animation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.animation-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-bg);
    flex-shrink: 0;
}

.animation-thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.animation-card:hover .animation-thumb img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 43, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.animation-thumb:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: rgba(233, 175, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.8rem;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(233, 175, 0, 0.3);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--gold);
}

.animation-body {
    padding: 20px 22px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.animation-header {
    margin-bottom: 6px;
}

.animation-header h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 2px;
    font-weight: 700;
    line-height: 1.3;
}

.animation-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.animation-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    line-height: 1.4;
}

.animation-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 14px;
    flex: 1;
}

.detail-section h5 {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 600;
}

.detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-section ul li {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 3px 0 3px 16px;
    position: relative;
    line-height: 1.4;
}

.detail-section ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 0.7rem;
}

.animation-footer {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.animation-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 4rem;
}

@media (max-width: 992px) {
    .animations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .animation-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .animation-body {
        padding: 16px 18px 14px;
    }
    .animation-header h4 {
        font-size: 0.9rem;
    }
    .animation-subtitle {
        font-size: 0.8rem;
    }
    .detail-section ul li {
        font-size: 0.7rem;
    }
    .btn-watch {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

/* ============================================
   ATTORNEY GRID
   ============================================ */

.attorney-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.attorney-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.attorney-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.attorney-card .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary);
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary);
    color: var(--text-muted);
    font-size: 3rem;
}

.attorney-card h4 {
    margin-bottom: 4px;
    color: var(--gold);
}

.attorney-card .title {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.attorney-card .bio {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.5;
}

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

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

/* ============================================
   PRACTICE AREAS
   ============================================ */

.practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.practice-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.05);
}

.practice-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 26, 43, 0.95), rgba(10, 26, 43, 0.2));
    z-index: 1;
}

.practice-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.practice-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.practice-card:hover img {
    transform: scale(1.1);
}

.practice-card .content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    width: 100%;
}

.practice-card .content h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.practice-card .content span {
    font-size: 0.85rem;
    opacity: 0.8;
    color: var(--text-muted);
}

@media (max-width: 1200px) {
    .practice-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

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

/* ============================================
   AWARDS
   ============================================ */

.awards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

.awards-grid .award-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.awards-grid .award-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.awards-grid .award-item img {
    max-height: 146px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: none !important;
}

.awards-grid .award-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .awards-grid .award-item {
        height: 140px;
        padding: 18px;
    }
    .awards-grid .award-item img {
        max-height: 120px;
    }
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .awards-grid .award-item {
        height: 120px;
        padding: 15px;
    }
    .awards-grid .award-item img {
        max-height: 100px;
    }
}

@media (max-width: 480px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .awards-grid .award-item {
        height: 100px;
        padding: 12px;
    }
    .awards-grid .award-item img {
        max-height: 80px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.cta-section h2 {
    color: var(--white);
}

.cta-section h2 span {
    color: var(--gold);
}

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

/* ============================================
   FOOTER 
   ============================================ */

.site-footer {
    background: var(--dark-bg);
    color: var(--text-muted);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

/* ===== FOOTER BRAND ===== */
.footer-brand {
    max-width: 100%;
}

.footer-brand img {
    height: 45px;
    width: auto;
    max-width: 100%;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 350px;
    color: var(--text-muted);
    word-wrap: break-word;
}

.footer-brand .social-links {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-brand .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-brand .social-links a:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

/* ===== FOOTER COLUMNS ===== */
.footer-col {
    min-width: 0;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    padding: 0;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    word-wrap: break-word;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col address,
.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    word-wrap: break-word;
}

.footer-col strong {
    color: var(--text-light);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

.footer-bottom p,
.footer-bottom span {
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE FOOTER
   ============================================ */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand img {
        height: 40px;
    }
    
    .footer-brand p {
        max-width: 100%;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .footer-brand .social-links {
        justify-content: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col ul li {
        padding: 0;
    }
    
    .footer-col address {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-top: 20px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 15px;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .footer-brand img {
        height: 32px;
    }
    
    .footer-brand p {
        font-size: 0.8rem;
    }
    
    .footer-col h4 {
        font-size: 0.9rem;
    }
    
    .footer-col ul li a {
        font-size: 0.8rem;
    }
    
    .footer-col address,
    .footer-col p {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
    }
    
    .footer-bottom-links {
        gap: 12px;
    }
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark-bg);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-5px);
}

/* ============================================
   PRACTICE AREA PAGE
   ============================================ */

.practice-area-main {
    padding: 60px 0;
}

.practice-area-content h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.practice-area-content h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--text-light);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.practice-area-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.practice-area-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.practice-area-content ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-muted);
    line-height: 1.6;
}

.practice-area-content ul li::before {
    content: "▸";
    position: absolute;
    left: 8px;
    color: var(--gold);
    font-weight: bold;
}

.practice-area-content ol {
    padding-left: 20px;
    margin: 20px 0;
}

.practice-area-content ol li {
    padding: 8px 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.practice-area-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(233, 175, 0, 0.05);
    border-radius: 0 8px 8px 0;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   PRACTICE FEATURES
   ============================================ */

.practice-features {
    margin: 50px 0 40px;
    padding: 35px 25px;
    background: var(--dark-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.practice-features h2 {
    text-align: center;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 700;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.features-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 5px;
}

.feature-item {
    background: var(--dark-bg);
    padding: 18px 15px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    margin-bottom: 10px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--gold);
    display: inline-block;
    background: rgba(233, 175, 0, 0.08);
    padding: 12px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    line-height: 30px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon i {
    background: var(--gold);
    color: var(--dark-bg);
    transform: scale(1.05);
}

.feature-item h4 {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .practice-features {
        padding: 20px 15px;
    }
    .feature-item {
        padding: 15px 12px;
    }
    .feature-item h4 {
        font-size: 0.85rem;
    }
    .feature-item p {
        font-size: 0.75rem;
    }
    .feature-icon i {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .feature-item {
        padding: 12px 10px;
    }
    .feature-item h4 {
        font-size: 0.8rem;
    }
    .feature-item p {
        display: none;
    }
    .feature-icon i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        padding: 8px;
    }
}

/* ============================================
   RELATED PRACTICE AREAS
   ============================================ */

.related-practice-areas {
    margin: 40px 0;
}

.related-practice-areas h2 {
    text-align: center;
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--dark-card);
    border-radius: var(--radius);
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.related-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
    border-color: var(--gold);
}

.related-item i:first-child {
    color: var(--gold);
    font-size: 1rem;
    width: 20px;
    transition: var(--transition);
}

.related-item:hover i:first-child {
    color: var(--white);
}

.related-item span {
    flex: 1;
    font-weight: 500;
    font-size: 0.9rem;
}

.related-item i:last-child {
    opacity: 0.4;
    font-size: 0.8rem;
    transition: var(--transition);
}

.related-item:hover i:last-child {
    opacity: 1;
    transform: translateX(3px);
}

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

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

/* ============================================
   INNER CTA
   ============================================ */

.inner-cta {
    background: var(--dark-card);
    padding: 35px 40px;
    border-radius: var(--radius);
    margin-top: 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

.inner-cta h3 {
    color: var(--gold);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.inner-cta p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.inner-cta p a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.inner-cta p a:hover {
    color: var(--gold-light);
}

.text-md-right {
    text-align: right;
}

@media (max-width: 768px) {
    .inner-cta {
        padding: 25px;
        text-align: center;
    }
    .text-md-right {
        text-align: center !important;
        margin-top: 15px;
    }
    .inner-cta h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   PRACTICE AREAS LISTING
   ============================================ */

.practice-main {
    padding: 60px 0;
}

.practice-content h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.practice-content h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--text-light);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.practice-content h2 a {
    color: var(--text-light);
    text-decoration: none;
}

.practice-content h2 a:hover {
    color: var(--gold);
}

.practice-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.practice-content p a {
    color: var(--gold);
    text-decoration: none;
}

.practice-content p a:hover {
    color: var(--gold-light);
}

.practice-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.practice-tree {
    margin-bottom: 30px;
}

.tree-root {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tree-item {
    padding: 0;
    margin: 0;
}

.tree-link {
    display: block;
    padding: 10px 16px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 6px;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.tree-link:hover {
    background: var(--dark-card);
    color: var(--gold);
    border-left-color: var(--gold);
    padding-left: 22px;
}

.tree-item.has-children > .tree-link {
    font-weight: 600;
    color: var(--text-light);
}

.tree-item.has-children > .tree-link::after {
    content: "▸";
    float: right;
    color: var(--text-muted);
    transition: var(--transition);
}

.tree-item.has-children > .tree-link:hover::after {
    color: var(--gold);
    transform: rotate(90deg);
}

.tree-children {
    list-style: none;
    padding-left: 24px;
    margin: 4px 0 8px 0;
    border-left: 1px solid rgba(255,255,255,0.05);
}

.tree-children .tree-link {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 6px 16px;
    border-left: 2px solid transparent;
}

.tree-children .tree-link:hover {
    color: var(--gold);
    background: rgba(233, 175, 0, 0.05);
    border-left-color: var(--gold);
    padding-left: 20px;
}

.tree-children .tree-children {
    padding-left: 16px;
}

.tree-children .tree-children .tree-link {
    font-size: 0.85rem;
    padding: 4px 14px;
}

@media (max-width: 768px) {
    .tree-children {
        padding-left: 12px;
    }
    .tree-link {
        font-size: 0.95rem;
        padding: 8px 12px;
    }
    .tree-children .tree-link {
        font-size: 0.85rem;
        padding: 5px 12px;
    }
    .tree-children .tree-children .tree-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .tree-children {
        padding-left: 8px;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-main {
    padding: 60px 0;
}

.about-content h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-content h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--text-light);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content p a {
    color: var(--gold);
    text-decoration: none;
}

.about-content p a:hover {
    color: var(--gold-light);
}

.about-image {
    margin: 30px 0;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.7;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.team-section {
    margin: 50px 0 40px;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.team-member {
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.team-member-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: var(--dark-bg);
}

.team-member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 86, 150, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .team-member-overlay {
    opacity: 1;
}

.btn-view-profile {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--dark-bg);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-view-profile:hover {
    background: var(--gold-light);
    color: var(--dark-bg);
    transform: scale(1.05);
}

.btn-view-profile i {
    margin-right: 8px;
}

.team-member-info {
    padding: 18px 20px 22px;
    text-align: center;
}

.team-member-info h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2px;
    font-weight: 600;
}

.team-member-title {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
}

.team-member-bio {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .team-member-info h4 {
        font-size: 0.9rem;
    }
    .team-member-bio {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .team-member-info {
        padding: 14px 12px 16px;
    }
    .team-member-info h4 {
        font-size: 0.8rem;
    }
    .team-member-title {
        font-size: 0.65rem;
    }
    .team-member-bio {
        display: none;
    }
    .btn-view-profile {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}