/* =============================================
   LAKE COUNTY DUI DEFENSE TEAM - V3 STYLESHEET
   Premium, Visually Stunning, Conversion-Focused
   ============================================= */

/* CSS Variables */
:root {
    /* Primary Colors - Deep Blue/Navy for trust & authority */
    --primary-dark: #0a1628;
    --primary: #1a365d;
    --primary-light: #2c5282;
    
    /* Accent Colors - Gold/Amber for urgency & excellence */
    --accent: #d69e2e;
    --accent-light: #ecc94b;
    --accent-dark: #b7791f;
    --accent-glow: rgba(214, 158, 46, 0.3);
    
    /* Danger/Alert - Red for urgency */
    --danger: #c53030;
    --danger-light: #fc8181;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f7fafc;
    --gray-100: #edf2f7;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e0;
    --gray-400: #a0aec0;
    --gray-500: #718096;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --gray-900: #171923;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 10px 40px rgba(214, 158, 46, 0.3);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(214, 158, 46, 0.3); }
    50% { box-shadow: 0 0 40px rgba(214, 158, 46, 0.6); }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease forwards;
}

.animate-scale {
    animation: scaleIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* =============================================
   RESET & BASE STYLES
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-800);
}

/* =============================================
   BUTTONS - Premium Styling
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(214, 158, 46, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(214, 158, 46, 0.5);
    color: var(--white);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.btn-light:hover {
    background: var(--gray-100);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* =============================================
   TOP BAR - Sleek Design
   ============================================= */
.top-bar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, #0f2744 100%);
    color: var(--gray-400);
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left span {
    margin-right: 5px;
}

.top-left .divider {
    color: var(--gray-600);
    margin: 0 15px;
}

.top-left i {
    color: var(--accent);
    margin-right: 8px;
}

.top-right .highlight {
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-right .highlight i {
    font-size: 14px;
}

/* =============================================
   HEADER & NAVIGATION - Premium
   ============================================= */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-phone {
    display: none;
}

.nav-phone .phone-link {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
}

.phone-text {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.phone-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-number i {
    color: var(--accent);
    font-size: 18px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 20px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    list-style: none;
    border-top: 3px solid var(--accent);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    font-size: 14px;
    text-transform: none;
    color: var(--gray-600);
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg, var(--gray-50), transparent);
    color: var(--accent);
    padding-left: 30px;
}

.dropdown-menu li a::after {
    display: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* =============================================
   HERO SECTION - Dramatic & Premium
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-police.jpg') center/cover no-repeat;
    opacity: 0.2;
    filter: grayscale(30%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 22, 40, 0.97) 0%, 
        rgba(26, 54, 93, 0.9) 50%,
        rgba(10, 22, 40, 0.95) 100%);
}

/* Decorative elements */
.hero .hero-decoration {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(214, 158, 46, 0.1);
    border-radius: 50%;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    z-index: 1;
}

.hero .hero-decoration::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(214, 158, 46, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(214, 158, 46, 0.15) 0%, rgba(214, 158, 46, 0.05) 100%);
    border: 1px solid rgba(214, 158, 46, 0.4);
    color: var(--accent);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: glow 3s ease-in-out infinite;
}

.hero-badge i {
    font-size: 16px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    display: block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-family: var(--font-accent);
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-300);
    margin-bottom: 25px;
    font-style: italic;
}

.hero-subtext {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-subtext strong {
    color: var(--white);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 45px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Attorney Image */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-attorney-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.hero-attorney-images {
    display: flex;
    justify-content: center;
    gap: -20px;
    margin-bottom: 30px;
}

.attorney-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--accent);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-left: -15px;
    transition: var(--transition);
}

.attorney-avatar:first-child {
    margin-left: 0;
}

.attorney-avatar:hover {
    transform: scale(1.1) translateY(-5px);
    z-index: 10;
}

.attorney-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-attorney-card h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 10px;
}

.hero-attorney-card p {
    color: var(--gray-400);
    font-size: 14px;
    margin-bottom: 25px;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-rating .stars {
    color: var(--accent);
    font-size: 18px;
}

.hero-rating span {
    color: var(--white);
    font-weight: 700;
}

/* =============================================
   TRUST BADGES - Premium Visual
   ============================================= */
.trust-badges {
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-800) 100%);
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -1px;
}

.badges-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 35px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    cursor: default;
}

.badge-item:last-child {
    border-right: none;
}

.badge-item:hover {
    background: rgba(214, 158, 46, 0.1);
}

.badge-item i {
    font-size: 32px;
    color: var(--accent);
    filter: drop-shadow(0 0 10px rgba(214, 158, 46, 0.3));
}

.badge-item span {
    color: var(--gray-300);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   SECTION HEADERS - Elegant
   ============================================= */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-header.light .section-tag {
    background: rgba(214, 158, 46, 0.2);
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(214, 158, 46, 0.1);
    border-radius: 30px;
}

.section-header h2 {
    font-size: 44px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.8;
}

/* =============================================
   WHY CHOOSE US - Cards with Hover Effects
   ============================================= */
.why-choose-us {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

/* Removed decorative overlay that was obscuring text */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 45px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* =============================================
   ATTORNEYS SECTION - New Premium Section
   ============================================= */
.attorneys-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.attorneys-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.attorney-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--transition-slow);
    text-align: center;
}

.attorney-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.attorney-image {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    overflow: hidden;
}

.attorney-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.attorney-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
}

.attorney-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.attorney-info {
    padding: 30px;
}

.attorney-info h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 5px;
}

.attorney-info .title {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.attorney-info p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
}

/* =============================================
   PRACTICE AREAS - Dark Section with Cards
   ============================================= */
.practice-areas {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.practice-areas::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(214, 158, 46, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.practice-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-slow);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(214, 158, 46, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.practice-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(214, 158, 46, 0.3);
}

.practice-card:hover::before {
    opacity: 1;
}

.practice-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(214, 158, 46, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.practice-card:hover .practice-icon {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(214, 158, 46, 0.4);
}

.practice-icon i {
    font-size: 36px;
    color: var(--white);
}

.practice-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.practice-card p {
    color: var(--gray-400);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.learn-more {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.learn-more i {
    transition: var(--transition);
}

.practice-card:hover .learn-more {
    color: var(--accent-light);
}

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

/* =============================================
   RESULTS SECTION - Split Layout
   ============================================= */
.results-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    overflow: hidden;
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.results-text {
    animation: fadeInLeft 0.8s ease;
}

.results-text h2 {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.results-text h2 span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-text > p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.8;
}

.results-list {
    margin-bottom: 40px;
}

.result-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.result-item:hover {
    padding-left: 10px;
    background: linear-gradient(90deg, var(--gray-50), transparent);
}

.result-item i {
    color: var(--accent);
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.result-item span {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.6;
}

.result-item strong {
    color: var(--primary);
    font-weight: 700;
}

.results-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: fadeInRight 0.8s ease;
}

.results-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
}

.results-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

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

/* =============================================
   TESTIMONIALS - Carousel Style
   ============================================= */
.testimonials {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px 30px;
    background: var(--white);
    border-radius: 50px;
    display: inline-flex;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.google-rating .stars {
    color: var(--accent);
    font-size: 20px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 15px;
    color: var(--gray-600);
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: var(--transition-slow);
    border: 1px solid var(--gray-100);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 30px;
    right: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 3px;
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.testimonial-card:hover::before {
    opacity: 1;
    top: 0;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.quote-icon i {
    color: var(--white);
    font-size: 20px;
}

.testimonial-card > p {
    font-size: 16px;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.9;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.author-stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.author-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}

.author-case {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 3px;
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

/* =============================================
   FAQ SECTION - Modern Accordion
   ============================================= */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-50);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.faq-item:hover {
    border-color: var(--gray-200);
}

.faq-item.active {
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    color: var(--accent);
    font-size: 18px;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray-600);
    line-height: 1.9;
}

/* =============================================
   CONTACT SECTION - Split Design
   ============================================= */
.contact-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-item i {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.contact-item .label {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-item a,
.contact-item span {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 17px;
}

.contact-item a:hover {
    color: var(--accent);
}

.areas-served {
    padding: 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    color: var(--white);
}

.areas-served h4 {
    color: var(--accent-light);
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.areas-served p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-100);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(214, 158, 46, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-disclaimer {
    margin-bottom: 25px;
    padding: 15px 20px;
    background: var(--gray-50);
    border-radius: 10px;
    border-left: 3px solid var(--accent);
}

.form-disclaimer p {
    font-size: 12px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   CTA BANNER - Urgent Action
   ============================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--danger) 0%, #9b2c2c 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/handcuffs.jpg') center/cover;
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   FOOTER - Modern Dark Design
   ============================================= */
.main-footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #050c18 100%);
    color: var(--gray-400);
    padding: 100px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.footer-logo .logo-main {
    color: var(--white);
    font-size: 22px;
}

.footer-logo .logo-sub {
    color: var(--accent);
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 15px;
}

.division-note {
    font-size: 14px;
    color: var(--gray-500);
}

.division-note a {
    color: var(--accent);
    font-weight: 600;
}

.division-note a:hover {
    color: var(--accent-light);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--gray-400);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 3px;
    width: 20px;
}

.footer-contact-item a,
.footer-contact-item span {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 35px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 12px;
    color: var(--gray-500);
}

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

.disclaimer {
    font-size: 11px;
    color: var(--gray-600);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =============================================
   MOBILE CTA - Fixed Bottom
   ============================================= */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 15px;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(214, 158, 46, 0.4);
}

/* =============================================
   INTERNAL PAGES - Common Styles
   ============================================= */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/lady-justice.jpg') center/cover;
    opacity: 0.1;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: var(--gray-300);
    max-width: 600px;
}

.page-content {
    padding: var(--section-padding) 0;
}

.page-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--gray-600);
}

.page-content ul, .page-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--gray-600);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero h1 {
        font-size: 52px;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-subtext {
        margin: 0 auto 40px;
    }
    
    .features-grid,
    .practice-grid,
    .testimonials-grid,
    .attorneys-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .results-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: 38px;
    }
    
    .badges-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .badge-item:nth-child(4),
    .badge-item:nth-child(5) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Top Bar */
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-left .divider {
        display: none;
    }
    
    /* Header */
    .navbar {
        flex-wrap: wrap;
    }
    
    .nav-phone {
        display: block;
        order: 1;
    }
    
    .mobile-toggle {
        display: flex;
        order: 2;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        order: 3;
        background: var(--white);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        border-top: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .hero-subtext {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .stat {
        flex-basis: calc(50% - 15px);
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-attorney-card {
        padding: 30px;
    }
    
    .attorney-avatar {
        width: 70px;
        height: 70px;
    }
    
    /* Trust Badges */
    .badges-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .badge-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding: 25px 15px;
    }
    
    .badge-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    /* Grids */
    .features-grid,
    .practice-grid,
    .testimonials-grid,
    .attorneys-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Mobile CTA */
    .mobile-cta {
        display: block;
    }
    
    body {
        padding-bottom: 90px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 30px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    /* Results */
    .results-text h2 {
        font-size: 32px;
    }
    
    /* CTA Banner */
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 17px;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .page-hero p {
        font-size: 17px;
    }
    
    /* Contact */
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .contact-info h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 10px 18px;
    }
    
    .stat {
        flex-basis: 100%;
        text-align: center;
    }
    
    .badge-item {
        flex-basis: 100%;
    }
    
    .feature-card,
    .testimonial-card,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .hero-attorney-card {
        padding: 25px;
    }
    
    .attorney-avatar {
        width: 60px;
        height: 60px;
    }
    
    .google-rating {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .main-header,
    .mobile-cta,
    .cta-banner {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    body {
        padding-bottom: 0;
    }
}
