/* ========================================
   AREAS OF PRACTICE - MOBILE-FIRST (RESPONSIVE FIXES)
   ======================================== */

/* HERO SECTION (RESPONSIVE FIXES) */
.practice-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(80px, 15vh, 120px) clamp(20px, 5vw, 20px) clamp(60px, 10vh, 80px);
    background: linear-gradient(135deg, #0a1628 0%, #1a2642 50%, #0f1d35 100%);
    overflow: hidden;
    width: 100%;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(194, 166, 115, 0.1) 2px, rgba(194, 166, 115, 0.1) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(194, 166, 115, 0.1) 2px, rgba(194, 166, 115, 0.1) 4px);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: min(900px, 95vw);
    box-sizing: border-box;
    padding: 0 clamp(1rem, 3vw, 0);
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 0.875rem);
    font-weight: 600;
    letter-spacing: clamp(2px, 0.5vw, 3px);
    text-transform: uppercase;
    color: #c2a673;
    margin-bottom: 1.5rem;
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(1.25rem, 3vw, 1.5rem);
    border: 1px solid rgba(194, 166, 115, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    background: rgba(194, 166, 115, 0.1);
    box-sizing: border-box;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    max-width: 100%;
    word-wrap: break-word;
}

.hero-title .modern-accent {
    color: #c2a673;
    font-style: italic;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: min(700px, 90vw);
    margin: 0 auto 3rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(194, 166, 115, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 0.875rem);
    animation: bounce 2s infinite;
    cursor: pointer;
    margin-top: 2rem;
}

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

/* HEXAGON SECTION (RESPONSIVE FIXES) */
.hexagon-section {
    background: #ffffff;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.section-header {
    margin-bottom: 4rem;
    padding: 0 clamp(1rem, 3vw, 1rem);
    max-width: 100%;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 0.875rem);
    font-weight: 600;
    letter-spacing: clamp(1.5px, 0.3vw, 2px);
    text-transform: uppercase;
    color: #c2a673;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 100%;
    word-wrap: break-word;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: #555;
    max-width: min(600px, 90vw);
    margin: 0 auto;
}

/* MOBILE CARDS (RESPONSIVE FIXES) */
.practice-cards {
    display: grid;
    gap: 1.5rem;
    padding: 0 clamp(1rem, 3vw, 1rem);
    max-width: 100%;
}

.practice-card {
    background: linear-gradient(135deg, #0a1628 0%, #1a2642 100%);
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2rem);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(194, 166, 115, 0.2);
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.15);
    box-sizing: border-box;
    max-width: 100%;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(194, 166, 115, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    max-width: 100%;
    word-wrap: break-word;
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.card-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 0.9375rem);
    font-weight: 600;
    color: #c2a673;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-link:active {
    color: #d4b980;
}

/* DESKTOP ONLY */
.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}

/* PRACTICE DETAILS (RESPONSIVE FIXES) */
.practice-detail {
    padding: clamp(3rem, 8vw, 4rem) clamp(1rem, 3vw, 1rem);
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.practice-detail:nth-child(odd) {
    background: #ffffff;
}

.practice-detail:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
}

.practice-detail-grid {
    max-width: min(1200px, 100%);
    margin: 0 auto;
    box-sizing: border-box;
}

.practice-detail-number {
    margin-bottom: 2rem;
}

.large-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 10vw, 5rem);
    font-weight: 700;
    color: #c2a673;
    line-height: 1;
    display: block;
    opacity: 0.3;
}

.number-accent-line {
    width: min(60px, 20vw);
    height: 3px;
    background: linear-gradient(90deg, #c2a673 0%, transparent 100%);
    margin-top: 1rem;
}

.practice-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 4vw, 2rem);
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 100%;
    word-wrap: break-word;
}

.practice-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    max-width: 100%;
}

.practice-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    max-width: 100%;
}

.practice-features li {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.7;
    color: #555;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
}

.practice-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: #c2a673;
    border-radius: 50%;
}

.practice-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    font-weight: 600;
    color: #0a1628;
    text-decoration: none;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(135deg, rgba(194, 166, 115, 0.15) 0%, rgba(194, 166, 115, 0.05) 100%);
    border: 2px solid #c2a673;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.practice-cta:active {
    background: linear-gradient(135deg, #c2a673 0%, #b08f5e 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(194, 166, 115, 0.3);
}

/* UTILITY CLASSES (RESPONSIVE FIXES) */
.py-section {
    padding: clamp(40px, 10vw, 60px) 0;
}

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

.bg-light {
    background: #f8f9fa;
}

/* ========================================
   CTA SECTION STYLES (RESPONSIVE FIXES)
   ======================================== */
.cta-enhanced-section {
    position: relative;
    overflow: hidden;
    background: #0a1628;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: min(700px, 95vw);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 2rem);
    box-sizing: border-box;
    padding: 0 clamp(1rem, 3vw, 0);
}

.cta-icon-badge {
    width: clamp(64px, 12vw, 80px);
    height: clamp(64px, 12vw, 80px);
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #c2a673;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c2a673;
    transition: all 0.3s ease;
}

.cta-content-wrapper:hover .cta-icon-badge {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1) rotate(10deg);
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    color: #ffffff;
    max-width: 100%;
    word-wrap: break-word;
}

.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: min(500px, 90vw);
}

.cta-contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: min(600px, 100%);
}

@media (min-width: 640px) {
    .cta-contact-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cta-contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 1.25rem) clamp(1.25rem, 3vw, 1.5rem);
    background: #0f1d35;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    max-width: 100%;
}

.cta-contact-method:hover {
    border-color: #c2a673;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(194, 166, 115, 0.2);
}

.contact-method-icon {
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c2a673;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cta-contact-method:hover .contact-method-icon {
    background: #c2a673;
    color: #0a1628;
    transform: scale(1.1);
}

.contact-method-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    flex-grow: 1;
    min-width: 0;
}

.contact-method-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 0.75rem);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-method-value {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #ffffff;
    font-weight: 500;
}

.cta-button-large {
    padding: clamp(0.8rem, 2vw, 1.1rem) clamp(1.5rem, 4vw, 2.5rem);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #0a1628;
    text-decoration: none;
    background: linear-gradient(135deg, #c2a673 0%, #b08f5e 100%);
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 166, 115, 0.4);
}

.cta-button-large svg {
    transition: transform 0.3s ease;
}

.cta-button-large:hover svg {
    transform: translateX(5px);
}

/* ========================================
   FOOTER & CREDIT BAR - CONTINUED (RESPONSIVE FIXES)
   ======================================== */

/* TABLET (768px+) */
@media (min-width: 768px) {
    .hero-title {
        font-size: clamp(3.5rem, 6vw, 4.5rem);
    }
    
    .section-title {
        font-size: clamp(3rem, 5vw, 3.5rem);
    }
    
    .practice-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 clamp(2rem, 4vw, 2rem);
    }
    
    .practice-card:hover::before {
        opacity: 1;
    }
    
    .practice-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(194, 166, 115, 0.2);
    }
    
    .card-link:hover {
        color: #d4b980;
    }
    
    .practice-cta:hover {
        background: linear-gradient(135deg, #c2a673 0%, #b08f5e 100%);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(194, 166, 115, 0.3);
    }
    
    .practice-detail {
        padding: clamp(4rem, 8vw, 5rem) clamp(2rem, 4vw, 2rem);
    }
    
    .practice-detail-grid {
        display: grid;
        grid-template-columns: min(150px, 25%) 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .practice-detail.practice-detail-reverse .practice-detail-grid {
        grid-template-columns: 1fr min(150px, 25%);
    }
    
    .practice-detail.practice-detail-reverse .practice-detail-number {
        order: 2;
    }
    
    .practice-detail.practice-detail-reverse .practice-detail-content {
        order: 1;
    }
    
    .py-section {
        padding: clamp(60px, 12vw, 80px) 0;
    }
}

/* DESKTOP (1024px+) */
@media (min-width: 1024px) {
    .hero-title {
        font-size: clamp(4.5rem, 6vw, 5rem);
    }
    
    .mobile-only {
        display: none;
    }
    
    .desktop-only {
        display: block;
    }
    
    .hexagon-container {
        position: relative;
        width: 100%;
        max-width: min(1000px, 95vw);
        height: clamp(600px, 60vh, 700px);
        margin: 0 auto;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 30px;
        overflow: hidden;
        border: 1px solid rgba(194, 166, 115, 0.15);
        box-shadow: 0 10px 50px rgba(10, 22, 40, 0.08);
        box-sizing: border-box;
    }
    
    #hexagon-canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
    
    .hexagon-center {
        position: absolute;
        z-index: 100;
        pointer-events: none;
    }
    
    .center-logo-wrapper {
        width: clamp(100px, 15vw, 120px);
        height: clamp(100px, 15vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transform: translate(-50%, -50%);
    }
    
    .center-logo {
        width: clamp(60px, 10vw, 80px);
        height: auto;
        position: relative;
        z-index: 2;
        filter: drop-shadow(0 4px 15px rgba(194, 166, 115, 0.3));
    }
    
    .center-glow {
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(194, 166, 115, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        animation: glow 3s ease-in-out infinite;
    }
    
    @keyframes glow {
        0%, 100% {
            transform: scale(1);
            opacity: 0.5;
        }
        50% {
            transform: scale(1.2);
            opacity: 0.8;
        }
    }
    
    .hexagon-nodes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hexagon-node {
        position: absolute;
        cursor: pointer;
        z-index: 10;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hexagon-node:hover {
        z-index: 50;
        transform: scale(1.08);
    }
    
    .node-content {
        background: linear-gradient(135deg, #0a1628 0%, #1a2642 100%);
        border: 2px solid #c2a673;
        border-radius: 15px;
        padding: clamp(1rem, 2vw, 1.25rem) clamp(1.5rem, 3vw, 1.75rem);
        box-shadow: 0 8px 30px rgba(10, 22, 40, 0.2);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        min-width: clamp(160px, 20vw, 180px);
        max-width: clamp(190px, 25vw, 210px);
        box-sizing: border-box;
    }
    
    .node-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(194, 166, 115, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .hexagon-node:hover .node-content::before {
        left: 100%;
    }
    
    .hexagon-node:hover .node-content {
        background: linear-gradient(135deg, #1a2642 0%, #0a1628 100%);
        border-color: #d4b980;
        box-shadow: 0 16px 60px rgba(194, 166, 115, 0.5), 0 8px 30px rgba(10, 22, 40, 0.3);
    }
    
    .node-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(1.1rem, 2vw, 1.25rem);
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.25rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .node-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: clamp(0.8rem, 1.5vw, 0.875rem);
        color: rgba(194, 166, 115, 0.8);
        font-weight: 500;
        line-height: 1.3;
    }
    
    .practice-detail {
        padding: clamp(5rem, 10vw, 6rem) clamp(2rem, 4vw, 2rem);
    }
    
    .practice-detail-grid {
        grid-template-columns: min(200px, 30%) 1fr;
        gap: 4rem;
    }
    
    .practice-detail.practice-detail-reverse .practice-detail-grid {
        grid-template-columns: 1fr min(200px, 30%);
    }
    
    .py-section {
        padding: clamp(80px, 15vw, 100px) 0;
    }
}

/* LARGE DESKTOP (1440px+) */
@media (min-width: 1440px) {
    .hero-title {
        font-size: clamp(5rem, 6vw, 5rem);
    }
    
    .section-title {
        font-size: clamp(3.5rem, 4vw, 3.5rem);
    }
    
    .hexagon-container {
        height: clamp(700px, 60vh, 800px);
        max-width: min(1150px, 95vw);
    }
    
    .center-logo-wrapper {
        width: clamp(120px, 15vw, 140px);
        height: clamp(120px, 15vw, 140px);
    }
    
    .center-logo {
        width: clamp(80px, 10vw, 100px);
    }
}

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

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

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

.hexagon-node:focus {
    outline: 2px solid #c2a673;
    outline-offset: 4px;
}

.practice-cta:focus {
    outline: 2px solid #c2a673;
    outline-offset: 4px;
}

/* ========================================
   FOOTER STYLES (RESPONSIVE FIXES)
   ======================================== */
.footer-main {
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 100%;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template -columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 4rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo img {
    height: clamp(40px, 6vw, 45px);
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-tagline {
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: min(280px, 100%);
    margin: 0;
}

.footer-address {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-address p {
    margin: 0.25rem 0;
    max-width: 100%;
}

.footer-column-title {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #c2a673;
    padding-left: 8px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact svg {
    color: #c2a673;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #c2a673;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    font-size: clamp(0.8rem, 1.5vw, 0.85rem);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(0.8rem, 1.5vw, 0.85rem);
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #c2a673;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   CREDIT BAR (RESPONSIVE FIXES)
   ======================================== */
.credit-bar {
    background: linear-gradient(90deg, 
        rgba(212, 175, 55, 0.03) 0%, 
        rgba(212, 175, 55, 0.08) 50%, 
        rgba(212, 175, 55, 0.03) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 0.75rem;
    text-align: center;
    font-size: clamp(0.75rem, 1.2vw, 0.8rem);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.credit-bar a {
    color: #c2a673;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.credit-bar a:hover {
    color: #d4b980;
    text-decoration: underline;
}

/* ========================================
   MOBILE SPECIFIC OPTIMIZATIONS
   ======================================== */
@media (max-width: 767px) {
    .practice-hero {
        min-height: 90vh;
        padding: clamp(80px, 12vh, 100px) 20px clamp(40px, 8vh, 60px);
    }
    
    .hero-eyebrow {
        margin-bottom: 1rem;
        padding: 0.4rem 1.25rem;
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-description {
        margin-bottom: 2rem;
    }
    
    .practice-cards {
        padding: 0 1rem;
    }
    
    .practice-card {
        padding: 1.5rem;
    }
    
    .contact-method-icon {
        width: 40px;
        height: 40px;
    }
    
    .cta-contact-method {
        padding: 1rem 1.25rem;
    }
}