@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Noto+Serif+Toto:ital,wght@0,400;0,500;0,600;0,700;1,400;1,700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@700&display=swap');

/* 
===============================================
  LawHub - Foundational Styles
  Phase 1: Global Setup & Navbar
===============================================
*/

:root {
    /* Color Palette */
    --clr-bg-dark: #111111; /* Brand Dark background */
    --clr-bg-darker: #0f0f0f;
    --clr-bg-secondary: #161515;
    --clr-accent: #C8783A; /* Brand accent orange (#C8783A) */
    --clr-text-white: #ffffff;
    --clr-text-light: #ffffff;
    --clr-text-muted: #aaaaaa;
    --clr-text-gray: #888888;
    --clr-border: #2a2a2a; /* Divider color (#2a2a2a) */
    --clr-black: #000000;
    --clr-overlay: rgba(0, 0, 0, 0.6);
    --clr-transparent: transparent;
    
    /* Typography */
    --font-heading: 'Manrope', sans-serif;
    --font-serif: 'Noto Serif Toto', serif;
    --font-body: 'Manrope', sans-serif;
    --font-pill: 'Noto Serif Toto', serif;
    --font-clash: 'Clash Display', sans-serif;
    --font-inter: 'Inter', sans-serif;

    /* Layout & Spacing */
    --max-width: 1200px;
    --nav-height-desktop: 64px; /* Exact height for LawHub navbar */
    --nav-height-mobile: 64px;
    --section-padding: 32px; /* Compact high-density padding */
    
    /* Effects */
    --radius-sm: 8px;
    --radius-md: 18px;
    --radius-full: 999px; /* Modern full pills */
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); /* Sleeker spring ease */
}

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

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

body {
    background-color: var(--clr-bg-dark);
    color: #adadad;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.5px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.5px;
    color: #adadad;
}

@media (max-width: 1199px) {
    body, p {
        font-size: 16px;
    }
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

img, svg {
    max-width: 100%;
    display: block;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-text-light);
    font-weight: 700;
    line-height: 1.2;
}

.text-accent {
    color: var(--clr-accent);
}

/* 
===============================================
  Navbar Styles
===============================================
*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px; /* Centered in 64px navbar */
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 0 16px;
    border: 1px solid #2a2a2a;
    height: 48px; /* Compact bar height */
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-logo-icon {
    width: 18px;
    height: 18px;
    fill: var(--clr-text-light);
}

.nav-logo-text {
    font-family: var(--font-body); /* Logo text ~16px */
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Desktop Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px; /* Tight, premium spacing */
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px; /* Nav links ~14px */
    color: #cccccc; /* Color #ccc */
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0px;
}

.nav-link:hover, 
.nav-link.active {
    color: #C8783A; /* Active or "Home" in orange */
}

.nav-link-icon {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* Call CTA in Nav */
/* Call CTA in Nav */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    height: auto;
}

.nav-cta-icon-wrapper {
    background-color: #C8783A;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-cta-icon {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.nav-cta-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.nav-cta-label {
    font-family: var(--font-body);
    font-size: 11px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.nav-cta-number {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clr-text-light);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 991px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .nav-inner {
        position: relative;
    }
    
    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 56px; /* Positioned directly below the compact nav-inner */
        left: 0;
        right: 0;
        background-color: rgba(17, 17, 17, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid #2a2a2a;
        border-radius: 12px;
        padding: 20px;
        gap: 16px;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        animation: navSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    .nav-links.active li {
        width: 100%;
        display: block;
    }
    
    .nav-links.active .nav-link {
        font-size: 16px;
        padding: 8px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        display: flex;
        justify-content: space-between;
    }
    
    .nav-links.active li:last-child .nav-link {
        border-bottom: none;
    }
    
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background-color: rgba(255,255,255,0.05);
    }
}

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .nav-logo-text {
        font-size: 11px !important;
    }
    .nav-logo-img {
        height: 24px !important;
    }
    .mobile-toggle {
        width: 32px;
        height: 32px;
    }
}

/* 
===============================================
  Shared Components
===============================================
*/
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 999px;
    backdrop-filter: blur(5px);
    margin-bottom: 24px;
}

.tag-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #C8783A;
}

.tag-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #cccccc;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: var(--clr-accent);
    color: #111111;
    padding: 14px 14px 14px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600; /* Inter SemiBold */
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #e5b484;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: transparent;
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500; /* Inter Medium */
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: rgba(212, 163, 115, 0.08);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-icon {
    width: 36px;
    height: 36px;
    background-color: var(--clr-bg-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--clr-text-white);
}

.section-intro.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -1.2px;
    color: #ffffff;
}

@media (max-width: 1199px) {
    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 699px) {
    .section-title {
        font-size: 24px;
        letter-spacing: -0.8px;
    }
}

.section-title .text-light {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    display: inline;
}

.section-title .text-muted-body,
.section-title .text-muted {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #777777;
    display: inline;
}
}

/* 
===============================================
  01. Hero Section
===============================================
*/
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.88) 35%, rgba(8,8,8,0.45) 58%, rgba(8,8,8,0.05) 75%, transparent 100%);
    z-index: 1;
}

.hero-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    padding-top: 80px;
    padding-bottom: 120px;
    padding-left: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #ccc;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}

.hero-badge .dot {
    color: #C8783A;
    font-size: 8px;
}

.hero-title {
    font-family: var(--font-clash);
    font-size: clamp(42px, 4.5vw, 58px);
    line-height: 1.08;
    margin-bottom: 16px;
    font-weight: 700;
    color: #ffffff;
    max-width: 540px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.65;
    color: #999999;
    max-width: 400px;
    margin-top: 18px;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.hero-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: fit-content;
    background-color: #C8783A;
    color: #ffffff;
    padding: 14px 18px 14px 28px;
    border-radius: 999px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1;
}

.hero-actions .btn-primary:hover {
    background-color: #d8894b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 120, 58, 0.3);
}

.hero-actions .btn-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(0,0,0,0.35);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.hero-actions .btn-icon svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
}

/* Featured Ticker sits at the bottom */
.hero-featured {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 80px;
    z-index: 3;
}

.featured-label {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.featured-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #C8783A;
}

.featured-label h5 {
    color: #ffffff;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
}

.ticker-wrapper {
    flex-grow: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
    display: flex;
    gap: 32px;
    animation: scrollTicker 30s linear infinite;
    width: max-content;
    align-items: center;
}

.ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.ticker-item:hover {
    opacity: 0.8;
    filter: none;
}

.ticker-item svg {
    height: 38px;
    width: auto;
    color: #ffffff;
    transition: color 0.3s ease;
}

.ticker-item svg path {
    fill: currentColor !important;
}

.ticker-item:hover svg {
    color: #ffffff;
}

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 16px)); }
}

/* Helpers & Mobile Adjustments */
.desktop-only {
    display: inline;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .hero-featured {
        position: relative;
        padding: 20px 20px;
        margin-top: 40px;
    }
}

/* 
===============================================
  02. Services Section
===============================================
*/
.services-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.service-category {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 40px;
}

.category-header {
    display: flex;
    flex-direction: column;
}

.category-title {
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: -1.2px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--clr-accent);
}

@media (max-width: 1199px) {
    .category-title {
        font-size: 26px;
    }
}

@media (max-width: 699px) {
    .category-title {
        font-size: 24px;
        letter-spacing: -0.8px;
    }
}

.category-desc {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    color: #aaaaaa;
    margin-bottom: 24px;
    max-width: 350px;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: var(--transition);
}

.arrow-up-right {
    width: 14px;
    height: 14px;
    fill: #ffffff;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-text:hover {
    color: var(--clr-accent);
}

.btn-text:hover .arrow-up-right {
    transform: translate(3px, -3px);
    fill: var(--clr-accent);
}

.category-items {
    display: flex;
    flex-direction: column;
}

.service-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 12px;
    border-bottom: 1px solid #222222;
    border-left: 2px solid transparent;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 4px;
}

.service-card:first-child {
    border-top: 1px solid #222222;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.3px;
    color: #ffffff;
    transition: color 0.3s ease;
}

@media (max-width: 1199px) {
    .service-name {
        font-size: 16px;
    }
}

.service-arrow {
    width: 16px;
    height: 16px;
    fill: #ffffff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), fill 0.3s ease;
}

.service-card:hover {
    z-index: 20;
    background-color: rgba(200, 120, 58, 0.05);
    border-left-color: var(--clr-accent);
    padding-left: 20px;
}

.service-card:hover .service-name {
    color: var(--clr-accent);
}

.service-card:hover .service-arrow {
    transform: rotate(45deg) translate(2px, -2px);
    fill: var(--clr-accent);
}

/* Static Service Image Preview Card */
.service-hover-card {
    position: absolute;
    top: 50%;
    right: 4%; /* Float beautifully at the end of the row on the right */
    width: 280px;
    height: 190px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #161515;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 12px 30px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    /* Start state: translated left (closer to name), scaled down, tilted -12deg */
    transform: translate3d(-30px, -50%, 0) scale(0.7) rotate(-12deg);
    transform-origin: center center;
    will-change: transform, opacity;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-hover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover state: Fades in, zooms up (scales to 1), slides right (translate(0)), and rests at a premium tilt angle */
.service-card:hover .service-hover-card {
    opacity: 1;
    transform: translate3d(0, -50%, 0) scale(1) rotate(-8deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(200, 120, 58, 0.25);
}

.service-card:hover .service-hover-card img {
    transform: scale(1.08);
}

/* Hide on touch devices and small viewports */
@media (max-width: 991px) {
    .service-hover-card {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .service-category {
        grid-template-columns: 1fr 1.6fr;
        gap: 16px;
    }
    .category-header {
        max-width: 100%;
    }
    .category-title {
        font-size: 15px !important;
        line-height: 1.2 !important;
        margin-bottom: 6px;
    }
    .category-desc {
        font-size: 11px !important;
        line-height: 1.4 !important;
        max-width: 100%;
    }
    .category-items {
        width: 100%;
        max-width: 220px; /* Bring the arrows closer by narrowing the items column */
        margin-left: auto;
    }
    .service-name {
        font-size: 12px !important;
    }
    .service-arrow {
        width: 12px;
        height: 12px;
    }
}

/* 
===============================================
  03. Team Section
===============================================
*/
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.team-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background-color: rgba(255, 255, 255, 0.05);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.3px;
    color: #F5F1EB;
}

.team-role {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: -0.6px;
    color: var(--clr-accent);
    text-transform: uppercase;
}

/* 
===============================================
  04. Our Process Section
===============================================
*/
.process {
    padding: var(--section-padding) 0; 
}

.process .section-intro {
    margin-bottom: 48px; 
}

.process .tag-badge {
    background-color: #1a1a1a;
    border: 1px solid #333333;
}

.process .tag-text {
    font-size: 11px;
    color: #888888;
    letter-spacing: 1px;
}

.process .section-title {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -1px;
}

.process .section-title .text-muted {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #777777;
}

.process-steps {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 32px;
    width: 100%;
    align-items: flex-start;
    position: relative;
    padding-bottom: 40px; /* Reduced gap to approx 40px */
}

.process-step:last-child {
    padding-bottom: 0;
}

/* Vertical connected line */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 31px; /* Exact center of 64px icon (32px - 1px for line width) */
    top: 64px; /* Exact bottom of the 64px icon */
    bottom: 0;
    width: 2px; /* 2px thick */
    background-color: #444444; /* Dark grey */
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #c8956c; /* Orange */
    position: relative;
    z-index: 2;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 10px; /* Adjust alignment to center visually with 64px icon */
}

.step-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin: 0;
}

@media (max-width: 1199px) {
    .step-title {
        font-size: 18px;
    }
}

@media (max-width: 699px) {
    .step-title {
        font-size: 18px;
        letter-spacing: 0px;
    }
}

.step-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: #aaaaaa;
    margin: 0;
    max-width: 450px;
}

@media (max-width: 767px) {
    .process .section-title {
        font-size: 22px;
        line-height: 1.25;
        letter-spacing: -0.5px;
    }
    .process .section-intro {
        margin-bottom: 32px;
    }
    .process-steps {
        padding: 0 16px;
        max-width: 460px;
        margin: 0 auto;
    }
    .process-step {
        gap: 16px;
        padding-bottom: 32px;
    }
    .process-step:not(:last-child)::after {
        left: 18px; /* Center of smaller icon */
        top: 36px;
    }
    .step-icon {
        width: 36px;
        height: 36px;
    }
    .step-icon svg {
        width: 16px;
        height: 16px;
    }
    .step-content {
        padding-top: 6px;
    }
    .step-title {
        font-size: 15px !important;
        letter-spacing: -0.2px;
    }
    .step-desc {
        font-size: 12.5px;
        line-height: 1.5;
    }
}

/* 
===============================================
  05. FAQ Section
===============================================
*/
.faq-layout {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
}

.faq-left {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-right {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 8px; /* 8px gap between cards */
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-bottom: 24px;
}

.faq-badge .tag-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #aaaaaa;
}

.faq-main-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
    margin: 0;
}

.faq-main-title .text-muted {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #777777;
    display: block;
}

.faq-accordion {
    width: 100%;
}

.faq-item {
    background-color: #1a1a1a; /* Dark card background */
    border-radius: 12px; /* Rounded corners */
    overflow: hidden;
    transition: background-color var(--transition);
}

.faq-item.active {
    background-color: #222222; /* Slightly lighter background when open */
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.5px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

@media (max-width: 1199px) {
    .faq-question {
        font-size: 18px;
    }
}

@media (max-width: 699px) {
    .faq-question {
        font-size: 18px;
        letter-spacing: 0px;
    }
}

.faq-icon {
    width: 32px;
    height: 32px;
    background-color: #c8956c; /* Orange background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #121212; /* Dark arrow */
    flex-shrink: 0;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform var(--transition);
}

/* SVG is up by default, rotate 180 to point down when active */
.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 72px; /* Indent slightly past the icon */
    opacity: 1;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: #aaaaaa;
    margin: 0;
    max-width: 600px;
}

@media (max-width: 991px) {
    .faq-layout {
        flex-direction: column;
        gap: 40px;
    }
    .faq-left, .faq-right {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .faq-layout {
        padding: 0 16px;
        gap: 28px;
    }
    .faq-main-title {
        font-size: 22px;
        line-height: 1.25;
        letter-spacing: -0.5px;
    }
    .faq-badge {
        margin-bottom: 12px;
    }
    .faq-question {
        padding: 14px 18px !important;
        font-size: 14px !important;
        gap: 12px;
    }
    .faq-icon {
        width: 24px;
        height: 24px;
    }
    .faq-icon svg {
        width: 12px;
        height: 12px;
    }
    .faq-item.active .faq-answer {
        padding: 0 18px 16px 54px;
    }
    .faq-answer p {
        font-size: 12.5px;
        line-height: 1.5;
    }
}

/* 
===============================================
  06. Testimonials Section
===============================================
*/
.testimonials {
    background-color: #141414; /* Very dark background */
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px; /* Space between header and cards */
}

/* Testimonials Pill */
.testimonials-pill {
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: var(--radius-full);
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.pill-dot {
    width: 6px;
    height: 6px;
    background-color: #C8783A; /* orange dot */
    border-radius: 50%;
}

.pill-text {
    font-family: var(--font-serif);
    font-size: 10px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    color: var(--clr-accent);
}

.testimonials-heading {
    max-width: 650px;
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.testimonials-heading .text-white {
    color: #ffffff;
}

.testimonials-heading .text-muted {
    color: #777777 !important;
}

.testimonials-heading span,
.testimonials-heading .fw-bold,
.testimonials-heading .fw-light {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
}

.testimonials-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.testimonials-track-wrapper {
    max-width: 1420px;
    margin: 0 auto;
    overflow: hidden; /* Hide horizontal scroll */
    position: relative;
}

.testimonials-track-wrapper::before,
.testimonials-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
    opacity: 0;
}

.testimonials-track-wrapper::after {
    right: 0;
    background: linear-gradient(to right, transparent, #141414);
}

.testimonials-track-wrapper::before {
    left: 0;
    background: linear-gradient(to left, transparent, #141414);
}

.testimonials-track-wrapper.fade-right::after {
    opacity: 1;
}

.testimonials-track-wrapper.fade-left::before {
    opacity: 1;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 0 80px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    width: 300px; /* fixed exactly 300px */
    flex-shrink: 0;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: none; /* No visible border */
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.testimonial-stars .star {
    width: 16px;
    height: 16px;
}

.testimonial-stars .star.filled {
    fill: #c8956c; /* Orange */
}

.testimonial-stars .star.empty {
    fill: #3a3a3a; /* Dark grey */
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: #aaaaaa;
    margin: 0;
    margin-bottom: 24px;
    flex-grow: 1;
    max-width: 600px;
}

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

.author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: var(--font-body);
    color: #F5F1EB;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

.author-role {
    font-family: var(--font-body);
    color: var(--clr-text-gray);
    font-size: 13px;
    margin: 0;
    line-height: 1;
}

.slider-arrow-btn {
    position: absolute;
    right: 2vw; /* Sit on the right edge */
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: #c8956c;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-arrow-btn.is-flipped {
    right: auto;
    left: 2vw;
    transform: translateY(-50%) rotate(180deg);
}

.slider-arrow-btn:hover {
    background-color: #b07e56; /* slightly darker orange */
}

.slider-arrow-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonials-pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2a2a2a;
    transition: var(--transition);
}

.testimonials-pagination .dot.active {
    width: 10px;
    height: 10px;
    background-color: #c8956c;
}

@media (max-width: 767px) {
    .slider-arrow-btn {
        display: none; 
    }
    .testimonials-track-wrapper {
        overflow-x: auto;
        padding-right: 5vw;
        scrollbar-width: none;
    }
    .testimonials-track-wrapper::-webkit-scrollbar {
        display: none;
    }
    .testimonials-track {
        transition: none; 
    }
}

/* 
===============================================
  07. Contact Section
===============================================
*/
.contact {
    padding: var(--section-padding) 0;
}

.contact-card {
    background-color: #1c1c1c;
    border-radius: 20px;
    padding: 48px;
    margin: 0 auto;
    width: calc(100% - 160px);
    max-width: 1100px;
    display: flex;
    gap: 7%;
    align-items: center;
}

.contact-left {
    width: 38%;
}

.contact-pill {
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: var(--radius-full);
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-pill .pill-dot {
    width: 6px;
    height: 6px;
    background-color: #C8783A;
    border-radius: 50%;
}

.contact-pill .pill-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #aaaaaa;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0 0 28px 0;
}

.contact-heading .text-muted {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #777777;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-block {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 20px;
    width: 100%;
}

.info-icon {
    width: 20px;
    flex-shrink: 0;
    display: flex;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-family: var(--font-body);
    color: var(--clr-accent);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.info-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #aaaaaa;
    margin: 0;
}

.info-link {
    color: #ffffff;
    font-size: 14px;
    text-decoration: underline;
    margin-top: 4px;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #c8956c;
}

.tel-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tel-link:hover {
    color: #c8956c;
}

.contact-right {
    width: 55%;
}

.form-card {
    background-color: #161616;
    border: 1px solid #252525;
    border-radius: 14px;
    padding: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #ffffff;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: #555555;
}

.form-input:focus {
    outline: none;
    border-color: #c8956c;
}

.form-textarea {
    height: 140px;
    resize: vertical;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.submit-btn {
    background-color: #c8956c;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    height: 50px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    background-color: #b8845c;
}

@media (max-width: 991px) {
    .contact-card {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 32px 20px;
        width: calc(100% - 32px);
    }
    .contact-left {
        display: contents; /* Pull out children so they can be ordered individually */
    }
    .contact-pill {
        order: 1;
        margin-bottom: 0;
    }
    .contact-heading {
        order: 2;
        font-size: 24px !important;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    .contact-right {
        order: 3;
        width: 100%;
    }
    .contact-info-list {
        order: 4;
        width: 100%;
        margin-top: 16px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .info-block {
        margin-bottom: 0;
    }
}
@media (max-width: 600px) {
    .contact-info-list {
        grid-template-columns: 1fr;
    }
}

/* 
===============================================
  08. Blog Section
===============================================
*/
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    background-color: var(--clr-bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(200, 120, 58, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.blog-img-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--clr-accent);
    color: #111111;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.blog-title {
    font-size: 1.5rem;
    color: #F5F1EB;
    font-family: var(--font-heading);
    font-weight: 600;
}

.blog-excerpt {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #aaaaaa;
    margin-bottom: 16px;
    flex-grow: 1;
    max-width: 600px;
}

/* 
===============================================
  09. Footer Section
===============================================
*/
.footer-warm {
    position: relative;
    z-index: 2000;
    background-color: #e6a268; /* Solid lower color */
    overflow: hidden;
}

.footer-hero {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #fdf8f4 0%, #faeade 50%, #f5c898 75%, #e6a268 100%); /* Gradient contained in banner */
}

.footer-watermark {
    position: absolute;
    top: 70%; /* Pull watermark down */
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 280px;
    font-weight: 900;
    color: #e6a268;
    opacity: 1;
    z-index: 1;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    line-height: 1;
}

.footer-badge {
    position: absolute;
    top: 60%;
    z-index: 2;
    background-color: #1a1a1a;
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.badge-left {
    left: 20%;
    top: 55%; /* Adjusted for lowered watermark */
}

.badge-right {
    right: 20%;
    top: 72%; /* Adjusted for lowered watermark */
}

.badge-icon {
    width: 24px;
    height: 24px;
    background-color: #2a2a2a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-badge span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.footer-nav-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 60px;
    gap: 40px;
    background: transparent;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.col-heading {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #5a3a1a;
    font-weight: 500;
    margin-bottom: 20px;
}

.col-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.col-links a, .col-links span.built-with {
    font-size: 15px;
    color: #3a2010;
    text-decoration: none;
    line-height: 2;
    font-weight: 500; /* Matches LawHub's elegant medium weight */
    transition: color 0.2s ease;
}

.col-links a:hover {
    color: #1a0f05;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background-color: #1a1a1a;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease;
}

.social-btn:hover {
    background-color: #333333;
}

@media (max-width: 991px) {
    .footer-hero {
        height: 180px !important;
        overflow: visible !important;
        background: linear-gradient(180deg, #fdf8f4 0%, #e6a268 82%) !important; /* Gradient starts in the centre of text, lower color touches text from bottom */
    }
    .footer-watermark {
        font-size: 120px !important;
        top: 82% !important; /* Pulled watermark down */
        background: linear-gradient(180deg, #ffffff 0%, #e6a268 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        opacity: 0.9 !important;
    }
    .footer-nav-container {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 16px !important;
        padding: 55px 32px 35px 32px !important; /* Pulled links down, side padding increased, total height same */
    }
    .col-heading {
        font-size: 11px !important;
        font-weight: 700 !important;
        letter-spacing: 1.5px !important;
        color: #231206 !important;
    }
    .col-links a, .col-links span.built-with {
        font-size: 13px !important;
        font-weight: 500 !important; /* Matches LawHub */
        color: #2b160a !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
    .footer-badge {
        padding: 8px 14px !important;
        gap: 6px !important;
    }
    .badge-icon {
        width: 20px !important;
        height: 20px !important;
    }
    .badge-icon svg {
        width: 12px !important;
        height: 12px !important;
    }
    .footer-badge span {
        font-size: 11.5px !important;
    }
    .badge-left { left: 15%; top: 68%; } /* Pulled badges down */
    .badge-right { right: 15%; top: 84%; }
}

@media (max-width: 767px) {
    .footer-hero {
        height: 130px !important;
        overflow: visible !important;
        background: linear-gradient(180deg, #fdf8f4 0%, #e6a268 85%) !important; /* Gradient starts in the centre of text, lower color touches text from bottom */
    }
    .footer-watermark {
        font-size: 80px !important;
        top: 85% !important; /* Lowered watermark */
        background: linear-gradient(180deg, #ffffff 0%, #e6a268 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        opacity: 0.9 !important;
    }
    .footer-nav-container {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 28px 16px !important;
        padding: 64px 48px 32px 48px !important; /* Pulled links down, side padding increased, total height same */
    }
    .col-heading {
        font-size: 9px !important;
        font-weight: 700 !important;
        letter-spacing: 1px !important;
        margin-bottom: 8px !important;
        color: #231206 !important;
    }
    .col-links a, .col-links span.built-with {
        font-size: 11px !important;
        font-weight: 500 !important;
        line-height: 1.6 !important;
        color: #2b160a !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
    .footer-badge {
        padding: 5px 10px !important;
        gap: 4px !important;
    }
    .badge-icon {
        width: 16px !important;
        height: 16px !important;
    }
    .badge-icon svg {
        width: 9px !important;
        height: 9px !important;
    }
    .footer-badge span {
        font-size: 9px !important;
        font-weight: 600 !important;
    }
    .badge-left {
        left: 15% !important;
        top: 72% !important; /* Lowered badges to overlap with lowered watermark */
    }
    .badge-right {
        right: 15% !important;
        top: 88% !important;
    }
}

/* 
===============================================
  10. JavaScript Animation Utilities (Framer Style)
===============================================
*/
.reveal-up {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.is-revealed {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* ==============================================
   11. Subpages CSS Styles
================================================ */

/* Subpage Hero */
.subpage-hero {
    background-color: var(--clr-bg-dark);
    padding: 110px 0 60px 0;
    border-bottom: 1px solid var(--clr-border);
    position: relative;
    text-align: center;
}
.subpage-hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.subpage-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(212, 163, 115, 0.05);
    border: 1px solid rgba(212, 163, 115, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    margin-bottom: 20px;
}

.subpage-hero-pill span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent);
}
.subpage-hero-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1px;
    font-weight: 700;
    line-height: 1.15;
}
.subpage-hero-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--clr-text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.subpage-hero-breadcrumbs a {
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: var(--transition);
}
.subpage-hero-breadcrumbs a:hover {
    color: var(--clr-accent);
}
.subpage-hero-separator {
    color: var(--clr-text-gray);
}

/* About Stats Section */
.about-stats-section {
    padding: 60px 0;
    background-color: var(--clr-bg-darker);
    border-bottom: 1px solid var(--clr-border);
}
.about-stats-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    background-color: var(--clr-bg-secondary);
    overflow: hidden;
}
.stat-card {
    padding: 40px;
    text-align: center;
    border-right: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}
.stat-card:last-child {
    border-right: none;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 56px; /* Elite bold statistics */
    color: #F5F1EB;
    font-weight: 700;
}
.stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}
@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-card {
        border-right: none;
        border-bottom: 1px solid var(--clr-border);
        padding: 30px;
    }
    .stat-card:last-child {
        border-bottom: none;
    }
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: var(--section-padding) 0;
    background-color: var(--clr-bg-dark);
}
.vision-mission-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.vision-mission-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.vision-mission-row:nth-child(even) {
    direction: rtl;
}
.vision-mission-row:nth-child(even) .vision-mission-content {
    direction: ltr;
}
.vision-mission-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.vision-mission-label-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(212, 163, 115, 0.05);
    border: 1px solid rgba(212, 163, 115, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    width: max-content;
}

.vision-mission-label-pill span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent);
}
.vision-mission-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--clr-text-white);
    letter-spacing: -1px;
    line-height: 1.25;
    font-weight: 700;
}
.vision-mission-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #aaaaaa;
    max-width: 600px;
}
.vision-mission-image {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}
.vision-mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.vision-mission-image:hover img {
    transform: scale(1.03);
}
@media (max-width: 768px) {
    .vision-mission-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .vision-mission-row:nth-child(even) {
        direction: ltr;
    }
    .vision-mission-image {
        height: 280px;
    }
}

/* Founder Section */
.founder-section {
    padding: var(--section-padding) 0;
    background-color: var(--clr-bg-secondary);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}
.founder-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.founder-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    height: 450px;
}
.founder-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.founder-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.founder-label-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(212, 163, 115, 0.05);
    border: 1px solid rgba(212, 163, 115, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    width: max-content;
}

.founder-label-pill span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent);
}
.founder-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--clr-text-white);
    letter-spacing: -1px;
    line-height: 1.25;
    font-weight: 700;
}
.founder-quote {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #aaaaaa;
}
.founder-signature {
    margin-top: 10px;
    border-top: 1px solid var(--clr-border);
    padding-top: 15px;
}
.founder-name {
    font-family: var(--font-heading);
    font-size: 28px;
    color: #F5F1EB;
    margin-bottom: 4px;
    font-weight: 600; /* Inter SemiBold */
}
.founder-role {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .founder-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 24px !important;
        padding: 0 16px !important;
    }
    .founder-image-wrapper {
        width: 100% !important;
        max-width: 260px !important; /* Make the portrait image nice and big but centered */
        height: auto !important;
        aspect-ratio: 3 / 4 !important;
        max-height: none !important;
        margin: 0 auto !important;
    }
    .founder-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 16px !important;
    }
    .founder-label-pill {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .founder-title {
        font-size: 20px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
    .founder-quote {
        text-align: center !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    .founder-quote p {
        font-size: 12px !important;
        line-height: 1.55 !important;
        margin-bottom: 12px !important;
    }
    /* Hide 3rd and 4th paragraphs on mobile to shorten the text */
    .founder-quote p:nth-child(n+3) {
        display: none !important;
    }
    .founder-signature {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-top: 8px !important;
        padding-top: 12px !important;
        border-top: 1px solid var(--clr-border) !important;
    }
    .founder-name {
        font-size: 18px !important;
    }
    .founder-role {
        font-size: 11px !important;
    }
}

/* Service Details Layout */
.service-page-wrapper {
    padding: 80px 0;
    background-color: #000000;
    display: flex;
    justify-content: center;
}
.service-container-card {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px;
    background-color: #161515;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.service-card-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
.service-badge-container {
    display: flex;
    justify-content: flex-start;
}
.service-badge-pill {
    background-color: rgba(212, 163, 115, 0.05);
    border: 1px solid rgba(212, 163, 115, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.service-badge-pill .pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--clr-accent);
}
.service-badge-pill .pill-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent);
}
.service-badge-pill .pill-arrow {
    color: var(--clr-accent);
    font-size: 13px;
    font-weight: 500;
    transition: transform 0.3s ease;
}
.service-badge-pill:hover .pill-arrow {
    transform: translate(2px, -2px);
}
.service-badge-pill:hover {
    background-color: rgba(212, 163, 115, 0.12);
    border-color: rgba(212, 163, 115, 0.4);
}
.service-page-title {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}
.service-page-intro {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #aaaaaa;
    margin: 0;
    max-width: 800px;
}
.service-card-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    width: 100%;
}
.service-featured-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.service-featured-image img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}
.service-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 48px;
    margin-top: 8px;
}
.service-content-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.service-content-left h3 {
    font-family: var(--font-heading);
    font-size: 34px;
    color: #F5F1EB;
    margin: 32px 0 16px 0;
    font-weight: 600;
}
.service-content-left h4 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: #F5F1EB;
    margin: 24px 0 12px 0;
    font-weight: 600;
}
.service-content-left h5 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #F5F1EB;
    margin: 0;
    font-weight: 600;
    display: inline-block;
}
.service-content-left p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #aaaaaa;
    margin: 0 0 16px 0;
    max-width: 600px;
}
.service-content-left ol {
    list-style: none;
    counter-reset: service-counter;
    padding-left: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.service-content-left ol > li {
    position: relative;
    padding-left: 28px;
    counter-increment: service-counter;
}
.service-content-left ol > li::before {
    content: counter(service-counter) ".";
    position: absolute;
    left: 0;
    top: -1px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}
.service-content-left ul {
    list-style: none;
    padding-left: 18px;
    margin: 12px 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-content-left ul > li {
    position: relative;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: #adadad;
    margin: 0;
}
.service-content-left ul > li::before {
    content: "•";
    position: absolute;
    left: -14px;
    top: 0;
    color: #adadad;
    font-size: 14px;
    line-height: 1.6;
}
.service-content-left strong {
    color: #ffffff;
    font-weight: 600;
}
.service-sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ceo-profile-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ceo-profile-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.ceo-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.ceo-profile-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ceo-profile-name {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: #F5F1EB;
    margin: 0;
}
.ceo-profile-role {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}
.ceo-stats-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ceo-stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ceo-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}
.ceo-stat-num {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: #F5F1EB;
    line-height: 1;
}
.ceo-stat-lbl {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.ceo-consultation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #c8956c;
    color: #000000;
    padding: 14px 24px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}
.ceo-consultation-btn:hover {
    background-color: #dcb38a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 149, 108, 0.2);
}
.ceo-consultation-btn .btn-arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #000000;
    color: #c8956c;
    transition: all 0.3s ease;
}
.ceo-consultation-btn:hover .btn-arrow-circle {
    transform: rotate(45deg);
    background-color: #ffffff;
    color: #000000;
}
.ceo-consultation-btn .btn-arrow-circle svg {
    width: 12px;
    height: 12px;
}
@media (max-width: 991px) {
    .service-container-card {
        padding: 32px;
    }
    .service-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .service-sidebar-right {
        flex-direction: row;
        gap: 24px;
    }
    .ceo-profile-card, .ceo-stats-card {
        flex: 1;
    }
}
@media (max-width: 768px) {
    .service-container-card {
        padding: 24px;
    }
    .service-page-title {
        font-size: 28px;
    }
    .service-sidebar-right {
        flex-direction: column;
    }
    .ceo-profile-card, .ceo-stats-card {
        width: 100%;
    }
}

/* Blog Post Layout */
.blog-post-layout {
    padding: var(--section-padding) 0;
    background-color: var(--clr-bg-dark);
}
.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--clr-text-gray);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-post-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-post-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--clr-border);
}
.blog-post-author-name {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.blog-post-image {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    margin-bottom: 40px;
}
.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-post-content {
    font-family: var(--font-body);
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.6;
}
.blog-post-content p {
    margin-bottom: 24px;
    max-width: 600px;
}
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    font-family: var(--font-heading);
    color: var(--clr-text-white);
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.blog-post-content h2 { font-size: 28px; }
.blog-post-content h3 { font-size: 22px; }
.blog-post-content h4 { font-size: 18px; }

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}
.blog-post-content li {
    margin-bottom: 10px;
}
.blog-post-content blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 10px 0 10px 24px;
    font-style: italic;
    color: var(--clr-text-light);
    margin: 35px 0;
    font-size: 16px;
}
@media (max-width: 768px) {
    .blog-post-image {
        height: 280px;
    }
}

/* Subpage Bottom CTA Section */
.subpage-cta-section {
    padding: 60px 0;
    background-color: var(--clr-bg-darker);
    border-top: 1px solid var(--clr-border);
}
.subpage-cta-card {
    max-width: var(--max-width);
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    border: 0.5px solid var(--clr-border);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: var(--radius-md);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}
.subpage-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(212, 163, 115, 0.05);
    border: 1px solid rgba(212, 163, 115, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 16px;
}
.subpage-cta-pill .circle {
    width: 6px;
    height: 6px;
    background-color: var(--clr-accent);
    border-radius: 50%;
}
.subpage-cta-pill span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent);
}
.subpage-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 56px);
    color: #F5F1EB;
    max-width: 600px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1.5px;
}
.subpage-cta-title span {
    color: var(--clr-text-gray);
}
@media (max-width: 768px) {
    .subpage-cta-section {
        padding: 40px 0;
    }
    .subpage-cta-card {
        padding: 40px 24px;
        margin: 0 16px;
        border-radius: var(--radius-sm);
        gap: 20px;
    }
    .subpage-cta-title {
        font-size: 28px;
    }
}

/* Attorneys Subpage Layout */
.attorneys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: var(--section-padding) 0;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}
.attorney-card {
    background-color: var(--clr-bg-secondary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}
.attorney-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-accent);
}
.attorney-img-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-bottom: 1px solid var(--clr-border);
}
.attorney-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}
.attorney-card:hover .attorney-img-wrapper img {
    transform: scale(1.03);
}
.attorney-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 16px;
}
.attorney-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.attorney-name {
    font-family: var(--font-heading);
    font-size: 34px;
    color: #F5F1EB;
    font-weight: 600;
}
.attorney-role {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}
.attorney-bio {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    flex-grow: 1;
}
.attorney-action {
    margin-top: auto;
}
.attorney-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background-color: rgba(227, 169, 121, 0.05);
    border: 1px solid rgba(227, 169, 121, 0.2);
    border-radius: var(--radius-sm);
    color: var(--clr-accent);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
}
.attorney-btn:hover {
    background-color: var(--clr-accent);
    color: var(--clr-text-white);
    border-color: var(--clr-accent);
}

/* Service Detail Pages Layout */
.subpage-hero {
    padding: 120px 0 60px 0;
    background-color: #0A0A0A;
    text-align: center;
    border-bottom: 1px solid #1c1c1c;
}
.subpage-hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.subpage-hero-pill {
    background-color: rgba(200, 120, 58, 0.05);
    border: 1px solid rgba(200, 120, 58, 0.15);
    padding: 6px 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.subpage-hero-pill span {
    font-family: var(--font-serif);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    color: var(--clr-accent);
}
.subpage-hero-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin: 0;
}

.service-detail-layout {
    padding: 60px 0 100px 0;
    background-color: #0A0A0A;
}
.service-detail-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column - Content */
.service-content {
    display: flex;
    flex-direction: column;
}
.service-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #777777;
    margin-bottom: 24px;
}
.service-breadcrumbs a {
    color: #ffffff;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 4px;
}
.service-breadcrumbs a:hover {
    color: var(--clr-accent);
}
.service-breadcrumbs .breadcrumb-arrow {
    color: var(--clr-accent);
    font-size: 11px;
}
.service-breadcrumbs .breadcrumb-dot {
    color: #333333;
}
.service-detail-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -1px;
    margin-bottom: 24px;
}
.service-detail-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.55;
    color: #adadad;
    margin-bottom: 24px;
}
.service-main-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 36px;
    border: 1px solid #1c1c1c;
    aspect-ratio: 16/9;
}
.service-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-detail-subtitle {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-top: 36px;
    margin-bottom: 20px;
}

/* Bullet list checkmark/arrows grid */
.service-bullets-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 24px 0 36px 0;
}
.service-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.service-bullet-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--clr-accent);
    margin-top: 2px;
}
.service-bullet-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}
.service-bullet-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.5;
    color: #adadad;
}

/* Blockquote */
.service-content blockquote {
    border-left: 2px solid var(--clr-accent);
    padding: 16px 24px;
    font-style: italic;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 0 8px 8px 0;
    margin: 32px 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Inner CTA card at bottom of left column */
.service-inner-cta {
    background-color: var(--clr-bg-secondary);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 40px;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}
.service-inner-cta-pill {
    background-color: rgba(200, 120, 58, 0.05);
    border: 1px solid rgba(200, 120, 58, 0.15);
    padding: 4px 12px;
    border-radius: 999px;
    font-family: var(--font-serif);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    color: var(--clr-accent);
}
.service-inner-cta-title {
    font-family: var(--font-heading);
    font-size: 26px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.8px;
    max-width: 480px;
}
.service-inner-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #c8956c;
    color: #000000;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.service-inner-cta-btn:hover {
    background-color: #dcb38a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 149, 108, 0.2);
}
.service-inner-cta-btn .btn-arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #000000;
    color: #c8956c;
    transition: all 0.3s ease;
}
.service-inner-cta-btn:hover .btn-arrow-circle {
    transform: rotate(45deg);
    background-color: #ffffff;
    color: #000000;
}
.service-inner-cta-btn .btn-arrow-circle svg {
    width: 12px;
    height: 12px;
}

/* Right Column - Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 96px;
}

/* CEO / Founder Card */
.ceo-card {
    background-color: var(--clr-bg-secondary);
    border: 1px solid var(--clr-border);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ceo-card-image {
    width: 100%;
    aspect-ratio: 1.1/1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--clr-border);
}
.ceo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.ceo-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ceo-card-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-accent);
}
.ceo-card-role {
    font-family: var(--font-heading);
    font-size: 12px;
    color: #777777;
    font-weight: 500;
}
.ceo-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    border-top: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
    padding: 16px 0;
}
.ceo-card-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ceo-card-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}
.ceo-card-label {
    font-family: var(--font-body);
    font-size: 11px;
    color: #777777;
    font-weight: 500;
}
.ceo-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #c8956c;
    color: #000000;
    padding: 14px 20px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.ceo-card-btn:hover {
    background-color: #dcb38a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 149, 108, 0.15);
}

/* Sibling Navigation Card */
.sidebar-nav-card {
    background-color: var(--clr-bg-secondary);
    border: 1px solid var(--clr-border);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sidebar-nav-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.sidebar-nav-category {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sidebar-nav-category-title {
    font-family: var(--font-serif);
    font-size: 14px;
    font-style: italic;
    font-weight: 700;
    color: var(--clr-accent);
    border-bottom: 1px solid #1f1f1f;
    padding-bottom: 8px;
}
.sidebar-nav-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sidebar-nav-item {
    border-bottom: 1px solid #191919;
}
.sidebar-nav-item:last-child {
    border-bottom: none;
}
.sidebar-nav-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #aaaaaa;
    transition: var(--transition);
}
.sidebar-nav-item a:hover,
.sidebar-nav-item.active a {
    color: var(--clr-accent);
    padding-left: 4px;
}
.sidebar-nav-item.active a {
    font-weight: 600;
    border-bottom: 1px solid var(--clr-accent);
}
.sidebar-nav-arrow {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: var(--transition);
}
.sidebar-nav-item a:hover .sidebar-nav-arrow {
    transform: translate(2px, -2px);
}

@media (max-width: 991px) {
    .service-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-sidebar {
        position: relative;
        top: 0;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }
    .ceo-card, .sidebar-nav-card {
        flex: 1 1 300px;
    }
}

@media (max-width: 768px) {
    .service-sidebar {
        flex-direction: column;
    }
    .ceo-card, .sidebar-nav-card {
        width: 100%;
    }
    .subpage-hero-title {
        font-size: 32px;
    }
    .service-detail-title {
        font-size: 26px;
    }
}

/* Custom Portrait Video Section */
.about-video-section {
    padding: 80px 0;
    background-color: var(--clr-bg-dark);
}

.video-about-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
    background-color: var(--clr-bg-secondary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.video-card-header {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .about-video-section {
        padding: 40px 0;
    }
    .video-about-card {
        grid-template-columns: 220px 1fr !important;
        gap: 32px !important;
        padding: 32px !important;
    }
    .video-card-header {
        grid-column: span 2 !important;
    }
    .custom-video-player {
        max-width: 220px !important;
    }
}

@media (max-width: 767px) {
    .video-about-card {
        display: grid !important;
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        text-align: center !important;
        gap: 16px !important;
        padding: 24px !important;
    }
    .details-column {
        display: contents !important;
    }
    .video-about-card .tag-badge {
        order: 1 !important;
        margin: 0 auto !important;
    }
    .video-about-card .section-title {
        order: 2 !important;
        font-size: 20px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        margin-bottom: 8px !important;
    }
    .video-column {
        order: 3 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin: 8px 0 !important;
    }
    .custom-video-player {
        max-width: 280px !important; /* Make the video player center and big */
        width: 100% !important;
        aspect-ratio: 9 / 16 !important;
        margin: 0 auto !important;
    }
    .about-card-desc {
        order: 4 !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    .about-card-desc p {
        font-size: 12px !important; /* Small description below video */
        line-height: 1.55 !important;
    }
    .about-card-desc p:nth-child(n+2) {
        display: none !important; /* Hide second paragraph to keep it small and short */
    }
    .card-cta-btn {
        order: 5 !important;
        margin-top: 8px !important;
    }
    .video-controls-overlay {
        padding: 10px !important;
    }
    .play-center-btn {
        width: 50px !important;
        height: 50px !important;
    }
    .play-center-btn svg {
        width: 20px !important;
        height: 20px !important;
    }
}

.video-column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.custom-video-player {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Controls Overlay */
.video-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    padding: 16px;
    pointer-events: none;
}

.custom-video-player:hover .video-controls-overlay,
.custom-video-player.controls-active .video-controls-overlay {
    opacity: 1;
}

.video-controls-overlay * {
    pointer-events: auto;
}

/* Centered play button */
.play-center-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(200, 120, 58, 0.9);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
    pointer-events: auto;
    border: none;
}

.play-center-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--clr-accent);
}

.play-center-btn.fade-out {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    pointer-events: none;
}

.play-center-btn svg {
    width: 28px;
    height: 28px;
}

/* Bottom controls bar */
.video-controls-bar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

/* Custom timeline scrubber styling */
.timeline-container {
    position: relative;
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.timeline-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    margin: 0;
    z-index: 4;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--clr-accent);
    border-radius: 3px;
    z-index: 2;
    pointer-events: none;
}

.controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.control-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.control-btn:hover {
    color: var(--clr-accent);
}

.control-btn svg {
    width: 20px;
    height: 20px;
}

.time-display {
    font-family: var(--font-inter);
    font-size: 11px;
    color: #ccc;
    font-weight: 500;
    letter-spacing: 0.5px;
    pointer-events: none;
}

.hidden {
    display: none !important;
}

/* Details column */
.details-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.about-card-desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-card-desc p {
    color: var(--clr-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.card-cta-btn {
    margin-top: 12px;
}

/* 
===============================================
  12. Custom Refinements (Morph, Modal, Reveals)
===============================================
*/

/* Mobile Menu Toggle Morph */
.mobile-toggle svg line {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}
.mobile-toggle svg line:nth-child(1) {
    transform-origin: 12px 6px;
}
.mobile-toggle svg line:nth-child(2) {
    transform-origin: 12px 12px;
}
.mobile-toggle svg line:nth-child(3) {
    transform-origin: 12px 18px;
}
.mobile-toggle.active svg line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.mobile-toggle.active svg line:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active svg line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Custom Success Modal (Glassmorphic) */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.custom-modal-card {
    background: rgba(18, 17, 17, 0.85);
    border: 1px solid rgba(200, 120, 58, 0.25);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(200, 120, 58, 0.08);
}
.custom-modal-overlay.show .custom-modal-card {
    transform: scale(1) translateY(0);
}
.custom-modal-icon-wrapper {
    width: 60px;
    height: 60px;
    border: 2px solid #C8783A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: #C8783A;
    background-color: rgba(200, 120, 58, 0.05);
    box-shadow: 0 0 20px rgba(200, 120, 58, 0.15);
}
.custom-modal-icon-wrapper svg {
    width: 28px;
    height: 28px;
}
.custom-modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.custom-modal-body {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}
.custom-modal-btn {
    background: linear-gradient(135deg, #C8783A, #A65F2B);
    border: none;
    color: #ffffff;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 120, 58, 0.2);
}
.custom-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 120, 58, 0.35);
    background: linear-gradient(135deg, #d38546, #b86b32);
}

/* Multi-Directional Reveal Animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px) scale(0.98);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.is-revealed {
    opacity: 1 !important;
    transform: translateX(0) scale(1) !important;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px) scale(0.98);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.is-revealed {
    opacity: 1 !important;
    transform: translateX(0) scale(1) !important;
}

/* ==============================================
   12. Premium Visual Enhancements & Custom UI
================================================ */

/* Smooth fade-in page entry */
body {
    animation: fadeInPage 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Textured Background noise/grain overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.015; /* Even softer for elegance and performance */
    z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    transform: translate3d(0, 0, 0); /* Force GPU compositing */
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: auto;
}

/* Custom premium scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0f0e0e;
}
::-webkit-scrollbar-thumb {
    background: #2a2826;
    border-radius: 4px;
    border: 2px solid #0f0e0e;
}
::-webkit-scrollbar-thumb:hover {
    background: #C8783A;
}

/* Navbar Scrolled State */
.navbar.navbar-scrolled {
    background: rgba(11, 10, 10, 0.98) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
}

/* Disable noise overlay on mobile to keep scroll extremely smooth */
@media (max-width: 991px) {
    .noise-overlay {
        display: none !important;
    }
}

/* Interactive Card Mouse Glow Border Tracking */
.faq-item, .contact-form-wrapper, .stat-card, 
.team-card, .testimonial-card, .contact-card, .blog-card, 
.ceo-profile-card, .ceo-stats-card, .subpage-cta-card, 
.attorney-card, .ceo-card, .sidebar-nav-card, .video-about-card {
    position: relative;
}

.faq-item::before, .contact-form-wrapper::before, 
.stat-card::before, .team-card::before, .testimonial-card::before, 
.contact-card::before, .blog-card::before, .ceo-profile-card::before, 
.ceo-stats-card::before, .subpage-cta-card::before, .attorney-card::before, 
.ceo-card::before, .sidebar-nav-card::before, .video-about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(
        400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(200, 120, 58, 0.06),
        transparent 80%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.faq-item:hover::before, .contact-form-wrapper:hover::before,
.stat-card:hover::before, .team-card:hover::before, .testimonial-card:hover::before,
.contact-card:hover::before, .blog-card:hover::before, .ceo-profile-card:hover::before,
.ceo-stats-card:hover::before, .subpage-cta-card:hover::before, .attorney-card:hover::before,
.ceo-card:hover::before, .sidebar-nav-card:hover::before, .video-about-card:hover::before {
    opacity: 1;
}
