/* 
   Sterling Legal Group - Prestigious Law Firm Design
   Aesthetic: Traditional, Authoritative, Trustworthy
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --navy: #1a365d;
    --navy-dark: #0f2442;
    --navy-light: #2c4a7c;
    --gold: #c9a227;
    --gold-light: #dbb94a;
    --cream: #faf8f5;
    --white: #ffffff;
    --text: #2d3748;
    --text-light: #718096;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 0.5rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body { 
    font-family: 'Inter', -apple-system, sans-serif; 
    color: var(--text); 
    background: var(--white);
    line-height: 1.7;
}

h1, h2, h3 { 
    font-family: 'Cormorant Garamond', serif; 
    color: var(--navy);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; font-weight: 600; }

h1 span, h2 span { color: var(--gold); }

p { margin-bottom: 1rem; color: var(--text-light); }
a { color: var(--navy); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--navy);
    color: var(--white);
    padding: 0.6rem 0;
    font-size: 0.85rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar span { opacity: 0.8; }

.top-bar-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-bar-contact a { color: var(--white); font-weight: 500; }
.top-bar-contact span { opacity: 0.5; }

/* ============================================
   HEADER
   ============================================ */
header {
    background: var(--white);
    position: sticky;
    top: 60px;
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon { font-size: 1.5rem; }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
    border-bottom-color: var(--gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    border-bottom: 3px solid var(--gold);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 1rem;
    color: var(--text);
    font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--navy);
    background: var(--cream);
}

.mobile-nav .mobile-phone {
    color: var(--gold);
    font-weight: 600;
}

/* Icon Styling */
.logo-icon i,
.practice-icon i,
.feature-icon i,
.contact-icon i,
.detail-icon i {
    color: var(--gold);
}

.practice-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.practice-icon i {
    color: var(--gold);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: var(--navy);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--navy-dark);
    color: var(--white);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-outline {
    background: transparent;
    color: var(--navy);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid var(--navy);
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--navy-dark);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: var(--navy);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&q=80&w=1200') center/cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    max-width: 700px;
    color: var(--white);
}

.hero-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--gold); }

.hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.badge-item span {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ============================================
   PAGE HERO (Internal)
   ============================================ */
.page-hero {
    background: var(--navy);
    padding: 4rem 0;
    text-align: center;
}

.page-hero .hero-label {
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 5rem 0; }
.bg-soft { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--white); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-tag.light { color: var(--gold); }

.section-cta { text-align: center; margin-top: 3rem; }

/* ============================================
   PRACTICE AREAS GRID
   ============================================ */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.practice-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-decoration: none;
}

.practice-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.practice-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.practice-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.practice-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.practice-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   SPLIT CONTENT (Why Choose Us)
   ============================================ */
.split-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.split-text h2 { color: var(--white); margin-bottom: 1rem; }
.split-text p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

.features-list { }

.feature-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-row:last-child { border-bottom: none; margin-bottom: 0; }

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.split-image {
    position: relative;
}

.split-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.stat-box {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   ATTORNEYS
   ============================================ */
.attorneys-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.attorney-card {
    text-align: center;
}

.attorney-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: var(--radius);
}

.attorney-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s;
}

.attorney-card:hover .attorney-image img {
    transform: scale(1.05);
}

.attorney-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.attorney-title {
    display: block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.attorney-info p {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.attorney-education {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-phone {
    color: rgba(255,255,255,0.7);
}

.cta-phone a {
    color: var(--white);
    font-weight: 600;
}

/* ============================================
   CONTACT BAR
   ============================================ */
.contact-bar {
    background: var(--cream);
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.contact-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--navy);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding-top: 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 3rem;
    margin-top: -3rem;
}

.contact-form-wrap {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

.form-header { margin-bottom: 2rem; }
.form-header h2 { margin-bottom: 0.5rem; }
.form-header p { margin-bottom: 0; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.checkbox-group { margin-bottom: 1.5rem; }

.checkbox-label {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-label input { width: auto; margin-top: 0.25rem; }

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1rem;
}

.sidebar-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
}

.sidebar-card h4 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.office-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.office-detail:last-child { margin-bottom: 0; }

.detail-icon { font-size: 1.25rem; }

.office-detail strong {
    display: block;
    color: var(--navy);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.office-detail p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.hours-list { }

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-note {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
}

.sidebar-card.highlight {
    background: var(--navy);
    color: var(--white);
    border: none;
}

.sidebar-card.highlight h4 { color: var(--white); }
.sidebar-card.highlight p { color: rgba(255,255,255,0.8); }

.phone-cta {
    display: block;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* ============================================
   PROCESS GRID
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.process-number {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.process-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.process-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   MAP
   ============================================ */
.map-section { height: 400px; }
.map-section iframe { width: 100%; height: 100%; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
    display: inline-flex;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-links a:hover { color: var(--white); }

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-contact strong { color: var(--white); font-size: 1.1rem; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.75rem;
    font-style: italic;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .practice-grid,
    .testimonials-grid,
    .attorneys-grid { grid-template-columns: repeat(2, 1fr); }
    
    .split-content,
    .contact-grid { grid-template-columns: 1fr; }
    
    .contact-bar-grid { grid-template-columns: repeat(2, 1fr); }
    
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .split-image { order: -1; }
    .stat-box { position: static; margin-top: 1rem; display: inline-block; }
}

@media (max-width: 768px) {
    header { top: 50px; padding: 0.75rem 0; }
    .top-bar { display: none; }
    
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    header .btn-primary { display: none; }
    
    /* UNIQUE HERO: PRESTIGIOUS AUTHORITY STYLE */
    /* Full dark background with gold accents, portrait image overlay */
    .hero { 
        padding: 0;
        min-height: auto;
    }
    
    .hero::before {
        border-width: 0 0 3px 0;
        border-color: var(--gold);
    }
    
    .hero-content {
        position: relative;
        padding: 2.5rem 1.5rem 2rem;
        text-align: left;
    }
    
    /* Gold prestige bar at top */
    .hero-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 1.5rem;
        width: 60px;
        height: 4px;
        background: var(--gold);
    }
    
    .hero-tag {
        font-size: 0.65rem;
        letter-spacing: 3px;
        margin-bottom: 1rem;
        color: var(--gold);
    }
    
    .hero h1 { 
        font-size: 1.85rem; 
        margin-bottom: 1rem;
        line-height: 1.15;
        text-align: left;
    }
    
    .hero h1 span { color: var(--gold-light); }
    
    .hero p { 
        font-size: 0.9rem; 
        margin-bottom: 1.5rem;
        line-height: 1.7;
        color: rgba(255,255,255,0.75);
        text-align: left;
    }
    
    .hero-badges { 
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        justify-content: flex-start;
    }
    
    .hero-badge {
        font-size: 0.6rem;
        padding: 0.4rem 0.75rem;
        background: rgba(201,162,39,0.15);
        border: 1px solid var(--gold);
        color: var(--gold-light);
    }
    
    .hero-ctas { 
        flex-direction: column; 
        gap: 0.75rem;
    }
    
    .hero-ctas .btn-primary {
        width: 100%; 
        justify-content: center;
        background: var(--gold);
        color: var(--navy-dark);
        border-radius: 0;
        font-weight: 700;
        letter-spacing: 1px;
    }
    
    .hero-ctas .btn-outline {
        width: 100%;
        justify-content: center;
        border-color: rgba(255,255,255,0.3);
        color: var(--white);
        border-radius: 0;
    }
    
    /* Experience badge */
    .hero-image {
        display: flex;
        justify-content: center;
        padding: 1rem 1.5rem 2rem;
        gap: 1rem;
    }
    
    .exp-badge {
        background: var(--navy-light);
        border: 1px solid rgba(201,162,39,0.3);
        padding: 1rem;
        text-align: center;
        flex: 1;
    }
    
    .exp-badge span:first-child {
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--gold);
        font-family: 'Cormorant Garamond', serif;
    }
    
    .exp-badge span:last-child {
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255,255,255,0.6);
    }
    
    .practice-grid,
    .testimonials-grid,
    .attorneys-grid,
    .contact-bar-grid,
    .process-grid { grid-template-columns: 1fr; gap: 1rem; }
    
    .practice-card { padding: 1.5rem; }
    .attorney-card { padding: 1.5rem; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .footer { padding: 2.5rem 0 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .contact-form-wrap { padding: 1.5rem; margin-top: 0; }
    .contact-grid { margin-top: 0; gap: 1.5rem; }
    
    .section { padding: 2.5rem 0; }
    .section-header { margin-bottom: 2rem; }
    .section-header h2 { font-size: 1.5rem; }
    
    .page-hero { padding: 2rem 0; }
    .page-hero h1 { font-size: 1.75rem; }
    
    .cta-full { padding: 3rem 0; }
    .cta-full h2 { font-size: 1.5rem; }
    .cta-buttons { flex-direction: column; gap: 0.75rem; }
    .cta-buttons a { width: 100%; justify-content: center; }
}

/* Extra small screens */
@media (max-width: 375px) {
    .container { padding: 0 1rem; }
    .hero h1 { font-size: 1.5rem; }
}
