/**
 * Washington George Volandes PLLC Theme - Main Stylesheet
 * Author: WGV Development Team
 */

/* CSS Variables */
:root {
    --primary-blue: #1b365d;
    --secondary-blue: #2c5282;
    --accent-gold: #ffd700;
    --light-grey: #f8f9fa;
    --white: #ffffff;
    --text-color: #2d3748;
    --shadow: rgba(27, 54, 93, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px;
    --border-radius: 15px;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    margin-top: 80px;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--secondary-blue);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 54, 93, 0.2);
}

.btn-secondary {
    background: var(--accent-gold);
    color: var(--white);
}

.btn-secondary:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
    overflow: hidden;
    transition: var(--transition-base);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(27, 54, 93, 0.15);
}

/* Legal Insights Article Cards */
.insight-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.insight-card .card-image img {
    width: 100%;
    height: 200px;
    min-height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}


/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 1200px) {
    .practice-areas-grid,
    .attorneys-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .practice-areas-grid,
    .attorneys-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .attorney-image {
        height: 180px;
    }
    
    .practice-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .practice-areas-grid,
    .attorneys-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .attorney-image {
        height: 200px;
    }
    
    .practice-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Focus and Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Attorney Photos and Placeholders */
.attorney-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
}

.attorney-photo.placeholder {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    font-size: 3rem;
    font-weight: 600;
}

.attorney-photo.placeholder::before {
    content: attr(data-initials);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.attorney-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.attorney-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.attorney-info {
    padding: 1.5rem;
}

.attorney-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.attorney-title {
    color: var(--secondary-blue);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.attorney-contact {
    margin-bottom: 1rem;
}

.attorney-contact a {
    color: var(--primary-blue);
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
}

.attorney-contact a:hover {
    text-decoration: underline;
}

.attorney-bio {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.attorney-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.practice-tag {
    background: var(--light-grey);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Header Styling - Following Design Guidelines */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(27, 54, 93, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(27, 54, 93, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo Section */
.site-branding {
    flex-shrink: 0;
    margin-right: 1rem;
}

.site-logo {
    height: 85px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    object-position: left center;
    padding: 8px 0;
    filter: brightness(1.1) contrast(1.05);
}

.custom-logo-link {
    display: block;
    padding: 0;
    line-height: 1;
}

/* Main Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 16px;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    border-bottom: none;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--light-grey);
    color: var(--primary-blue);
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 0 0 auto;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.header-phone i {
    font-size: 14px;
}

.header-phone a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.btn-header-cta {
    background: var(--accent-gold);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-gold);
}

.btn-header-cta:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-portal {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
    margin-left: 0.75rem;
}

.btn-portal:hover {
    background: transparent;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 54, 93, 0.3);
}

/* Compact Offices List */
.offices-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--white);
    font-size: 0.85rem;
}

.office-item i {
    color: var(--accent-gold);
    font-size: 1rem;
    width: 18px;
    text-align: center;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.office-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.office-address {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1.3;
}

.office-phone {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.office-phone:hover {
    color: var(--accent-gold);
}

.office-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0 0.25rem;
}

/* Responsive Design for Compact Offices */
@media (max-width: 768px) {
    .offices-list {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
        padding: 1.25rem;
    }
    
    .office-separator {
        display: none;
    }
    
    .office-item {
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .office-details {
        gap: 0.35rem;
    }
    
    .office-name {
        font-size: 0.95rem;
    }
    
    .office-address {
        font-size: 0.8rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-navigation {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--light-grey);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 2rem;
}

.mobile-nav-menu li {
    border-bottom: 1px solid var(--light-grey);
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem 0;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
}

.mobile-contact {
    padding: 2rem;
    border-top: 1px solid var(--light-grey);
    text-align: center;
}

.mobile-phone {
    display: block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .main-navigation,
    .header-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .site-logo {
        height: 40px;
    }
    
    .mobile-navigation {
        top: 70px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .site-logo {
        height: 35px;
    }
}

@media (max-width: 768px) {
    body {
        margin-top: 70px;
    }
}

/* Favicon and touch icons */
link[rel="icon"],
link[rel="apple-touch-icon"] {
    border-radius: 8px;
}

/* Professional styling for missing images */
img[src=""], 
img:not([src]), 
img[src*="placeholder"] {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
}

img[src=""]:before, 
img:not([src]):before, 
img[src*="placeholder"]:before {
    content: "📷";
    font-size: 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1B365D 0%, #4A90A4 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 54, 93, 0.8);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    padding: 2rem 0;
}

.hero-text {
    color: white;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-badges .badge {
    background: rgba(212, 175, 55, 0.9);
    color: #1B365D;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.trust-item i {
    color: #D4AF37;
    font-size: 1.1rem;
}

.hero-social-proof {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-highlight {
    text-align: center;
    margin-bottom: 2rem;
}

.stars {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-highlight p {
    color: white;
    font-style: italic;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.review-highlight cite {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat strong {
    display: block;
    color: #D4AF37;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.stat span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.office-showcase {
    margin-bottom: 2rem;
    text-align: center;
}

.office-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.office-info h4 {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.office-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* ================================
   PRACTICE AREAS SECTION
   ================================ */
.practice-areas-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.practice-areas-grid {
    width: 100%;
    margin-top: 3rem;
    display: block;
}

.practice-area-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.practice-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.practice-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.2rem;
}

.practice-area-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.practice-area-card p {
    color: #666;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.practice-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    text-align: left;
}

.practice-highlights li {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.3;
}

.practice-highlights li::before {
    content: "•";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.practice-area-card .btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

/* ================================
   ATTORNEYS SECTION
   ================================ */
.attorneys-section {
    padding: 6rem 0;
    background: white;
}

.attorneys-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.attorney-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.attorney-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.attorney-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.attorney-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attorney-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.attorney-info {
    padding: 1.5rem;
}

.attorney-name {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.attorney-title {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.attorney-office {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.attorney-practice-areas {
    margin-bottom: 1.5rem;
}

.attorney-practice-areas strong {
    color: var(--primary-blue);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.practice-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.practice-tag {
    background: rgba(27, 54, 93, 0.1);
    color: var(--primary-blue);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.attorney-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-btn, .phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn {
    background: var(--primary-blue);
    color: white;
}

.contact-btn:hover {
    background: #143a5f;
    transform: translateY(-1px);
}

.phone-btn {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.phone-btn:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-1px);
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials-section {
    padding: 6rem 0;
    background: var(--primary-blue);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-info p {
    margin: 0.25rem 0 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ================================
   CONTACT CTA SECTION
   ================================ */
.contact-cta-section {
    padding: 6rem 0;
    background: var(--accent-gold);
    color: white;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-cta-content .btn-large {
    background: white;
    color: var(--accent-gold);
    border-color: white;
}

.contact-cta-content .btn-large:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* ================================
   FOOTER STYLING
   ================================ */
.site-footer {
    background: var(--dark-grey);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

.office-info {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.office-info:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.office-info h5 {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.office-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-info i {
    width: 16px;
    color: var(--accent-gold);
}

.office-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-info a:hover {
    color: var(--accent-gold);
}

.emergency-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.emergency-contact h5 {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.emergency-contact em {
    opacity: 0.8;
    font-size: 0.85rem;
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    margin-bottom: 3rem;
    text-align: center;
}

.newsletter-content h4 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.newsletter-content p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-input-group input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: white;
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
}

.newsletter-input-group input[type="email"]::placeholder {
    color: #999;
}

.newsletter-input-group input:focus,
.newsletter-input-group select:focus,
.newsletter-input-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input-group select {
    cursor: pointer;
}

.newsletter-input-group option {
    background: var(--primary-blue);
    color: white;
}

.form-submit {
    margin-top: 1rem;
    width: 100%;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

.form-disclaimer a {
    color: var(--accent-gold);
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .practice-areas-grid,
    .attorneys-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-legal ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .practice-area-card {
        padding: 2rem 1.5rem;
    }
    
    .attorney-info {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* ================================
   HERO SECTION - REDESIGNED
   ================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f1f35 100%);
    overflow: hidden;
    padding: 2rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 54, 93, 0.9) 0%, rgba(15, 31, 53, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.text-gold {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: var(--accent-gold);
    color: white;
    border: 2px solid var(--accent-gold);
}

.btn-primary:hover {
    background: #b8941f;
    border-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-trust-indicators p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-trust-indicators i {
    color: var(--accent-gold);
    width: 20px;
}

/* Hero Reviews Section */
.hero-reviews {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.review-rating {
    background: var(--accent-gold);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.review-text {
    color: white;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.review-author {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.review-platform {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.review-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.stat-stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Trust Signals Bar */
.trust-signals {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.trust-logo {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.trust-logo i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Practice Areas Redesign */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
}
@media (max-width: 1024px) {
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .practice-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .practice-grid {
    grid-template-columns: 1fr;
  }
}
.practice-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
    overflow: hidden;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 1.5rem;
}
.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(27, 54, 93, 0.15);
}
.practice-areas-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-header.text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.practice-area-card.featured {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
}

.practice-area-card.featured .practice-icon {
    background: var(--accent-gold);
}

.practice-area-card.featured h3,
.practice-area-card.featured p {
    color: white;
}

.practice-area-card.featured .practice-highlights li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Results Section */
.results-section {
    padding: 5rem 0;
    background: var(--primary-blue);
    color: white;
}

.results-section .section-header h2 {
    color: white;
}

.results-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.result-case {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.result-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.results-disclaimer {
    text-align: center;
    margin-top: 2rem;
}

.results-disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Tablet Styles */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-logos {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .practice-areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .practice-area-card.featured {
        transform: scale(1);
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .review-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-large {
        min-width: auto;
        width: 100%;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-summary {
        margin-top: 1.5rem;
    }
    
    .trust-signals {
        padding: 1.5rem 0;
    }
    
    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-item {
        padding: 0.5rem;
    }
    
    .trust-logo {
        width: 50px;
        height: 50px;
    }
    
    .trust-logo i {
        font-size: 1.25rem;
    }
    
    .practice-areas-section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .practice-areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .practice-area-card {
        padding: 2rem;
    }
    
    .practice-area-card.featured {
        order: -1;
    }
    
    .results-section {
        padding: 3rem 0;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .result-amount {
        font-size: 2rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badges {
        align-items: stretch;
    }
    
    .badge {
        justify-content: center;
        text-align: center;
    }
    
    .trust-logos {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .practice-area-card {
        padding: 1.5rem;
    }
    
    .result-amount {
        font-size: 1.75rem;
    }
}

/* Attorney Section */
.attorneys-section {
    padding: 5rem 0;
    background: white;
}

.attorneys-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.attorney-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.attorney-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.attorney-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.attorney-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.attorney-card:hover .attorney-image img {
    transform: scale(1.05);
}

.attorney-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f1f35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.attorney-placeholder i {
    font-size: 4rem;
    color: var(--accent-gold);
}

.attorney-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.attorney-card:hover .attorney-overlay {
    transform: translateY(0);
}

.attorney-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.credential i {
    color: var(--accent-gold);
    width: 16px;
}

.attorney-info {
    padding: 2rem;
}

.attorney-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.attorney-title {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.attorney-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.highlight-item i {
    color: var(--accent-gold);
    width: 16px;
}

.attorney-practice-areas {
    margin-bottom: 1.5rem;
}

.attorney-practice-areas strong {
    color: var(--primary-blue);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.practice-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.practice-tag {
    background: rgba(27, 54, 93, 0.1);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.attorney-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-btn {
    background: var(--accent-gold);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.profile-btn {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.profile-btn:hover {
    background: var(--primary-blue);
    color: white;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f1f35 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.cta-main h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.cta-main p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-guarantees {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.guarantee i {
    color: var(--accent-gold);
    width: 20px;
    font-size: 1.1rem;
}

/* Contact Form */
.quick-contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.quick-contact-form p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group option {
    background: var(--primary-blue);
    color: white;
}

.form-submit {
    margin-top: 1rem;
    width: 100%;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

.form-disclaimer a {
    color: var(--accent-gold);
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* Office Feature Styling */
.office-feature {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.office-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.office-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.office-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(27, 54, 93, 0.95));
    padding: 2rem;
    color: white;
}

.office-details h4 {
    color: #D4AF37;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-details p {
    margin-bottom: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.office-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.office-phone:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    transform: translateY(-2px);
}

/* Responsive Design for Attorney and CTA Sections */
@media (max-width: 968px) {
    .attorneys-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .attorney-image {
        height: 240px;
    }
    
    .attorney-info {
        padding: 1.5rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-main h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .attorneys-section {
        padding: 3rem 0;
    }
    
    .attorneys-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .attorney-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .attorney-image {
        height: 200px;
    }
    
    .attorney-overlay {
        position: static;
        background: rgba(0, 0, 0, 0.1);
        transform: none;
        padding: 1rem;
        backdrop-filter: none;
    }
    
    .attorney-card:hover .attorney-overlay {
        transform: none;
    }
    
    .attorney-highlights {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .highlight-item {
        font-size: 0.8rem;
    }
    
    .contact-cta-section {
        padding: 3rem 0;
    }
    
    .cta-content {
        gap: 2rem;
    }
    
    .cta-main h2 {
        font-size: 1.8rem;
    }
    
    .cta-main p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-guarantees {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .guarantee {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .quick-contact-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .attorney-info {
        padding: 1rem;
    }
    
    .attorney-name {
        font-size: 1.25rem;
    }
    
    .attorney-highlights {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .practice-tags {
        justify-content: center;
    }
    
    .cta-main h2 {
        font-size: 1.6rem;
    }
    
    .cta-guarantees {
        flex-direction: column;
        gap: 1rem;
    }
    
    .guarantee {
        flex-direction: row;
        justify-content: center;
    }
    
    .quick-contact-form {
        padding: 1.5rem;
    }
    
    .quick-contact-form h3 {
        font-size: 1.25rem;
    }
}

/* Responsive Design for 4-column layouts */
@media (max-width: 1200px) {
    .attorneys-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    /* Keep practice areas at 4 columns on tablets */
    .practice-areas-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .practice-area-card {
        padding: 1.2rem 0.8rem;
    }
    
    .practice-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .practice-area-card h3 {
        font-size: 1rem;
    }
    
    .practice-area-card p {
        font-size: 0.8rem;
    }
    
    .practice-highlights li {
        font-size: 0.75rem;
    }
}

@media (max-width: 968px) {
    .attorneys-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Keep practice areas at 4 columns on smaller tablets */
    .practice-areas-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .practice-area-card {
        padding: 1rem 0.6rem;
    }
    
    .practice-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .practice-area-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .practice-area-card p {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }
    
    .practice-highlights li {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }
    
    .practice-area-card .btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .attorney-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    /* Finally break practice areas to 2 columns on mobile */
    .practice-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .practice-area-card {
        padding: 1.2rem 1rem;
    }
    
    .practice-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .practice-area-card h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .practice-area-card p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .practice-highlights li {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .attorneys-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .practice-areas-grid,
    .attorneys-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .attorney-image {
        height: 200px;
    }
    
    .practice-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .practice-area-card {
        padding: 1.5rem 1.2rem;
    }
    
    .practice-area-card h3 {
        font-size: 1.1rem;
    }
    
    .practice-area-card p {
        font-size: 0.85rem;
    }
}

/* ================================
   PAGE HEADER SECTION  
   ================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    color: white;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ================================
   ATTORNEY FILTERS SECTION
   ================================ */
.attorney-filters {
    background: #fff;
    padding: 2rem 0;
    /* border-top removed as requested */
    box-shadow: 0 2px 16px rgba(30, 54, 93, 0.04);
    border-radius: 10px;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.attorney-filter {
    background: #fff;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(30, 54, 93, 0.06);
    outline: none;
    margin: 0 0.25rem 0.5rem 0.25rem;
    min-width: 140px;
    text-align: center;
}
.attorney-filter:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
}


.attorney-filter:hover,
.attorney-filter.active {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 54, 93, 0.10);
}

/* ================================
   PRACTICE AREAS SECTION
   ================================ */
