@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #0056B3;
    --teal-aqua: #2ECC71;
    --light-gray: #F8F9FA;
    --dark-gray: #343A40;
    --accent-red: #DC3545;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

.section {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-dark {
    background-color: var(--dark-gray);
    color: var(--white);
}

.bg-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--teal-aqua);
    transition: width 0.6s ease;
}

.section-title.animated::after {
    width: 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.header.sticky {
    height: 60px;
    background: var(--light-gray);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: none;
}

.nav-desktop {
    display: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark-gray);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--teal-aqua);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-cta {
    display: none;
}

.phone-number {
    display: none;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 14px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--dark-gray);
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    transition: right 0.4s ease;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu-links a {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-gray);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu-cta {
    margin-top: 30px;
}

.mobile-menu .btn-primary {
    display: block;
    text-align: center;
    padding: 16px 32px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: slowPan 60s linear infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 30, 60, 0.65);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
    max-width: 900px;
}

.hero h1 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero .btn-primary {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

@keyframes slowPan {
    0% { transform: translateX(0); }
    100% { transform: translateX(-20px); }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: #004494;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:focus {
    outline: 2px solid var(--teal-aqua);
    outline-offset: 2px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary:focus {
    outline: 2px solid var(--teal-aqua);
    outline-offset: 2px;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

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

/* Areas of Practice */
.practice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.practice-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.practice-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.practice-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.practice-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.practice-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.why-choose-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.why-choose-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.why-choose-content ul {
    margin-top: 20px;
}

.why-choose-content li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.why-choose-content li::before {
    content: '✓';
    color: var(--teal-aqua);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Merriweather', serif;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    margin-top: 40px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-20px);
}

.process-step.animated {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.step-content p {
    color: #666;
}

/* Testimonials */
.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-blue);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--primary-blue);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003d80 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-banner .phone-display {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Merriweather', serif;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question::after {
    content: '−';
}

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

.faq-answer-content {
    padding-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

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

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

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

.contact-info-item span {
    font-weight: 600;
    color: var(--primary-blue);
    min-width: 80px;
}

.contact-info-item p {
    color: #666;
}

/* Map */
.map-container {
    width: 100%;
    height: 400px;
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-about p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--teal-aqua);
}

.footer-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
}

.footer-cta h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.copyright {
    color: #777;
    font-size: 0.9rem;
    text-align: center;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
}

/* Split CTA Section */
.split-cta {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 400px;
}

.split-cta-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.split-cta-item:first-child {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.split-cta-item:last-child {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.split-cta-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.split-cta-item p {
    margin-bottom: 25px;
    max-width: 300px;
    color: #666;
}

/* Quote Section */
.quote-section {
    background: var(--light-gray);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: rgba(0, 86, 179, 0.1);
    font-family: 'Merriweather', serif;
}

.quote-text {
    font-size: 1.5rem;
    font-family: 'Merriweather', serif;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.quote-author {
    color: var(--primary-blue);
    font-weight: 600;
}

/* About Page Styles */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
    padding-top: 70px;
}

.about-hero-content {
    text-align: center;
    padding: 40px 20px;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.about-hero p {
    font-size: 1.2rem;
    color: #666;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-image {
    overflow: hidden;
}

.about-image img.reveal {
    animation: revealImage 1s ease forwards;
}

@keyframes revealImage {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0 0 0); }
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.about-text p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.value-card h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Promise Panel */
.promise-panel {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.8s ease;
}

.promise-panel.revealed {
    transform: translateY(0);
    opacity: 1;
}

.promise-panel h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 30px;
}

.promise-panel p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Emergency CTA */
.emergency-cta {
    background: var(--accent-red);
    padding: 50px 0;
    text-align: center;
    color: var(--white);
}

.emergency-cta h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.emergency-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.emergency-cta .phone-display {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.emergency-cta .btn-light {
    background: var(--white);
    color: var(--accent-red);
}

.emergency-cta .btn-light:hover {
    background: #f0f0f0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Justice Scale Animation */
.justice-scale {
    display: none;
    width: 60px;
    height: 60px;
    margin: 20px auto 0;
}

.justice-scale.show {
    display: block;
    animation: scaleBalance 1s ease;
}

@keyframes scaleBalance {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 30px;
}

.form-success.show {
    display: block;
}

.form-success h3 {
    color: var(--teal-aqua);
    margin-bottom: 15px;
}

/* Hidden Panel Trigger */
.promise-trigger {
    text-align: center;
    padding: 40px;
    cursor: pointer;
    color: #888;
}

.promise-trigger span {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Responsive Styles - Tablet */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero .hero-subtitle {
        font-size: 1.3rem;
    }

    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-steps {
        flex-direction: row;
        justify-content: space-between;
    }

    .process-step {
        flex: 1;
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .split-cta {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-split {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .header-cta {
        display: block;
    }

    .phone-number {
        display: block;
    }

    .hamburger {
        display: none;
    }
}

/* Responsive Styles - Desktop */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 3rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .practice-card {
        padding: 50px 40px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 60px;
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-split {
        gap: 80px;
    }

    .header-inner {
        padding: 0 50px;
    }

    .nav-links {
        gap: 40px;
    }

    .nav-links a {
        font-size: 15px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-bg {
        animation: none;
    }

    .practice-card,
    .service-card,
    .value-card,
    .process-step {
        opacity: 1;
        transform: none;
    }
}
