/* /Components/Cards/ServiceCard.razor.rz.scp.css */
body[b-fbkwtclohw] {
}

.service-card[b-fbkwtclohw] {
    display: flex;
    flex-direction: column;
    gap: var(--space-3, 0.75rem);
    padding: var(--space-4, 1.25rem);
    background-color: var(--color-card-bg);
    color: var(--color-card-text);
    border: 1px solid var(--color-card-border);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.service-card h3[b-fbkwtclohw] {
    margin: 0;
    color: var(--color-card-text);
    font-size: 1.125rem;
    font-weight: 700;
}

.service-card p[b-fbkwtclohw] {
    margin: 0;
    color: var(--color-card-text-muted, var(--color-text-secondary));
    line-height: 1.5;
}

.service-card ul[b-fbkwtclohw] {
    padding-left: 1.25rem;
    margin: 0;
    display: grid;
    gap: var(--space-2, 0.5rem);
    color: var(--color-card-text-muted, var(--color-text-secondary));
}

.service-card-icon[b-fbkwtclohw] {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.service-card-cta[b-fbkwtclohw] {
    margin-top: auto;
    align-self: center;
    padding: 0.75rem 1.25rem;
    background-color: var(--color-cta-bg);
    color: var(--color-cta-text);
    border: 1px solid transparent;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.service-card-cta:hover[b-fbkwtclohw] {
    background-color: var(--color-cta-bg-hover);
}

.service-card-cta:focus-visible[b-fbkwtclohw] {
    outline: 2px solid var(--color-cta-bg-hover);
    outline-offset: 2px;
}

.service-card-cta:active[b-fbkwtclohw] {
    transform: translateY(1px);
}
/* /Components/Hero/Hero.razor.rz.scp.css */
/* ============================================
   Hero Section - Brooklyn/NYC Professional Identity
   ============================================ */

.hero-section[b-xoza2uktbi] {
    position: sticky;
    top: 0;
    z-index: 0;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 100%;
    pointer-events: auto;
}

/* Background with cityscape image */
.hero-bg[b-xoza2uktbi] {
    background-image: url('/images/hero-brooklyn-skyline.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    position: relative;
}

/* Modern gradient overlay - brand colors with transparency */
.hero-bg[b-xoza2uktbi]::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Diagonal gradient: deep blue to transparent for skyline visibility */
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.92) 0%,      /* Deep brand blue - solid for text area */
        rgba(37, 99, 235, 0.75) 40%,      /* Primary blue - mid transition */
        rgba(59, 130, 246, 0.55) 70%,     /* Lighter blue - reveals skyline */
        rgba(30, 41, 59, 0.70) 100%       /* Dark slate - grounds the bottom */
    );
    z-index: 0;
}

/* Alternative: Horizontal gradient for left-aligned text */
.hero-bg.gradient-horizontal[b-xoza2uktbi]::before {
    background: linear-gradient(
        90deg,
        rgba(30, 58, 138, 0.95) 0%,
        rgba(37, 99, 235, 0.80) 35%,
        rgba(59, 130, 246, 0.50) 65%,
        rgba(30, 41, 59, 0.60) 100%
    );
}

/* Hero content container */
.hero-content[b-xoza2uktbi] {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Logo/Icon image in hero */
.hero-image[b-xoza2uktbi] {
    width: 140px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem;
    flex-shrink: 0;
}

/* Hero text block */
.hero-text[b-xoza2uktbi] {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-text h1[b-xoza2uktbi] {
    margin: 0 0 0.75rem 0;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-text p[b-xoza2uktbi] {
    margin: 0 0 1.5rem 0;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
    line-height: 1.5;
}

/* CTA Button - stands out against gradient */
.hero-cta[b-xoza2uktbi] {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
    text-decoration: none;
}

.hero-cta:hover[b-xoza2uktbi],
.hero-cta:focus[b-xoza2uktbi] {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    color: #1e40af;
}

/* ============================================
   Responsive Adjustments
   ============================================ */

@media (max-width: 768px) {
    .hero-section[b-xoza2uktbi] {
        min-height: 320px;
    }
    
    .hero-content[b-xoza2uktbi] {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-image[b-xoza2uktbi] {
        width: 100px;
        padding: 0.5rem;
    }
    
    .hero-text[b-xoza2uktbi] {
        max-width: 100%;
    }
    
    /* Adjust gradient for mobile - more coverage for readability */
    .hero-bg[b-xoza2uktbi]::before {
        background: linear-gradient(
            180deg,
            rgba(30, 58, 138, 0.90) 0%,
            rgba(37, 99, 235, 0.80) 50%,
            rgba(30, 41, 59, 0.85) 100%
        );
    }
}

@media (max-width: 480px) {
    .hero-section[b-xoza2uktbi] {
        min-height: 280px;
    }
    
    .hero-content[b-xoza2uktbi] {
        padding: 1.5rem 1rem;
    }
    
    .hero-cta[b-xoza2uktbi] {
        width: 100%;
        text-align: center;
    }
}
/* /Components/Layout/PageHeader.razor.rz.scp.css */
/* ===========================================
   Page Header Component Styles - LVBiggs.com
   =========================================== */

.page-header[b-yzs8frnedj] {
    flex: 1;
    min-width: 0;
    position: sticky;
    top: 0;
    z-index: 150;
    background-color: var(--color-primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: var(--space-3) var(--space-4);
}

/* Main content container */
.page-header-content[b-yzs8frnedj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
    min-width: 0;
}

/* Left section: icon + title/subtitle */
.page-header-title-group[b-yzs8frnedj] {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    min-width: 0;
    flex: 1;
}

.page-header-icon[b-yzs8frnedj] {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #fff;
}

.page-header-text[b-yzs8frnedj] {
    min-width: 0;
    flex: 1;
}

.page-header h1[b-yzs8frnedj] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
}

.page-header-subtitle[b-yzs8frnedj] {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.4;
}

/* Right section: actions + logo */
.page-header-right[b-yzs8frnedj] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

.page-header-actions[b-yzs8frnedj] {
    display: flex;
    gap: var(--space-2);
    align-items: center;
}

.page-header-logo[b-yzs8frnedj] {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.page-header-divider[b-yzs8frnedj] {
    margin: var(--space-3) 0 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===========================================
   Responsive Breakpoints
   =========================================== */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .page-header[b-yzs8frnedj] {
        padding: var(--space-2) var(--space-3);
        border-radius: 8px;
    }

    .page-header h1[b-yzs8frnedj] {
        font-size: 1.25rem;
    }

    .page-header-subtitle[b-yzs8frnedj] {
        font-size: 0.8125rem;
    }

    .page-header-logo[b-yzs8frnedj] {
        height: 36px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .page-header-content[b-yzs8frnedj] {
        gap: var(--space-2);
    }

    .page-header h1[b-yzs8frnedj] {
        font-size: 1.125rem;
    }

    .page-header-subtitle[b-yzs8frnedj] {
        font-size: 0.75rem;
    }

    .page-header-actions[b-yzs8frnedj] {
        gap: var(--space-1);
    }

    .page-header-logo[b-yzs8frnedj] {
        height: 32px;
    }

    .page-header-icon[b-yzs8frnedj] {
        font-size: 1.25rem;
    }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
    .page-header[b-yzs8frnedj] {
        padding: var(--space-2);
        border-radius: 6px;
    }

    .page-header h1[b-yzs8frnedj] {
        font-size: 1rem;
    }

    .page-header-subtitle[b-yzs8frnedj] {
        display: none;
    }

    .page-header-logo[b-yzs8frnedj] {
        height: 28px;
    }

    .page-header-icon[b-yzs8frnedj] {
        font-size: 1.125rem;
    }
}
/* /Pages/About/About.razor.rz.scp.css */
:host[b-dpp9u7tmz2] {
    display: block;
    color: #0f172a;
    background-color: #f8fafc;
    padding: 2.5rem 1.25rem;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.about-page[b-dpp9u7tmz2] {
    max-width: 960px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-header[b-dpp9u7tmz2] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.eyebrow[b-dpp9u7tmz2] {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f3b5d;
    font-weight: 700;
    margin: 0;
}

.page-title[b-dpp9u7tmz2] {
    margin: 0;
    font-size: 2.25rem;
    line-height: 1.2;
    color: #0f172a;
}

.lead[b-dpp9u7tmz2] {
    margin: 0.25rem 0 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1f2937;
}

.section-block[b-dpp9u7tmz2] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.section-block h2[b-dpp9u7tmz2] {
    margin: 0;
    font-size: 1.4rem;
    color: #0f3b5d;
}

.about-hero-image[b-dpp9u7tmz2] {
    width: 100%;
    max-width: 560px;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.section-block p[b-dpp9u7tmz2] {
    margin: 0;
    line-height: 1.65;
    color: #1f2937;
}

.section-block ul[b-dpp9u7tmz2] {
    margin: 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.35rem;
    color: #1f2937;
}

.section-block li[b-dpp9u7tmz2] {
    line-height: 1.55;
}

.principles[b-dpp9u7tmz2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    padding: 1.25rem;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.principle[b-dpp9u7tmz2] {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.principle h3[b-dpp9u7tmz2] {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    color: #0f3b5d;
}

.principle p[b-dpp9u7tmz2] {
    margin: 0;
    line-height: 1.55;
}

.card[b-dpp9u7tmz2] {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    background-color: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.card h3[b-dpp9u7tmz2] {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    color: #0f3b5d;
}

.callout[b-dpp9u7tmz2] {
    border-left: 4px solid #0f3b5d;
    padding: 1rem 1.25rem;
    background-color: #f1f5f9;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.callout h2[b-dpp9u7tmz2] {
    margin: 0 0 0.35rem;
}

.callout p[b-dpp9u7tmz2] {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 640px) {
    :host[b-dpp9u7tmz2] {
        padding: 1.75rem 1rem;
    }

    .about-page[b-dpp9u7tmz2] {
        padding: 1.75rem 1.25rem;
    }

    .page-title[b-dpp9u7tmz2] {
        font-size: 2rem;
    }
}
/* /Pages/Contact/Contact.razor.rz.scp.css */
body[b-ni6e5qfujv] {
}
/* /Pages/Home.razor.rz.scp.css */
/*divider under hero image*/
.divider[b-f4hlyknktu] {
    height: 0.125rem;
    background-color: var(--divider-color);
    margin: var(--space-3) 0;
}

section[b-f4hlyknktu] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    display: grid;
    gap: var(--space-2);
}

section h1[b-f4hlyknktu] {
    font-size: clamp(2rem, 3vw + 1rem, 2.75rem);
    margin: 0;
    line-height: 1.15;
}

section h2[b-f4hlyknktu] {
    font-size: clamp(1.6rem, 2.2vw + 0.4rem, 2.2rem);
    margin: 0;
    line-height: 1.2;
}

section p[b-f4hlyknktu],
section ul[b-f4hlyknktu] {
    font-size: clamp(1rem, 1.4vw + 0.25rem, 1.1rem);
    line-height: 1.65;
    margin: 0;
}

section ul[b-f4hlyknktu] {
    padding-left: 1.25rem;
    display: grid;
    gap: var(--space-2);
}

.service-cards[b-f4hlyknktu] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-4);
    align-items: stretch;
    margin-top: var(--space-4);
}

.service-cards > *[b-f4hlyknktu] {
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    section[b-f4hlyknktu] {
        padding: 0 var(--space-3);
        gap: var(--space-2);
    }

    .service-cards[b-f4hlyknktu] {
        gap: var(--space-3);
    }
}

@media (max-width: 768px) {
    section[b-f4hlyknktu] {
        padding: 0 var(--space-2);
    }

    .hero-text .hero-text-2[b-f4hlyknktu] {
        font-size: clamp(1.3rem, 4vw + 0.5rem, 2.3rem);
    }

    .service-cards[b-f4hlyknktu] {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: var(--space-3);
    }
}

@media (max-width: 480px) {
    .hero-image-container[b-f4hlyknktu] {
        flex-direction: column;
    }

    .hero-text .hero-text-2[b-f4hlyknktu] {
        font-size: clamp(1.1rem, 5vw + 0.35rem, 2.1rem);
    }

    section[b-f4hlyknktu] {
        padding: 0 var(--space-2);
        gap: var(--space-2);
    }

    .service-cards[b-f4hlyknktu] {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }
}
/* /Pages/Notary/Notary.razor.rz.scp.css */
body[b-ayulq77797] {
}

.notary-page[b-ayulq77797] {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2rem 1.25rem 3rem;
  color: #0f172a;
}

.hero[b-ayulq77797] {
  background: linear-gradient(135deg, #0f172a, #1e293b 45%, #111827 100%);
  color: #e5e7eb;
  border-radius: 16px;
  padding: 2.75rem 2.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.hero h1[b-ayulq77797] {
  margin: 0.35rem 0 0.75rem;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.hero .lead[b-ayulq77797] {
  max-width: 760px;
  margin-bottom: 1.5rem;
  color: #e5e7eb;
  opacity: 0.9;
}

.eyebrow[b-ayulq77797] {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.8rem;
  color: #38bdf8;
  margin: 0;
}

.cta-group[b-ayulq77797] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 0.25rem 0 1.5rem;
}

.cta[b-ayulq77797] {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.cta.primary[b-ayulq77797] {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #0b1120;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.35);
}

.cta.ghost[b-ayulq77797] {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(229, 231, 235, 0.3);
}

.cta:hover[b-ayulq77797] {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.hero-stats[b-ayulq77797] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stat-number[b-ayulq77797] {
  font-weight: 800;
  color: #38bdf8;
  font-size: 1.05rem;
}

.stat-label[b-ayulq77797] {
  color: #cbd5e1;
  opacity: 0.9;
}

.service-grid[b-ayulq77797] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.service-card[b-ayulq77797] {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.4rem;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.service-card h3[b-ayulq77797] {
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.service-card ul[b-ayulq77797] {
  padding-left: 1.15rem;
  margin: 0 0 1rem;
}

.tag[b-ayulq77797] {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  background: #e0f2fe;
  color: #0c4a6e;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.link-btn[b-ayulq77797] {
  border: none;
  background: none;
  color: #0ea5e9;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.info-panels[b-ayulq77797] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.panel[b-ayulq77797] {
  padding: 1.25rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.panel h4[b-ayulq77797] {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.panel ul[b-ayulq77797],
.panel ol[b-ayulq77797] {
  margin: 0;
  padding-left: 1.2rem;
}

.cta-banner[b-ayulq77797] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  color: #0b1120;
  box-shadow: 0 18px 38px rgba(14, 165, 233, 0.28);
}

.cta-banner h2[b-ayulq77797] {
  margin: 0.25rem 0 0.4rem;
}

.cta-banner .lead[b-ayulq77797] {
  margin: 0;
  color: #0b1120;
}

@media (max-width: 640px) {
  .hero[b-ayulq77797],
  .service-card[b-ayulq77797],
  .panel[b-ayulq77797],
  .cta-banner[b-ayulq77797] {
    padding: 1.25rem;
  }

  .hero h1[b-ayulq77797] {
    font-size: 1.6rem;
  }
}

.service-card.muted[b-ayulq77797] {
  opacity: 0.6;
  filter: grayscale(0.1);
  cursor: not-allowed;
}

.link-btn.disabled[b-ayulq77797] {
  color: #94a3b8;
  cursor: pointer;
  text-decoration: none;
}

.link-btn.disabled:hover[b-ayulq77797] {
  color: #94a3b8;
}

.modal-backdrop[b-ayulq77797] {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
}

.modal[b-ayulq77797] {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.5rem;
    max-width: 420px;
    /*width: 100%;*/
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    color: #0f172a;
    position: static; /* or relative */
    width: auto;
    height: auto;
    display: block; /* when shown */
    z-index: 2000;
}

.modal h3[b-ayulq77797] {
  margin: 0 0 0.5rem;
}

.modal p[b-ayulq77797] {
  margin: 0 0 1rem;
  color: #334155;
}

.modal-actions[b-ayulq77797] {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
/* /Pages/Paralegal/Paralegal.razor.rz.scp.css */
.paralegal-page[b-hrjp87240y] {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2rem 1.25rem 3rem;
  color: #0f172a;
}

.hero[b-hrjp87240y] {
  background: linear-gradient(135deg, #0f172a, #1e293b 45%, #111827 100%);
  color: #e5e7eb;
  border-radius: 16px;
  padding: 2.75rem 2.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.hero h1[b-hrjp87240y] {
  margin: 0.35rem 0 0.75rem;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.hero .lead[b-hrjp87240y] {
  max-width: 820px;
  margin-bottom: 1.5rem;
  color: #e5e7eb;
  opacity: 0.9;
}

.eyebrow[b-hrjp87240y] {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.8rem;
  color: #38bdf8;
  margin: 0;
}

.cta-group[b-hrjp87240y] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 0.25rem 0 1.5rem;
}

.cta[b-hrjp87240y] {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.cta.primary[b-hrjp87240y] {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #0b1120;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.35);
}

.cta.ghost[b-hrjp87240y] {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(229, 231, 235, 0.3);
}

.cta:hover[b-hrjp87240y] {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.hero-stats[b-hrjp87240y] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stat-number[b-hrjp87240y] {
  font-weight: 800;
  color: #38bdf8;
  font-size: 1.05rem;
}

.stat-label[b-hrjp87240y] {
  color: #cbd5e1;
  opacity: 0.9;
}

.service-grid[b-hrjp87240y] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.service-card[b-hrjp87240y] {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.4rem;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.service-card h3[b-hrjp87240y] {
  margin-top: 0.4rem;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.service-card .sub[b-hrjp87240y] {
  margin: 0 0 0.85rem;
  color: #475569;
}

.service-card ul[b-hrjp87240y] {
  padding-left: 1.15rem;
  margin: 0 0 1rem;
}

.service-card.attorney[b-hrjp87240y] {
  border-top: 4px solid #0ea5e9;
}

.service-card.individuals[b-hrjp87240y] {
  border-top: 4px solid #22d3ee;
}

.tag[b-hrjp87240y] {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  background: #e0f2fe;
  color: #0c4a6e;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.link-btn[b-hrjp87240y] {
  border: none;
  background: none;
  color: #0ea5e9;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.info-panels[b-hrjp87240y] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.panel[b-hrjp87240y] {
  padding: 1.25rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.panel h4[b-hrjp87240y] {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.panel ul[b-hrjp87240y],
.panel ol[b-hrjp87240y] {
  margin: 0;
  padding-left: 1.2rem;
}

.cta-banner[b-hrjp87240y] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  color: #0b1120;
  box-shadow: 0 18px 38px rgba(14, 165, 233, 0.28);
}

.cta-banner h2[b-hrjp87240y] {
  margin: 0.25rem 0 0.4rem;
}

.cta-banner .lead[b-hrjp87240y] {
  margin: 0;
  color: #0b1120;
}

@media (max-width: 640px) {
  .hero[b-hrjp87240y],
  .service-card[b-hrjp87240y],
  .panel[b-hrjp87240y],
  .cta-banner[b-hrjp87240y] {
    padding: 1.25rem;
  }

  .hero h1[b-hrjp87240y] {
    font-size: 1.6rem;
  }
}
/* /Pages/Paralegal/ParalegalAttorneys.razor.rz.scp.css */
/* ParalegalAttorneys color scheme - Sky Blue theme */
:root[b-cki6eujgxy] {
  --accent-color: #38bdf8;
  --cta-gradient: linear-gradient(135deg, #38bdf8, #0ea5e9);
  --cta-shadow: 0 12px 30px rgba(56, 189, 248, 0.35);
  --tag-bg: #e0f2fe;
  --tag-color: #0c4a6e;
  --link-color: #0ea5e9;
  --banner-gradient: linear-gradient(135deg, #0ea5e9, #22d3ee);
  --banner-shadow: 0 18px 38px rgba(14, 165, 233, 0.28);
}
/* /Pages/Paralegal/ParalegalIndividuals.razor.rz.scp.css */
/* ParalegalIndividuals color scheme - Cyan theme */
:root[b-i2nktn38x8] {
  --accent-color: #22d3ee;
  --cta-gradient: linear-gradient(135deg, #22d3ee, #06b6d4);
  --cta-shadow: 0 12px 30px rgba(34, 211, 238, 0.35);
  --tag-bg: #ecfeff;
  --tag-color: #0e7490;
  --link-color: #06b6d4;
  --banner-gradient: linear-gradient(135deg, #22d3ee, #06b6d4);
  --banner-shadow: 0 18px 38px rgba(34, 211, 238, 0.28);
}
/* /Shared/Footer.razor.rz.scp.css */
.footer[b-wohib7tucs] {
    width: 100%;
    position: static;
    z-index: 1;

    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.25rem 1.25rem;
    box-sizing: border-box;

    background-color: var(--surface, #f9fafb);
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.06);
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-gray, #334155);
}

/* Optional: slightly tighten vertical spacing on wider screens */
@media (min-width: 576px) {
    .footer[b-wohib7tucs] {
        padding: 1.1rem 1.5rem 1.3rem;
    }
}

/* Responsive text sizing for very small screens */
@media (max-width: 480px) {
    .footer[b-wohib7tucs] {
        font-size: 0.82rem;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-pg7c79u6yo] {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 100vh;
    background: var(--page-bg, #f7f8fa);
    color: inherit;
}

.sidebar[b-pg7c79u6yo] {
    width: clamp(240px, 18vw, 280px);
    height: 100vh;
    flex-shrink: 0;
    align-self: flex-start;
    position: sticky;
    top: 0;
    background-image: var(--gradient-primary);
    color: var(--text-on-primary, #ffffff);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: transform 0.25s ease-in-out;
    z-index: 5;
}

.sidebar-inner[b-pg7c79u6yo] {
    padding: 1.5rem 1.25rem 2.5rem;
    overflow: visible;
    backdrop-filter: saturate(140%) blur(4px);
}

.main-content[b-pg7c79u6yo] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
}

.layout-shell[b-pg7c79u6yo] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.75rem;
    min-width: 0;
}

.content-shell[b-pg7c79u6yo] {
    position: relative;
    z-index: 5;
    background: var(--surface, #ffffff);
    border: 1px solid var(--border-muted, #e5e7eb);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.top-rail[b-pg7c79u6yo] {
    position: sticky;
    top: 0;
    z-index: 20;
    padding-bottom: 0.5rem;
    background: color-mix(in srgb, var(--surface, #ffffff) 88%, transparent);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-shell[b-pg7c79u6yo] {
    margin-top: auto;
    padding-bottom: 1rem;
    color: var(--text-muted, #6b7280);
}

/* Sidebar toggle button - MUST be hidden on desktop/tablet when sidebar is visible */
.sidebar-toggle[b-pg7c79u6yo] {
    display: none !important;
    margin-right: 0.25rem;
    padding: 0.45rem 0.6rem;
    font-size: 1.15rem;
    line-height: 1;
    background: transparent;
    border: 1px solid var(--border-muted, #ccc);
    border-radius: 0.5rem;
    color: inherit;
    cursor: pointer;
}

.sidebar-toggle:hover[b-pg7c79u6yo] {
    background: rgba(0, 0, 0, 0.05);
}

/* Backdrop overlay - hidden by default */
.sidebar-backdrop[b-pg7c79u6yo] {
    display: none;
}

/* Mobile breakpoint - off-canvas sidebar, toggle IS needed */
@media (max-width: 992px) {
    .page[b-pg7c79u6yo] {
        flex-direction: column;
        overflow-x: hidden;
    }

    .sidebar[b-pg7c79u6yo] {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 270px;
        max-width: 80%;
        height: 100vh;
        transform: translateX(-100%);
        box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.25);
        z-index: 1045;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: none;
    }

    .sidebar.sidebar--open[b-pg7c79u6yo] {
        transform: translateX(0);
    }

    .sidebar-inner[b-pg7c79u6yo] {
        height: 100%;
        overflow-y: auto;
    }

    /* Show backdrop when sidebar is open */
    .sidebar-backdrop[b-pg7c79u6yo] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease-in-out;
        z-index: 1040;
    }

    .sidebar-backdrop.sidebar-backdrop--show[b-pg7c79u6yo] {
        opacity: 1;
        pointer-events: auto;
    }

    /* ONLY show hamburger toggle button on mobile and tablet (992px and below) */
    .sidebar-toggle[b-pg7c79u6yo] {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .main-content[b-pg7c79u6yo] {
        padding: 0.75rem 0.75rem 1.25rem;
        min-height: 100vh;
    }

    .top-rail[b-pg7c79u6yo] {
        position: sticky;
        top: 0;
        z-index: 1031;
        padding: 0.75rem 1rem;
    }

    .layout-shell[b-pg7c79u6yo] {
        padding: 0.75rem 1rem;
    }
}

main h1[b-pg7c79u6yo],
main h2[b-pg7c79u6yo],
main h3[b-pg7c79u6yo],
main h4[b-pg7c79u6yo] {
    scroll-margin-top: 5rem;
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-cjablpqmkf] {
    background-color: var(--color-primary);
}

.top-row[b-cjablpqmkf] {
    height: 3.5rem;
    background-color: var(--gradient-primary-soft);
    border-bottom: 1px solid var(--color-border-strong);
    position: sticky;
    top: 0;
    z-index: 2;
}

.nav-scrollable[b-cjablpqmkf],
.nav-scrollable nav[b-cjablpqmkf] {
    width: 100%;
}

/* Default: let nav grow naturally when sidebar is docked */
.nav-scrollable[b-cjablpqmkf] {
    height: auto;
    max-height: none;
    overflow-y: visible;
}

.navbar-brand[b-cjablpqmkf] {
    font-size: 1.1rem;
    color: var(--color-text);
}

.bi[b-cjablpqmkf] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-cjablpqmkf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='var(--color-primary-dark)' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-cjablpqmkf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='var(--color-primary-dark)' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-cjablpqmkf] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='var(--color-primary-dark)' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-cjablpqmkf] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-cjablpqmkf] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-cjablpqmkf] {
        padding-bottom: 1rem;
    }

    .nav-item[b-cjablpqmkf]  a {
        color: var(--text-on-primary, #f8fafc);
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
        outline-offset: 2px;
    }

.nav-item[b-cjablpqmkf]  a.active {
    background-color: rgba(255, 255, 255, 0.22);
    color: var(--text-on-primary, #f8fafc);
}

.nav-item[b-cjablpqmkf]  a:hover {
    background-color: rgba(255, 255, 255, 0.14);
    color: var(--text-on-primary, #f8fafc);
    outline: none;
}

.nav-link-button[b-cjablpqmkf] {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-text);
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    text-align: left;
}

.nav-link-button:hover[b-cjablpqmkf],
.nav-link-button:focus-visible[b-cjablpqmkf] {
    background-color: var(--color-surface);
    color: var(--color-primary-light);
    outline: none;
}

.dropdown-caret[b-cjablpqmkf] {
    margin-left: auto;
    font-size: 0.75rem;
    opacity: 0.8;
}

@media (min-width: 641px) {
    .navbar-toggler[b-cjablpqmkf] {
        display: none;
    }

    .collapse[b-cjablpqmkf] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}

/* When fixed off-canvas (mobile), keep scrollable height */
@media (max-width: 768px) {
    .nav-scrollable[b-cjablpqmkf] {
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/* On wide desktops, enable scroll for tall menus while sidebar is docked */
@media (min-width: 993px) {
    .nav-scrollable[b-cjablpqmkf] {
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
