/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-color: #EA580C;  /* Orange 600 */
    --primary-dark: #C2410C;   /* Orange 700 */
    --primary-light: #FB923C;  /* Orange 400 */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #767676;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --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.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-medium);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* ===================================
   Buttons
   =================================== */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 87, 51, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
}

.btn-primary.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

/* Compact the navbar CTA on medium screens to prevent wrapping */
@media (max-width: 1024px) {
  .navbar .btn-primary {
    padding: 0.6rem 1.1rem;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .navbar .btn-primary {
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 0.875rem 2rem;
    border: 2px solid var(--text-dark);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo svg {
    display: block;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-right: auto;
    margin-left: 3rem;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ===================================
   Hero Section - New Main Design
   =================================== */
.hero {
    margin-top: 80px;
    padding: 5rem 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-main-left {
    padding-right: 2rem;
}

.hero-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: block;
}

.hero-main-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1;
    color: var(--text-dark);
}

.hero-accent {
    color: var(--primary-color);
    display: block;
}

.hero-main-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 90%;
}

.btn-hero {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 87, 51, 0.3);
}

.btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 51, 0.4);
}

.hero-main-right {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(100%);
    box-shadow: var(--shadow-lg);
    transition: filter 0.5s ease, transform 0.3s ease;
}

.hero-main-right:hover .hero-main-image {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* ===================================
   Support Section (Previous Hero Content)
   =================================== */
.support-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.support-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    line-height: 0.9;
}

.support-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.support-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 120px);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.grid-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.grid-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.grid-2 {
    grid-column: 2;
    grid-row: 1 / 2;
}

.grid-3 {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

.grid-4 {
    grid-column: 3;
    grid-row: 3;
}

/* Image Styling */
.grid-img,
.testimonial-photo,
.team-photo,
.attorney-main,
.result-photo,
.cta-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    transition: var(--transition);
}

.grid-img {
    filter: grayscale(100%) contrast(1.1);
}

.grid-img:hover {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

.result-photo {
    filter: grayscale(80%);
}

.result-card:hover .result-photo {
    filter: grayscale(0%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: #fff;
    padding: 1.75rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.4;
}

/* ===================================
   Section Divider
   =================================== */
.section-divider {
    background: var(--text-dark);
    padding: 1rem 0;
    overflow: hidden;
}

.divider-text {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 2px;
    white-space: nowrap;
    display: inline-block;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===================================
   Practice Areas
   =================================== */
.practice-areas {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.practice-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.practice-icon {
    margin-bottom: 1.5rem;
}

.practice-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.practice-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.practice-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.practice-link:hover {
    gap: 0.75rem;
}

/* ===================================
   Practice Page (practice.html)
   =================================== */
.page-hero {
    margin-top: 90px;
    padding: 4rem 0 2.5rem;
    background: #fff;
}

.page-hero .container { position: relative; }

.page-tag {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    display: block;
    margin-bottom: 0.75rem;
}

.page-title {
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 900;
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.page-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 820px;
    margin: 0.25rem auto 1.5rem;
}

.chat-cta {
    position: absolute;
    right: 0;
    top: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 0.875rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

.chat-cta:hover { background: var(--primary-dark); }

.practice-cards { padding: 1rem 0 4rem; }

.pa-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 1.5rem;
}

.pa-card {
    display: block;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.75rem 1.5rem 1.25rem;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    min-height: 170px;
}

.pa-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pa-card p {
    color: #6b7280;
    font-size: 0.9375rem;
}

.pa-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.pa-card .arrow { transition: transform .2s ease; }

.pa-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.16);
    transform: translateY(-3px);
}

.pa-card:hover .arrow { transform: translateX(3px); }

.pa-card:focus-visible {
    outline: 3px solid rgba(234, 88, 12, 0.5);
    outline-offset: 2px;
}

@media (max-width: 1200px) {
  .pa-grid { grid-template-columns: repeat(2, minmax(260px, 1fr)); }
}

@media (max-width: 768px) {
  .pa-grid { grid-template-columns: 1fr; gap: 1rem; }
  .chat-cta { position: static; display: inline-flex; margin: 0.75rem auto 0; }
}

/* ===================================
   Resources Page
   =================================== */
.section-tag {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.resources-section {
    padding: 3rem 0 4rem;
    background: #fff;
}

.resources-head {
    text-align: center;
    margin-bottom: 2rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.resource-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.resource-media {
    position: relative;
    overflow: hidden;
}

.resource-media .resource-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transform: scale(1.0);
    transition: transform .35s ease, filter .35s ease;
}

.resource-card:hover .resource-image {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.resource-body {
    padding: 1rem 1rem 0.875rem;
}

.resource-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.resource-excerpt {
    color: #6b7280;
    font-size: 0.9375rem;
}

.resource-footer {
    padding: 0.75rem 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

/* Press & Articles tweaks */
.press-section .press-date {
    color: #6b7280;
    font-weight: 500;
}

.resource-link { color: var(--text-dark); }
.resource-arrow { transition: transform .2s ease; }
.resource-card:hover .resource-arrow { transform: translateX(3px); }

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

@media (max-width: 768px) {
  .resources-grid { grid-template-columns: 1fr; }
}

/* Testimonials grid for resources page */
.testimonials-grid {
    padding: 3rem 0 1rem;
}

.testimonials-grid .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonials-grid .testimonial-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

@media (max-width: 768px) {
  .testimonials-grid .grid { grid-template-columns: 1fr; }
}

/* ===================================
   Contact Page
   =================================== */
.contact-hero {
    margin-top: 90px;
    padding: 3.5rem 0 2rem;
    background: #fff;
    text-align: center;
}

.contact-hero .section-tag {
    color: var(--primary-color);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-hero h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.contact-hero p {
    color: #6b7280;
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto;
}

.pricing-section {
    padding: 3.5rem 0 3.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 1.25rem;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    border-color: #e5e7eb;
}

.pricing-card .card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.pricing-card .badge {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .02em;
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #F59E0B;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 12px 28px rgba(234, 88, 12, 0.15);
}

.pricing-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pricing-card .description {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.pricing-card .price {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-card .price .currency {
    font-size: 0.6em;
    vertical-align: super;
    margin-right: 2px;
}

.pricing-card ul {
    margin-bottom: 1.5rem;
}

.pricing-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.pricing-card ul li .icon-check,
.pricing-card ul li .icon-cross {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-card .icon-check circle { fill: var(--primary-color); }
.pricing-card .icon-check path { stroke: #fff; }
.pricing-card .icon-cross circle { fill: #f3f4f6; }
.pricing-card .icon-cross path { stroke: #9ca3af; }

.pricing-card ul li span {
    flex: 1;
    line-height: 1.5;
}

.pricing-card ul li.excluded span {
    color: #9ca3af;
}

.pricing-card .btn-book {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    letter-spacing: .02em;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pricing-card .btn-book:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.pricing-card.featured .btn-book { background: #1a1a1a; }
.pricing-card.featured .btn-book:hover { background: #000; }

.pricing-card .btn-book .arrow { transition: transform .2s ease; }
.pricing-card .btn-book:hover .arrow { transform: translateX(2px); }

.pricing-note {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.contact-info-section {
    padding: 2rem 0 3rem;
    background: #f9fafb;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 400;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.5;
}

.contact-value:hover {
    color: var(--primary-color);
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-image-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 14px;
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.contact-image-wrapper:hover img {
    filter: grayscale(0%);
}

.contact-form {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
    color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.contact-form .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.contact-form .checkbox-group label {
    font-weight: 400;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0;
}

.contact-form .btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-form .btn-submit:hover {
    background: var(--primary-dark);
}

@media (max-width: 1024px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
  }
  .contact-image-wrapper {
    height: 400px;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card .card-head { align-items: flex-start; }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .contact-image-wrapper {
    height: 350px;
  }
}

/* ===================================
   Stats Counter Section
   =================================== */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

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

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
}

/* ===================================
   FAQ Accordion Section
   =================================== */
.faq-section {
    padding: 5rem 0;
    background: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.125rem 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.15s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out, padding 0.15s ease-out;
    padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 1.25rem 1.125rem;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.65;
    font-size: 0.9375rem;
}

/* ===================================
   Mobile Sticky Contact Button
   =================================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.mobile-sticky-cta .btn-mobile {
    width: 100%;
    background: #fff;
    color: var(--primary-color);
    padding: 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-sticky-cta .btn-mobile:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
}

/* ===================================
   Testimonials
   =================================== */
.testimonials {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.testimonial-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 600px;
}

.testimonial-photo {
    height: 100%;
    border-radius: 8px;
    filter: grayscale(30%);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem 1.75rem;
    border-radius: 8px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 0.9375rem;
    color: var(--text-light);
}

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

/* ===================================
   Team Section
   =================================== */
.team-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 87, 51, 0.03);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.team-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.team-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.team-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.team-stat {
    text-align: left;
}

.stat-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.team-member {
    overflow: hidden;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    border: 3px solid white;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.team-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: grayscale(80%);
    transition: var(--transition);
    object-fit: cover;
}

.team-member:hover .team-photo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.attorney-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 400px;
    margin: 0 auto;
}

.attorney-photo {
    overflow: hidden;
    border-radius: 12px;
    width: 200px;
    height: 250px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.attorney-main {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    filter: grayscale(30%);
    object-fit: cover;
    transition: var(--transition);
}

.attorney-highlight:hover .attorney-main {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.attorney-info h3 {
    font-size: 0.6875rem;
    letter-spacing: 2.5px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.attorney-info h4 {
    font-size: 1.625rem;
    margin-bottom: 0.375rem;
    font-weight: 700;
    color: var(--text-dark);
}

.attorney-info p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.attorney-bio {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* ===================================
   Results Section
   =================================== */
.results-section {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.result-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

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

.result-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.result-photo {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
}

.result-content {
    padding: 2rem;
}

.result-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.result-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.result-tag {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 6rem 0;
    background: transparent;
}

.cta-wrapper {
    background: #0a0a0a;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 400px;
}

.cta-text {
    padding: 4rem 4rem 4rem 5rem;
    color: white;
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-cta {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 87, 51, 0.3);
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 51, 0.4);
}

.cta-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.cta-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.cta-wrapper:hover .cta-photo {
    filter: grayscale(0%);
}

/* ===================================
   Footer - Clean Redesign
   =================================== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Section */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-tagline {
    color: #999;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Links Grid */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-col {
    min-width: 0;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.625rem;
}

.footer-list li a {
    color: #999;
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-list li a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    color: #999;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
}

.footer-legal {
    color: #555;
    font-size: 0.8125rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (min-width: 1400px) {
    .cta-wrapper {
        max-width: 1400px;
        margin: 0 auto;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }

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

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

@media (max-width: 1024px) {
    .hero-main,
    .support-content,
    .team-content,
    .testimonial-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-main-left {
        padding-right: 0;
    }

    .hero-main-right {
        height: 500px;
    }

    .hero-main-description {
        max-width: 100%;
    }

    /* Image grid starts transitioning to 2x2 */
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 160px);
        gap: 0.875rem;
    }

    .grid-1,
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-column: auto;
        grid-row: auto;
    }

    .grid-item {
        border-radius: 10px;
    }

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

    .cta-content {
        grid-template-columns: 1fr;
    }

    .cta-text {
        padding: 3rem 2.5rem;
    }

    .cta-image {
        min-height: 350px;
    }

    .cta-wrapper {
        border-radius: 16px;
    }

    /* Footer responsive */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
    }

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

    .attorney-highlight {
        padding: 2rem 1.5rem;
        max-width: 500px;
    }

    .attorney-photo {
        width: 180px;
        height: 225px;
    }

    .team-member {
        width: 85px;
        height: 85px;
    }

    .team-grid {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Keep CTA visible but compact on small screens */
    .navbar .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        letter-spacing: 0.06em;
        border-radius: 6px;
        white-space: nowrap;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo svg {
        width: 100px;
        height: 34px;
    }

    /* Improve stats layout on mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
        text-align: center;
    }

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

    .stat-label {
        font-size: 0.8125rem;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 2rem 0 2.5rem;
    }

    .hero-main {
        gap: 2rem;
    }

    .hero-main-left {
        order: 1;
    }

    .hero-main-right {
        order: 2;
        height: 350px;
    }

    .hero-tagline {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-main-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .hero-main-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .btn-hero {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    /* Support Section Mobile */
    .support-section {
        padding: 2.5rem 0;
    }

    .support-content {
        gap: 2rem;
    }

    .support-left {
        order: 1;
    }

    .support-right {
        order: 2;
    }

    .support-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .support-heading {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .support-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 140px);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .grid-1,
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-column: auto;
        grid-row: auto;
    }

    .grid-item {
        border-radius: 12px;
    }

    /* Stats handled in 768px breakpoint */
    .stat-item {
        padding: 1.25rem 1rem;
    }

    .testimonial-image {
        height: 350px;
    }

    .practice-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .practice-card {
        padding: 1.25rem 1rem;
    }

    .practice-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }

    .practice-card p {
        font-size: 0.875rem;
        margin-bottom: 0.875rem;
        line-height: 1.55;
    }

    .practice-icon {
        margin-bottom: 0.875rem;
    }

    .practice-icon svg {
        width: 38px;
        height: 38px;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 2.5rem 0;
    }

    .faq-header {
        margin-bottom: 1.75rem;
    }

    .faq-list {
        max-width: 100%;
    }

    .faq-item {
        margin-bottom: 0.75rem;
    }

    .faq-question {
        padding: 1rem 1.125rem;
        font-size: 0.9375rem;
        gap: 0.75rem;
    }

    .faq-answer {
        padding: 0 1.125rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.125rem 1rem;
    }

    .faq-answer p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .faq-icon {
        font-size: 1.125rem;
    }

    .team-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.5rem 0;
        margin: 2rem 0;
    }

    .stat-large {
        font-size: 2.5rem;
    }

    .attorney-highlight {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer responsive */
    .footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-main {
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }

    .footer-heading {
        font-size: 0.9375rem;
        margin-bottom: 0.875rem;
    }

    .footer-list li {
        margin-bottom: 0.5rem;
    }

    .footer-list li a,
    .footer-contact li {
        font-size: 0.875rem;
    }

    .footer-tagline {
        font-size: 0.875rem;
    }

    .footer-social {
        gap: 0.625rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }

    .team-grid {
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .team-member {
        width: 75px;
        height: 75px;
        border-width: 2px;
    }

    .attorney-highlight {
        padding: 2rem 1.5rem;
    }

    .attorney-photo {
        width: 160px;
        height: 200px;
        margin-bottom: 1.25rem;
    }

    .attorney-info h3 {
        font-size: 0.625rem;
        letter-spacing: 2px;
    }

    .attorney-info h4 {
        font-size: 1.375rem;
    }

    .attorney-bio {
        font-size: 0.9375rem;
    }

    .cta-text {
        padding: 2.5rem 2rem;
    }

    .cta-text h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .cta-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-image {
        min-height: 300px;
    }

    .cta-wrapper {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .navbar {
        padding: 0.625rem 0;
    }

    /* Hero Section Small Mobile */
    .hero {
        padding: 2rem 0;
        margin-top: 65px;
    }

    .hero-main {
        gap: 1.5rem;
    }

    .hero-tagline {
        font-size: 0.6875rem;
        margin-bottom: 0.75rem;
        letter-spacing: 1.5px;
    }

    .hero-main-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }

    .hero-main-description {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    .hero-main-right {
        height: 280px;
    }

    .btn-hero {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    /* Support Section Small Mobile */
    .support-section {
        padding: 2rem 0;
    }

    .support-content {
        gap: 1.5rem;
    }

    .support-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .support-heading {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .support-description {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 120px);
        gap: 0.625rem;
    }

    .grid-item {
        border-radius: 10px;
    }

    .stats-grid {
        gap: 0.875rem;
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .stat-item {
        padding: 1.125rem 0.875rem;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .practice-areas {
        padding: 2rem 0;
    }

    .testimonials,
    .team-section,
    .results-section,
    .cta-section {
        padding: 2rem 0;
    }

    .practice-card {
        padding: 1.125rem 0.875rem;
    }

    .practice-card h3 {
        font-size: 1.0625rem;
        margin-bottom: 0.5rem;
    }

    .practice-card p {
        font-size: 0.8125rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    /* FAQ Small Mobile */
    .faq-section {
        padding: 2rem 0;
    }

    .faq-header {
        margin-bottom: 1.5rem;
    }

    .faq-item {
        margin-bottom: 0.625rem;
    }

    .faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 0.875rem;
    }

    .faq-answer p {
        font-size: 0.8125rem;
    }

    .testimonial-card {
        padding: 1.25rem 1rem;
    }

    .testimonial-image {
        height: 280px;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.625rem;
        margin-bottom: 0.625rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.75rem;
        line-height: 1.5;
    }

    .btn-primary.btn-large {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .stat-large {
        font-size: 2rem;
    }

    .attorney-highlight {
        padding: 1.25rem;
    }

    .attorney-info h3 {
        font-size: 0.6875rem;
    }

    .attorney-info h4 {
        font-size: 1.125rem;
    }

    .result-content h3 {
        font-size: 1.375rem;
    }

    .result-content p {
        font-size: 0.875rem;
    }

    .result-image {
        height: 200px;
    }

    .team-member {
        width: 65px;
        height: 65px;
        border-width: 2px;
    }

    .team-grid {
        gap: 0.875rem;
        margin-bottom: 1.5rem;
    }

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

    .team-description {
        font-size: 0.875rem;
    }

    .attorney-highlight {
        padding: 1.75rem 1.25rem;
    }

    .attorney-photo {
        width: 140px;
        height: 180px;
    }

    .attorney-info h4 {
        font-size: 1.25rem;
    }

    .attorney-bio {
        font-size: 0.875rem;
    }

    .stat-large {
        font-size: 2rem;
    }

    .cta-text {
        padding: 2rem 1.5rem;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .cta-text p {
        font-size: 0.9375rem;
    }

    .btn-cta {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .cta-image {
        min-height: 250px;
    }

    /* Footer - small mobile */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-main {
        gap: 2rem;
        padding-bottom: 1.75rem;
    }

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

    .footer-tagline {
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

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

    .footer-heading {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .footer-list li {
        margin-bottom: 0.4rem;
    }

    .footer-list li a,
    .footer-contact li {
        font-size: 0.8125rem;
    }

    .social-link {
        width: 30px;
        height: 30px;
    }

    .social-link svg {
        width: 14px;
        height: 14px;
    }

    .footer-bottom {
        padding-top: 1.25rem;
    }

    .footer-copyright {
        font-size: 0.8125rem;
        margin-bottom: 0.25rem;
    }

    .footer-legal {
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 375px) {
    .hero-main-title {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 0.625rem;
        letter-spacing: 1px;
    }

    .hero-main-description {
        font-size: 0.8125rem;
    }

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

    .support-heading {
        font-size: 1.125rem;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 100px);
        gap: 0.5rem;
    }

    .grid-item {
        border-radius: 8px;
    }

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

    .stat-item {
        padding: 1rem 0.75rem;
    }

    .practice-card {
        padding: 1rem 0.75rem;
    }

    .practice-card h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .practice-card p {
        font-size: 0.8125rem;
        line-height: 1.45;
        margin-bottom: 0.625rem;
    }

    .practice-icon {
        margin-bottom: 0.75rem;
    }

    .practice-icon svg {
        width: 36px;
        height: 36px;
    }

    /* FAQ Extra Small */
    .faq-section {
        padding: 1.75rem 0;
    }

    .faq-question {
        padding: 0.75rem 0.875rem;
        font-size: 0.8125rem;
    }

    .faq-answer p {
        font-size: 0.8125rem;
        line-height: 1.55;
    }

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

    .footer-logo svg {
        width: 100px;
        height: 34px;
    }

    .footer {
        padding: 1.75rem 0 1rem;
    }

    .footer-main {
        gap: 1.75rem;
        padding-bottom: 1.5rem;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .footer-heading {
        font-size: 0.8125rem;
    }

    .footer-list li a,
    .footer-contact li {
        font-size: 0.75rem;
    }

    .footer-tagline {
        font-size: 0.75rem;
    }

    .team-member {
        width: 58px;
        height: 58px;
        border-width: 2px;
    }

    .team-grid {
        gap: 0.75rem;
    }

    .attorney-highlight {
        padding: 1.5rem 1rem;
    }

    .attorney-photo {
        width: 130px;
        height: 170px;
    }

    .attorney-info h4 {
        font-size: 1.125rem;
    }

    .attorney-bio {
        font-size: 0.8125rem;
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}
