/* ============================================
   HOFFMAN LEGAL - Main Stylesheet
   Color Scheme: Dark Navy + Gold
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --navy-dark: #0d1b2a;
    --navy: #1b2d45;
    --navy-light: #253b56;
    --gold: #c9a94e;
    --gold-light: #e0c76a;
    --gold-dark: #a8892e;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #e0e0e0;
    --gray-dark: #6b7280;
    --text-dark: #1a1a1a;
    --text-body: #4a4a4a;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.18);
    --radius: 6px;
    --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

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

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

ul {
    list-style: none;
}

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

.gold-text {
    color: var(--gold);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--navy-dark);
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    background: rgba(13, 27, 42, 0.98);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 45px;
    height: 45px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    border-radius: 4px;
}

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

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.3px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.header-phone:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--navy-dark) 30%, rgba(13, 27, 42, 0.85) 45%, rgba(13, 27, 42, 0.35) 70%, rgba(13, 27, 42, 0.1) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 35px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary {
    background: var(--navy-dark);
    color: var(--white);
    border: 2px solid var(--white);
}

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

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.hero-badge {
    text-align: center;
    padding: 30px;
}

.badge-icon {
    width: 70px;
    height: 70px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.badge-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.badge-text {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1.6;
}

.badge-text strong {
    color: var(--gold);
}

.badge-underline {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto 0;
}

/* --- Features Bar --- */
.features-bar {
    background: var(--white);
    padding: 30px 0;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 3;
}

.features-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--gold);
}

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

.feature-text strong {
    font-size: 0.85rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.feature-text span {
    font-size: 0.8rem;
    color: var(--gray-dark);
}

/* --- About Section --- */
.about-section {
    padding: 80px 0;
    background: var(--gray-light);
}

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

.section-label {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-top: 10px;
    margin-bottom: 15px;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 25px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.about-feature-icon {
    width: 55px;
    height: 55px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.about-feature-icon i {
    font-size: 1.2rem;
    color: var(--gold);
}

.about-feature span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* --- Contact Form --- */
.about-form {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 35px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.form-header p {
    font-size: 1rem;
}

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

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--white);
}

.form-group textarea {
    padding-left: 15px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 78, 0.1);
}

.btn-submit {
    width: 100%;
    background: var(--navy-dark);
    color: var(--white);
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-dark);
    margin-top: 15px;
}

.form-disclaimer i {
    margin-right: 5px;
}

/* --- CTA / Stats Section --- */
.cta-section {
    background: var(--navy-dark);
    padding: 60px 0;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.cta-text h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
}

.cta-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.cta-stats {
    display: flex;
    gap: 40px;
}

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

.stat-icon {
    width: 45px;
    height: 45px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: var(--gold);
    font-size: 1rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* --- Footer --- */
.footer {
    background: var(--navy);
    padding: 60px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.5fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.footer-links h4,
.footer-contact h4,
.footer-service-area h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact ul li i {
    color: var(--gold);
    font-size: 0.85rem;
}

.footer-service-area p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .features-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-left {
        flex-direction: column;
    }

    .cta-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-dark);
        padding: 80px 30px 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badge {
        margin-top: 40px;
    }

    .features-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .about-form {
        padding: 25px 20px;
    }

    .cta-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-number {
        font-size: 1.4rem;
    }
}



/* ============================================
   ATTORNEY PAGE STYLES
   ============================================ */

/* --- Attorney Hero --- */
.attorney-hero {
    background: var(--navy-dark);
    padding: 140px 0 60px;
    text-align: center;
}

.attorney-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-top: 10px;
    margin-bottom: 10px;
}

.attorney-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
}

/* --- Attorney Section --- */
.attorney-section {
    padding: 80px 0;
    background: var(--white);
}

.attorney-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.attorney-image {
    position: relative;
}

.attorney-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.attorney-image-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--gold);
    border-radius: 10px;
    z-index: -1;
}

.attorney-bio .section-title {
    font-size: 2.4rem;
}

.attorney-bio p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.attorney-highlights {
    margin: 35px 0;
    padding: 25px;
    background: var(--gray-light);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 25px;
    text-align: center;
}

.attorney-cta {
    margin-top: 10px;
    background: var(--navy-dark);
    color: var(--white);
    border: 2px solid var(--navy-dark);
}

.attorney-cta:hover {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

/* --- Attorney Quote Section --- */
.attorney-quote-section {
    background: var(--navy-dark);
    padding: 80px 0;
}

.attorney-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 20px;
}

.attorney-quote p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.attorney-quote cite {
    font-style: normal;
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

/* --- Attorney Page Responsive --- */
@media (max-width: 1024px) {
    .attorney-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .attorney-image {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .attorney-hero-title {
        font-size: 2.5rem;
    }

    .attorney-bio .section-title {
        font-size: 2rem;
    }

    .attorney-quote p {
        font-size: 1.2rem;
    }

    .attorney-image-border {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }
}

@media (max-width: 480px) {
    .attorney-hero-title {
        font-size: 2rem;
    }

    .attorney-bio .section-title {
        font-size: 1.6rem;
    }

    .attorney-quote p {
        font-size: 1rem;
    }
}



/* ============================================
   INNER PAGES (How We Help / Tenant Rights / FAQs)
   ============================================ */

/* --- Generic Page Hero --- */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gold);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    margin-top: 12px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Generic Content Section --- */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-section.gray-section {
    background: var(--gray-light);
}

.content-intro {
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.content-intro p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-top: 15px;
}

.section-divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* --- Process Grid (How We Help) --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-card {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: 10px;
    padding: 40px 35px 35px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.process-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

.process-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-icon i {
    color: var(--gold);
    font-size: 1.4rem;
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-item {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-item i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 18px;
}

.service-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-item p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* --- Benefits Grid --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.benefit-icon i {
    color: var(--gold);
    font-size: 1.6rem;
}

.benefit-item:hover .benefit-icon {
    background: var(--gold);
}

.benefit-item:hover .benefit-icon i {
    color: var(--navy-dark);
}

.benefit-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: 12px;
    padding: 45px 50px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(201, 169, 78, 0.2);
}

.cta-banner-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}

.cta-banner-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
    border: 2px solid var(--gold);
    font-weight: 700;
    white-space: nowrap;
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

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

.rights-card {
    background: var(--white);
    border-left: 4px solid var(--gold);
    padding: 30px 30px 30px 35px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.rights-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(3px);
}

.rights-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 78, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.rights-icon i {
    color: var(--gold);
    font-size: 1.3rem;
}

.rights-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.rights-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

.rights-card strong {
    color: var(--navy-dark);
}

/* --- Statute Card --- */
.statute-card {
    background: var(--white);
    border-radius: 12px;
    padding: 50px 50px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--gold);
    max-width: 900px;
    margin: 0 auto;
}

.statute-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray);
}

.statute-header > i {
    font-size: 2.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.statute-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-top: 8px;
    font-weight: 800;
}

.statute-card p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.statute-list {
    list-style: none;
    margin: 25px 0;
}

.statute-list li {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.statute-list li i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.statute-note {
    background: var(--gray-light);
    padding: 18px 22px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    margin-top: 25px !important;
    font-style: italic;
    font-size: 0.95rem !important;
}

/* --- Red Flags Grid --- */
.redflags-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.redflag-item {
    background: var(--white);
    padding: 25px 28px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.redflag-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.redflag-item i {
    color: #d97706;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.redflag-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 900px;
}

.faq-category-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy-dark);
    margin: 50px 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
    font-weight: 800;
}

.faq-category-title:first-child {
    margin-top: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    list-style: none;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: var(--gray-light);
}

.faq-item[open] summary {
    background: var(--navy-dark);
    color: var(--white);
}

.faq-item summary i {
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-answer {
    padding: 22px 28px 28px;
    border-top: 1px solid var(--gray);
    background: var(--white);
}

.faq-answer p {
    color: var(--text-body);
    font-size: 0.97rem;
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--navy-dark);
}

/* --- Attorney Address (David Hoffman page) --- */
.attorney-address {
    background: var(--gray-light);
    border-left: 4px solid var(--gold);
    padding: 25px 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.attorney-address h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.attorney-address h3 i {
    color: var(--gold);
}

.attorney-address address {
    font-style: normal;
    color: var(--text-body);
    line-height: 2;
    font-size: 0.97rem;
}

.attorney-address address a {
    color: var(--text-body);
}

.attorney-address address a:hover {
    color: var(--gold);
}

.attorney-address address i {
    color: var(--gold);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* ============================================
   INNER PAGES - RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .page-hero-title {
        font-size: 2.5rem;
    }

    .process-grid,
    .rights-grid,
    .redflags-grid {
        grid-template-columns: 1fr;
    }

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

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

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
    }

    .statute-card {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 110px 0 50px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .content-section {
        padding: 50px 0;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .statute-header {
        flex-direction: column;
        gap: 15px;
    }

    .statute-title {
        font-size: 1.5rem;
    }

    .faq-item summary {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 18px 20px 22px;
    }

    .faq-category-title {
        font-size: 1.4rem;
    }

    .cta-banner-content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 1.7rem;
    }

    .process-card,
    .rights-card {
        padding: 25px 22px;
    }

    .statute-card {
        padding: 25px 22px;
    }

    .cta-banner {
        padding: 25px 20px;
    }
}



/* ============================================
   TRANSLATOR WIDGET
   ============================================ */
.translator-widget {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    background: transparent;
    margin-right: 12px;
}

.translator-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: var(--transition);
    font-family: var(--font-body);
}

.translator-btn:hover {
    color: var(--gold);
}

.translator-btn.active {
    color: var(--gold);
}

.translator-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Hide Google Translate UI artifacts */
.goog-te-banner-frame,
.skiptranslate {
    display: none !important;
}
body {
    top: 0 !important;
}
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

@media (max-width: 1024px) {
    .translator-widget {
        margin-right: 8px;
        padding: 5px 10px;
    }
    .translator-btn {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .translator-widget {
        order: -1;
        margin-right: auto;
        margin-left: 12px;
    }
}

/* ============================================
   LIVE 24/7 INDICATOR (CTA Stats Section)
   ============================================ */
.stat-item.live-247 {
    align-items: center;
    gap: 14px;
}

.live-dot {
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: live-pulse 1.6s ease-out infinite;
}

.live-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #22c55e;
    animation: live-blink 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes live-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.stat-label.live-label {
    color: #22c55e;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.8rem;
}

/* ============================================
   LEGAL PAGES (Privacy / Terms)
   ============================================ */
.legal-section {
    padding: 60px 0 80px;
}

.legal-container {
    max-width: 850px;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 35px;
    padding: 25px 30px;
    background: var(--gray-light);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy-dark);
    margin: 40px 0 15px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
}

.legal-section p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-section ul,
.legal-section ol {
    margin: 18px 0 18px 25px;
    padding-left: 15px;
}

.legal-section ul li,
.legal-section ol li {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 10px;
    list-style: disc;
}

.legal-section ol li {
    list-style: decimal;
}

.legal-section strong {
    color: var(--navy-dark);
    font-weight: 600;
}

.legal-section em {
    font-style: italic;
}

.legal-contact-block {
    background: var(--gray-light);
    border-radius: 8px;
    padding: 25px 30px;
    margin-top: 20px;
    border-left: 4px solid var(--gold);
}

.legal-contact-block p {
    margin: 0;
    line-height: 1.9;
}

.legal-contact-block a {
    color: var(--navy-dark);
    text-decoration: underline;
}

.legal-contact-block a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 40px 0 60px;
    }
    .legal-section h2 {
        font-size: 1.3rem;
    }
    .legal-intro {
        padding: 18px 20px;
        font-size: 1rem;
    }
    .legal-contact-block {
        padding: 18px 20px;
    }
}

/* ============================================
   BLOG INDEX PAGE
   ============================================ */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold);
}

.featured-post-image {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 5rem;
}

.featured-post-content {
    padding: 35px 35px 35px 0;
}

.featured-post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    margin: 12px 0 15px;
    line-height: 1.3;
    font-weight: 800;
}

.featured-post-content h2 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.featured-post-content h2 a:hover {
    color: var(--gold);
}

.featured-post-content p {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.post-category {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--gray-dark);
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.post-meta i {
    color: var(--gold);
    margin-right: 6px;
}

/* Category Pills */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.category-pill {
    background: var(--white);
    border: 2px solid var(--gray);
    color: var(--text-dark);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.category-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.category-pill.active {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: var(--white);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-card-image {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 3rem;
    position: relative;
}

.blog-card-image .post-category {
    position: absolute;
    top: 15px;
    left: 15px;
}

.blog-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-card-body h3 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-card-body h3 a:hover {
    color: var(--gold);
}

.blog-card-body p {
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
}

.read-more.disabled {
    color: var(--gray-dark);
    cursor: not-allowed;
}

.placeholder-card {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .featured-post {
        grid-template-columns: 1fr;
    }
    .featured-post-content {
        padding: 30px;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .featured-post-content h2 {
        font-size: 1.4rem;
    }
}

/* ============================================
   BLOG ARTICLE PAGE
   ============================================ */
.article-page {
    background: var(--white);
}

.article-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 70%, var(--navy-light) 100%);
    color: var(--white);
    padding: 130px 0 60px;
}

.breadcrumbs {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.breadcrumbs a {
    color: var(--gold);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--gold-light);
}

.breadcrumbs span {
    color: var(--white);
}

.article-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    line-height: 1.2;
    color: var(--white);
    margin: 15px 0 25px;
    max-width: 850px;
    font-weight: 800;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.article-meta i {
    color: var(--gold);
    margin-right: 6px;
}

.article-body {
    padding: 60px 0 80px;
}

.article-container {
    max-width: 800px;
}

.article-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 35px;
    font-weight: 500;
    padding-left: 20px;
    border-left: 4px solid var(--gold);
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--navy-dark);
    margin: 40px 0 18px;
    font-weight: 800;
}

.article-body p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0 25px 25px;
    padding-left: 15px;
}

.article-body ul li,
.article-body ol li {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 12px;
    list-style: disc;
}

.article-body ol li {
    list-style: decimal;
}

.article-body strong {
    color: var(--navy-dark);
    font-weight: 600;
}

/* In-article CTA */
.article-cta {
    margin: 50px 0 40px;
    padding: 40px 35px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(201, 169, 78, 0.3);
}

.article-cta h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
}

/* Author Bio */
.article-author {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    margin-top: 50px;
    padding: 28px 30px;
    background: var(--gray-light);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    color: var(--gold);
    font-size: 1.8rem;
}

.author-info h4 {
    font-family: var(--font-heading);
    color: var(--navy-dark);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.author-info p {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.author-info a {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 1.7rem;
    }
    .article-body h2 {
        font-size: 1.3rem;
    }
    .article-lead {
        font-size: 1rem;
    }
    .article-cta {
        padding: 30px 22px;
    }
    .article-cta h3 {
        font-size: 1.3rem;
    }
    .article-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 22px 20px;
    }
}



/* ============================================
   HEADER FIX (overlap caused by translator)
   ============================================ */

/* Wrap translator + phone in a single actions container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* Tighter nav */
.header-container {
    gap: 18px;
    flex-wrap: nowrap;
    min-width: 0;
}

.nav {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.nav-list {
    gap: 22px;
}

.nav-link {
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Compact translator */
.translator-widget {
    margin-right: 0;
    padding: 5px 10px;
    gap: 4px;
    flex-shrink: 0;
}

.translator-btn {
    font-size: 0.78rem;
    padding: 1px 4px;
}

/* Phone button */
.header-phone {
    padding: 8px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-phone i {
    flex-shrink: 0;
}

/* Compact below 1280: phone shrinks to icon-only */
@media (max-width: 1280px) {
    .nav-list {
        gap: 18px;
    }
    .nav-link {
        font-size: 0.82rem;
    }
    .header-phone .phone-text {
        display: none;
    }
    .header-phone {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
}

/* Below 1100px: collapse nav + translator into mobile menu */
@media (max-width: 1100px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--navy-dark);
        padding: 80px 30px 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        flex: none;
        justify-content: flex-start;
        z-index: 999;
    }
    .nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }
    .nav-link {
        font-size: 1rem;
    }
    .nav.active::after {
        content: '';
        display: block;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.15);
    }
    .mobile-menu-btn {
        display: flex;
    }
    /* Keep translator + phone in header */
    .header-actions {
        margin-left: auto;
    }
}

@media (max-width: 600px) {
    .logo-tagline {
        display: none;
    }
    .logo-name {
        font-size: 1rem;
    }
    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    .header-actions {
        gap: 8px;
    }
    .translator-widget {
        padding: 4px 8px;
    }
    .translator-btn {
        font-size: 0.7rem;
    }
    .header-phone {
        width: 36px;
        height: 36px;
    }
    .header-phone i {
        font-size: 0.85rem;
    }
}

/* ============================================
   PREMIUM "LIVE 24/7" BADGE
   ============================================ */

.live-badge {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    min-width: 280px;
}

.live-badge:hover {
    border-color: #22c55e;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.22) 0%, rgba(34, 197, 94, 0.08) 100%);
    transform: translateY(-2px);
}

.live-badge-pulse {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-badge-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #22c55e;
    opacity: 0;
    animation: live-ring-expand 2.4s ease-out infinite;
}

.live-badge-ring:nth-child(2) {
    animation-delay: 1.2s;
}

.live-badge-core {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
    z-index: 2;
    animation: live-core-shake 2.4s ease-in-out infinite;
}

.live-badge-core i {
    color: white;
    font-size: 1.1rem;
}

@keyframes live-ring-expand {
    0% {
        transform: scale(0.8);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes live-core-shake {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50% { transform: rotate(-12deg); }
    20%, 40%, 60% { transform: rotate(12deg); }
    70% { transform: rotate(0); }
}

.live-badge-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.live-badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #22c55e;
    text-transform: uppercase;
}

.live-badge-blink {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: live-dot-blink 1s ease-in-out infinite;
}

@keyframes live-dot-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.85); }
}

.live-badge-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.live-badge-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* ============================================
   GOOGLE 5-STAR RATING CARD
   ============================================ */

.google-rating-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition);
    min-width: 280px;
}

.google-rating-card:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201, 169, 78, 0.12) 0%, rgba(201, 169, 78, 0.04) 100%);
    transform: translateY(-2px);
}

.google-rating-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.google-rating-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.google-rating-stars {
    display: flex;
    gap: 2px;
    color: #fbbc05;
    font-size: 0.95rem;
}

.google-rating-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.google-rating-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition);
}

.google-rating-card:hover .google-rating-link {
    gap: 10px;
}

.google-rating-link i {
    font-size: 0.7rem;
}

/* CTA stats responsive */
.cta-stats {
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .cta-stats {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 400px;
    }
    .live-badge,
    .google-rating-card {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .live-badge,
    .google-rating-card {
        padding: 14px 16px;
        gap: 14px;
    }
    .live-badge-pulse,
    .google-rating-icon {
        width: 48px;
        height: 48px;
    }
    .live-badge-core {
        width: 38px;
        height: 38px;
    }
    .live-badge-title {
        font-size: 1rem;
    }
}

/* Hide old live-247 styles since we replaced the markup */
.stat-item.live-247 { display: none; }

/* ============================================
   HOMEPAGE ATTORNEY SECTION
   ============================================ */

.home-attorney-section {
    padding: 90px 0;
    background: var(--white);
}

.home-attorney-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.home-attorney-image {
    position: relative;
}

.home-attorney-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 5 / 6;
    background: var(--gray-light);
}

.home-attorney-image-border {
    position: absolute;
    top: 25px;
    left: 25px;
    right: -25px;
    bottom: -25px;
    border: 3px solid var(--gold);
    border-radius: 12px;
    z-index: -1;
}

.home-attorney-content .section-title {
    font-size: 2.5rem;
    margin-top: 8px;
    margin-bottom: 4px;
}

.home-attorney-role {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.home-attorney-content p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 18px;
}

.home-attorney-creds {
    list-style: none;
    margin: 28px 0 32px;
    padding: 22px 26px;
    background: var(--gray-light);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
}

.home-attorney-creds li {
    font-size: 0.93rem;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-attorney-creds li i {
    color: var(--gold);
    font-size: 1rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.home-attorney-cta {
    background: var(--navy-dark);
    color: var(--white);
    border: 2px solid var(--navy-dark);
}

.home-attorney-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

@media (max-width: 1024px) {
    .home-attorney-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .home-attorney-image {
        max-width: 420px;
        margin: 0 auto;
    }
    .home-attorney-creds {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-attorney-section {
        padding: 60px 0;
    }
    .home-attorney-content .section-title {
        font-size: 1.9rem;
    }
    .home-attorney-image-border {
        top: 18px;
        left: 18px;
        right: -18px;
        bottom: -18px;
    }
}

/* ============================================
   TRUST SEALS SECTION
   ============================================ */

.trust-seals-section {
    padding: 60px 0;
    background: var(--gray-light);
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.trust-seals-header {
    text-align: center;
    margin-bottom: 35px;
}

.trust-seals-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--text-dark);
    margin-top: 8px;
    font-weight: 700;
}

.trust-seals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-seal {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.trust-seal:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.trust-seal-icon {
    width: 50px;
    height: 50px;
    background: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.trust-seal-icon i {
    color: var(--gold);
    font-size: 1.3rem;
}

.trust-seal:hover .trust-seal-icon {
    background: var(--gold);
}

.trust-seal:hover .trust-seal-icon i {
    color: var(--navy-dark);
}

.trust-seal-text {
    display: flex;
    flex-direction: column;
}

.trust-seal-text strong {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.trust-seal-text span {
    font-size: 0.78rem;
    color: var(--gray-dark);
    margin-top: 3px;
}

@media (max-width: 1024px) {
    .trust-seals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .trust-seals-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FOOTER REPORT BUGS STRIP
   ============================================ */

.footer-bugs {
    background: rgba(0, 0, 0, 0.25);
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bugs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-bugs-info {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bugs-info > i {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-bugs-info strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.footer-bugs-info span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-bugs-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-bugs-email:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.footer-bugs-email i {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-bugs-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-bugs-info {
        flex-direction: column;
        text-align: center;
    }
}
