/* =========================================================
   BDLawSource — main stylesheet
   Table of contents:
   1. Variables & base
   2. Layout utilities & buttons
   3. Top bar & primary nav
   4. Hero + AI widget + stats bar
   5. Section heading / practice areas
   6. Lawyers carousel
   7. Blog cards
   8. Contact section & forms
   9. Clients marquee
   10. Footer
   11. Inner pages (banner, about, single practice area/lawyer, article, 404)
   12. Responsive
   ========================================================= */

/* ---------- 1. Variables & base ---------- */
:root {
	--bdls-navy: #0b1c39;
	--bdls-navy-light: #14284d;
	--bdls-gold: #c9962c;
	--bdls-gold-light: #e0b354;
	--bdls-white: #ffffff;
	--bdls-bg-muted: #f6f7fa;
	--bdls-border: #e6e8ee;
	--bdls-text: #2b2f38;
	--bdls-text-muted: #646d7e;
	--bdls-text-on-navy: #cfd7e6;
	--bdls-radius: 10px;
	--bdls-radius-sm: 6px;
	--bdls-shadow: 0 10px 30px rgba(11, 28, 57, 0.08);
	--bdls-shadow-lg: 0 20px 50px rgba(11, 28, 57, 0.18);
	--bdls-font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--bdls-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--bdls-container: 1240px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--bdls-font-sans);
	color: var(--bdls-text);
	background: var(--bdls-white);
	font-size: 16px;
	line-height: 1.6;
}

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

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

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4 {
	font-family: var(--bdls-font-serif);
	color: var(--bdls-navy);
	line-height: 1.25;
	margin: 0 0 0.5em;
}

p {
	margin: 0 0 1em;
}

button {
	font-family: inherit;
	cursor: pointer;
}

input, textarea, select {
	font-family: inherit;
	font-size: 1rem;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--bdls-gold);
	color: var(--bdls-navy);
	padding: 10px 18px;
	z-index: 10000;
	font-weight: 600;
}

.skip-link:focus {
	left: 10px;
	top: 10px;
}

.bdls-icon {
	width: 1em;
	height: 1em;
	display: inline-block;
	vertical-align: -0.15em;
}

.bdls-icon--sm {
	width: 16px;
	height: 16px;
}

.bdls-icon--xs {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

/* ---------- 2. Layout utilities & buttons ---------- */
.bdls-container {
	max-width: var(--bdls-container);
	margin: 0 auto;
	padding: 0 24px;
}

.bdls-container--narrow {
	max-width: 900px;
}

.bdls-section {
	padding: 80px 0;
}

.bdls-section--muted {
	background: var(--bdls-bg-muted);
}

.bdls-section__heading {
	text-align: center;
	margin-bottom: 48px;
}

.bdls-section__heading h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin-bottom: 10px;
}

.bdls-section__divider {
	display: inline-flex;
	color: var(--bdls-gold);
	width: 22px;
	height: 22px;
}

.bdls-section__heading--split {
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	margin-bottom: 32px;
}

.bdls-section__heading--split h2 {
	margin-bottom: 0;
}

.bdls-section__cta {
	text-align: center;
	margin-top: 40px;
}

.bdls-section__cta--left {
	text-align: left;
	margin-top: 32px;
}

.bdls-empty-notice {
	text-align: center;
	color: var(--bdls-text-muted);
	background: var(--bdls-bg-muted);
	border: 1px dashed var(--bdls-border);
	border-radius: var(--bdls-radius);
	padding: 32px;
}

.bdls-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--bdls-navy);
	white-space: nowrap;
}

.bdls-link-arrow .bdls-icon {
	width: 16px;
	height: 16px;
	color: var(--bdls-gold);
}

.bdls-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 26px;
	border-radius: var(--bdls-radius-sm);
	font-weight: 600;
	font-size: 0.95rem;
	border: 1px solid transparent;
	transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	white-space: nowrap;
}

.bdls-btn .bdls-icon {
	width: 18px;
	height: 18px;
}

.bdls-btn:hover {
	transform: translateY(-2px);
}

.bdls-btn--gold {
	background: var(--bdls-gold);
	color: var(--bdls-navy);
}

.bdls-btn--gold:hover {
	background: var(--bdls-gold-light);
}

.bdls-btn--outline-light {
	background: transparent;
	color: var(--bdls-white);
	border-color: rgba(255, 255, 255, 0.4);
}

.bdls-btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--bdls-white);
}

.bdls-btn--outline-dark {
	background: transparent;
	color: var(--bdls-navy);
	border-color: var(--bdls-navy);
}

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

.bdls-btn--lg {
	padding: 16px 30px;
	font-size: 1rem;
}

.bdls-btn--sm {
	padding: 9px 16px;
	font-size: 0.85rem;
}

.bdls-btn--block {
	width: 100%;
}

/* ---------- 3. Top bar & primary nav ---------- */
.bdls-header {
	position: sticky;
	top: 0;
	z-index: 999;
	transition: box-shadow 0.2s ease;
}

.bdls-header.is-scrolled {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.bdls-topbar {
	background: #081426;
	color: var(--bdls-text-on-navy);
	font-size: 0.85rem;
}

.bdls-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 24px;
	gap: 16px;
	flex-wrap: wrap;
}

.bdls-topbar__contact {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}

.bdls-topbar__contact a,
.bdls-topbar__address {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--bdls-text-on-navy);
}

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

.bdls-topbar__lang {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bdls-topbar__lang button {
	background: none;
	border: none;
	color: var(--bdls-text-on-navy);
	padding: 2px 4px;
	font-weight: 500;
}

.bdls-topbar__lang button.is-active {
	color: var(--bdls-gold-light);
	font-weight: 700;
}

.bdls-nav-wrap {
	background: var(--bdls-navy);
}

.bdls-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 24px;
	gap: 24px;
}

.bdls-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bdls-brand__mark {
	color: var(--bdls-gold);
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.bdls-brand__mark .bdls-icon {
	width: 100%;
	height: 100%;
}

.bdls-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.bdls-brand__text strong {
	font-family: var(--bdls-font-serif);
	color: var(--bdls-white);
	font-size: 1.25rem;
	letter-spacing: 0.5px;
}

.bdls-brand__text strong span {
	color: var(--bdls-gold);
}

.bdls-brand__text small {
	color: var(--bdls-text-on-navy);
	font-size: 0.62rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.bdls-brand--footer strong {
	font-size: 1.4rem;
}

.custom-logo-link img {
	max-height: 52px;
	width: auto;
}

.bdls-nav__toggle {
	display: none;
	background: none;
	border: none;
	color: var(--bdls-white);
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	position: relative;
}

.bdls-nav__toggle .bdls-icon {
	width: 24px;
	height: 24px;
	position: absolute;
}

.bdls-nav__toggle-close {
	display: none;
}

.bdls-nav__toggle[aria-expanded="true"] .bdls-nav__toggle-open {
	display: none;
}

.bdls-nav__toggle[aria-expanded="true"] .bdls-nav__toggle-close {
	display: block;
}

.bdls-menu {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.bdls-menu a {
	color: var(--bdls-text-on-navy);
	font-weight: 500;
	font-size: 0.94rem;
	padding: 6px 0;
	display: inline-block;
}

.bdls-menu > li > a:hover,
.bdls-menu > li.current-menu-item > a {
	color: var(--bdls-gold-light);
}

.bdls-menu li {
	position: relative;
}

.bdls-menu li.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	margin-left: 6px;
}

.bdls-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--bdls-white);
	min-width: 220px;
	border-radius: var(--bdls-radius-sm);
	box-shadow: var(--bdls-shadow-lg);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
	z-index: 20;
}

.bdls-menu li:hover > .sub-menu,
.bdls-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.bdls-menu .sub-menu a {
	color: var(--bdls-navy);
	padding: 8px 12px;
	border-radius: 4px;
}

.bdls-menu .sub-menu a:hover {
	background: var(--bdls-bg-muted);
	color: var(--bdls-navy);
}

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

.bdls-nav__actions--mobile {
	display: none;
}

.bdls-nav__actions .bdls-btn {
	padding: 10px 20px;
	font-size: 0.88rem;
}

/* ---------- 4. Hero + AI widget + stats bar ---------- */
.bdls-hero {
	background: linear-gradient(100deg, #0b1c39 55%, #132b52 100%);
	position: relative;
	padding: 60px 0 0;
	background-size: cover;
	background-position: center;
}

.bdls-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 50px;
	align-items: center;
	padding-bottom: 50px;
}

.bdls-hero__heading {
	font-size: clamp(2rem, 4vw, 2.85rem);
	color: var(--bdls-white);
	margin-bottom: 20px;
}

.bdls-hero__heading-highlight {
	color: var(--bdls-gold);
}

.bdls-hero__subheading {
	color: var(--bdls-text-on-navy);
	font-size: 1.05rem;
	max-width: 540px;
	margin-bottom: 32px;
}

.bdls-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.bdls-hero__widget {
	justify-self: end;
	width: 100%;
	max-width: 400px;
}

.bdls-ai-widget {
	background: var(--bdls-white);
	border-radius: 14px;
	box-shadow: var(--bdls-shadow-lg);
	overflow: hidden;
}

.bdls-ai-widget__header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--bdls-border);
}

.bdls-ai-widget__avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--bdls-navy);
	color: var(--bdls-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.bdls-ai-widget__avatar .bdls-icon {
	width: 20px;
	height: 20px;
}

.bdls-ai-widget__title {
	flex: 1;
	font-size: 0.8rem;
	letter-spacing: 0.5px;
	color: var(--bdls-navy);
}

.bdls-ai-widget__status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.78rem;
	color: #2fa96b;
	font-weight: 600;
}

.bdls-ai-widget__status i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #2fa96b;
	display: inline-block;
}

.bdls-ai-widget__body {
	padding: 16px 18px 6px;
}

.bdls-ai-widget__greeting {
	background: var(--bdls-bg-muted);
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 0.88rem;
	color: var(--bdls-text);
	margin-bottom: 16px;
}

.bdls-ai-widget__quick-questions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 6px;
}

.bdls-ai-widget__question {
	text-align: left;
	background: var(--bdls-white);
	border: 1px solid var(--bdls-border);
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 0.85rem;
	color: var(--bdls-navy);
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.bdls-ai-widget__question:hover,
.bdls-ai-widget__question:focus-visible {
	border-color: var(--bdls-gold);
	background: #fdf8ef;
}

.bdls-ai-widget__form {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 18px;
	border-top: 1px solid var(--bdls-border);
}

.bdls-ai-widget__form input {
	flex: 1;
	border: 1px solid var(--bdls-border);
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 0.88rem;
}

.bdls-ai-widget__form input:focus {
	outline: none;
	border-color: var(--bdls-gold);
}

.bdls-ai-widget__form button {
	background: var(--bdls-navy);
	color: var(--bdls-gold);
	border: none;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.bdls-ai-widget__form button .bdls-icon {
	width: 16px;
	height: 16px;
}

.bdls-ai-widget__disclaimer {
	display: flex;
	gap: 6px;
	align-items: flex-start;
	font-size: 0.72rem;
	color: var(--bdls-text-muted);
	padding: 0 18px 16px;
	margin: 0;
}

.bdls-hero__stats {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 28px 0;
}

.bdls-hero__stats--light {
	border-top-color: var(--bdls-border);
	border-bottom: 1px solid var(--bdls-border);
}

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

.bdls-stat__icon {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(201, 150, 44, 0.15);
	color: var(--bdls-gold);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bdls-stat__icon .bdls-icon {
	width: 18px;
	height: 18px;
}

.bdls-stat__text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.bdls-stat__text strong {
	color: var(--bdls-white);
	font-size: 1.2rem;
	font-family: var(--bdls-font-serif);
}

.bdls-stat__text small {
	color: var(--bdls-text-on-navy);
	font-size: 0.78rem;
}

.bdls-hero__stats--light .bdls-stat__text strong {
	color: var(--bdls-navy);
}

.bdls-hero__stats--light .bdls-stat__text small {
	color: var(--bdls-text-muted);
}

/* ---------- 5. Practice areas ---------- */
.bdls-pa-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.bdls-pa-card {
	display: block;
	background: var(--bdls-white);
	border: 1px solid var(--bdls-border);
	border-radius: var(--bdls-radius);
	padding: 30px 24px;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bdls-pa-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--bdls-shadow);
	border-color: transparent;
}

.bdls-pa-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(201, 150, 44, 0.12);
	color: var(--bdls-gold);
	margin-bottom: 18px;
}

.bdls-pa-card__icon .bdls-icon {
	width: 26px;
	height: 26px;
}

.bdls-pa-card__image {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 18px;
}

.bdls-pa-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bdls-pa-card__title {
	font-size: 1.05rem;
	margin-bottom: 10px;
}

.bdls-pa-card__subtitle {
	color: var(--bdls-gold);
	font-weight: 600;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	margin: -6px 0 10px;
}

.bdls-pa-card__desc {
	color: var(--bdls-text-muted);
	font-size: 0.87rem;
	margin: 0;
}

/* ---------- 6. Lawyers carousel ---------- */
.bdls-carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

.bdls-carousel__track {
	display: flex;
	gap: 22px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding: 4px;
	flex: 1;
}

.bdls-carousel__track::-webkit-scrollbar {
	display: none;
}

.bdls-carousel__arrow {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--bdls-border);
	background: var(--bdls-white);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bdls-navy);
	box-shadow: var(--bdls-shadow);
}

.bdls-carousel__arrow:hover {
	background: var(--bdls-navy);
	color: var(--bdls-white);
}

.bdls-lawyer-card,
.bdls-lawyer-grid > * {
	scroll-snap-align: start;
}

.bdls-carousel .bdls-lawyer-card {
	flex: 0 0 calc((100% - 22px * 5) / 6);
	min-width: 180px;
}

.bdls-lawyer-card {
	background: var(--bdls-white);
	border: 1px solid var(--bdls-border);
	border-radius: var(--bdls-radius);
	overflow: hidden;
	text-align: center;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bdls-lawyer-card:hover {
	box-shadow: var(--bdls-shadow);
	transform: translateY(-3px);
}

.bdls-lawyer-card__photo {
	display: block;
	aspect-ratio: 4 / 4.6;
	background: var(--bdls-bg-muted);
	overflow: hidden;
}

.bdls-lawyer-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bdls-lawyer-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bdls-border);
}

.bdls-lawyer-card__placeholder .bdls-icon {
	width: 40%;
	height: 40%;
}

.bdls-lawyer-card__body {
	padding: 16px 12px 20px;
}

.bdls-lawyer-card__name {
	font-size: 0.95rem;
	margin-bottom: 4px;
	letter-spacing: 0.3px;
}

.bdls-lawyer-card__name a:hover {
	color: var(--bdls-gold);
}

.bdls-lawyer-card__position {
	font-weight: 600;
	color: var(--bdls-navy);
	font-size: 0.85rem;
	margin: 0 0 2px;
}

.bdls-lawyer-card__credentials {
	color: var(--bdls-text-muted);
	font-size: 0.8rem;
	margin: 0 0 12px;
}

.bdls-lawyer-card__links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.bdls-lawyer-card__links a {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--bdls-bg-muted);
	color: var(--bdls-navy);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bdls-lawyer-card__links a:hover {
	background: var(--bdls-navy);
	color: var(--bdls-gold);
}

.bdls-lawyer-card__links .bdls-icon {
	width: 15px;
	height: 15px;
}

.bdls-lawyer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

/* ---------- 7. Blog cards ---------- */
.bdls-blog-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.bdls-blog-card {
	background: var(--bdls-white);
	border: 1px solid var(--bdls-border);
	border-radius: var(--bdls-radius);
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.bdls-blog-card__thumb {
	position: relative;
	display: block;
	aspect-ratio: 3 / 2;
	background: var(--bdls-navy-light);
	overflow: hidden;
}

.bdls-blog-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bdls-blog-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.4);
}

.bdls-blog-card__placeholder .bdls-icon {
	width: 30%;
	height: 30%;
}

.bdls-blog-card__date {
	position: absolute;
	top: 10px;
	left: 10px;
	background: rgba(11, 28, 57, 0.85);
	color: var(--bdls-white);
	font-size: 0.68rem;
	padding: 4px 9px;
	border-radius: 20px;
}

.bdls-blog-card__tag {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--bdls-gold);
	color: var(--bdls-navy);
	font-size: 0.68rem;
	font-weight: 700;
	padding: 4px 9px;
	border-radius: 20px;
}

.bdls-blog-card__body {
	padding: 16px;
}

.bdls-blog-card__title {
	font-size: 0.96rem;
	margin-bottom: 10px;
	line-height: 1.4;
}

.bdls-blog-card__title a:hover {
	color: var(--bdls-gold);
}

.bdls-blog-card__meta {
	font-size: 0.78rem;
	color: var(--bdls-text-muted);
}

/* ---------- 8. Contact section & forms ---------- */
.bdls-contact-section {
	background: var(--bdls-navy);
	padding: 80px 0;
}

.bdls-contact-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 50px;
}

.bdls-contact-info h2 {
	color: var(--bdls-gold);
	font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.bdls-contact-info > p {
	color: var(--bdls-text-on-navy);
	max-width: 480px;
}

.bdls-contact-info__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 24px 0 32px;
}

.bdls-contact-info__list li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--bdls-text-on-navy);
	font-size: 0.92rem;
}

.bdls-contact-info__list .bdls-icon {
	color: var(--bdls-gold);
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.bdls-contact-info__list a:hover {
	color: var(--bdls-gold-light);
}

.bdls-hp-field {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.bdls-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 14px;
}

.bdls-form-field {
	margin-bottom: 14px;
}

.bdls-form-row .bdls-form-field {
	margin-bottom: 0;
}

.bdls-contact-form input,
.bdls-contact-form textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	padding: 13px 16px;
	color: var(--bdls-white);
	font-size: 0.92rem;
}

.bdls-contact-form input::placeholder,
.bdls-contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

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

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

.bdls-form-notice {
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 0.88rem;
	margin-bottom: 18px;
}

.bdls-form-notice--success {
	background: rgba(47, 169, 107, 0.15);
	color: #6bd6a1;
	border: 1px solid rgba(47, 169, 107, 0.4);
}

.bdls-form-notice--error {
	background: rgba(214, 69, 69, 0.15);
	color: #f0a3a3;
	border: 1px solid rgba(214, 69, 69, 0.4);
}

.bdls-contact-map h3 {
	color: var(--bdls-white);
	font-size: 1.2rem;
	margin-bottom: 16px;
}

.bdls-contact-map__frame {
	border-radius: var(--bdls-radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	margin-bottom: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- 9. Clients marquee ---------- */
.bdls-clients {
	padding: 50px 0;
	border-top: 1px solid var(--bdls-border);
}

.bdls-clients__heading {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-size: 0.8rem;
	color: var(--bdls-text-muted);
	font-weight: 700;
	margin-bottom: 30px;
}

.bdls-clients__marquee {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.bdls-clients__track {
	display: flex;
	align-items: center;
	gap: 60px;
	width: max-content;
	animation: bdls-marquee 32s linear infinite;
}

.bdls-clients__marquee:hover .bdls-clients__track {
	animation-play-state: paused;
}

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

.bdls-clients__logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	filter: grayscale(1) opacity(0.6);
	transition: filter 0.2s ease;
}

.bdls-clients__logo:hover {
	filter: grayscale(0) opacity(1);
}

.bdls-clients__logo img {
	max-height: 40px;
	width: auto;
}

.bdls-clients__logo span {
	font-weight: 700;
	color: var(--bdls-text-muted);
	white-space: nowrap;
}

/* ---------- 10. Footer ---------- */
.bdls-footer {
	background: #081426;
	color: var(--bdls-text-on-navy);
	padding-top: 60px;
}

.bdls-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
	gap: 32px;
	padding-bottom: 50px;
}

.bdls-footer__col h3 {
	color: var(--bdls-white);
	font-size: 1rem;
	margin-bottom: 18px;
}

.bdls-footer__col--about p {
	color: var(--bdls-text-on-navy);
	font-size: 0.9rem;
	margin: 16px 0 20px;
}

.bdls-footer__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bdls-footer__list a {
	color: var(--bdls-text-on-navy);
	font-size: 0.9rem;
}

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

.bdls-social {
	display: flex;
	gap: 10px;
}

.bdls-social__link {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bdls-text-on-navy);
}

.bdls-social__link:hover {
	background: var(--bdls-gold);
	color: var(--bdls-navy);
}

.bdls-social__link .bdls-icon {
	width: 16px;
	height: 16px;
}

.bdls-newsletter-form {
	display: flex;
	gap: 8px;
	margin-top: 8px;
}

.bdls-newsletter-form input {
	flex: 1;
	min-width: 0;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	padding: 11px 14px;
	color: var(--bdls-white);
	font-size: 0.85rem;
}

.bdls-newsletter-form button {
	background: var(--bdls-gold);
	color: var(--bdls-navy);
	border: none;
	width: 42px;
	border-radius: 8px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bdls-newsletter-form .bdls-icon {
	width: 16px;
	height: 16px;
}

.bdls-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
}

.bdls-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 0.82rem;
}

.bdls-footer__bottom-inner p {
	margin: 0;
}

.bdls-footer__legal {
	display: flex;
	gap: 20px;
}

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

/* ---------- 11. Inner pages ---------- */
.bdls-page-banner {
	background: linear-gradient(120deg, #0b1c39, #17335f);
	padding: 60px 0;
	text-align: center;
}

.bdls-page-banner h1 {
	color: var(--bdls-white);
	font-size: clamp(1.7rem, 3.4vw, 2.3rem);
	margin-bottom: 12px;
}

.bdls-breadcrumb {
	display: flex;
	justify-content: center;
	gap: 8px;
	color: var(--bdls-text-on-navy);
	font-size: 0.85rem;
}

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

.bdls-about-content {
	font-size: 1.02rem;
	color: var(--bdls-text);
}

.bdls-about-content h2,
.bdls-about-content h3 {
	margin-top: 1.4em;
}

.bdls-single-pa {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.bdls-single-pa__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(201, 150, 44, 0.12);
	color: var(--bdls-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.bdls-single-pa__icon .bdls-icon {
	width: 30px;
	height: 30px;
}

.bdls-single-pa__image {
	display: block;
	width: 100%;
	border-radius: var(--bdls-radius);
	overflow: hidden;
	margin-bottom: 24px;
}

.bdls-single-pa__image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.bdls-single-pa__subtitle {
	color: var(--bdls-gold);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.9rem;
	margin-top: -12px;
}

.bdls-single-pa__content {
	max-width: 100%;
}

.bdls-single-lawyer {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 48px;
	align-items: start;
}

.bdls-single-lawyer__photo {
	border-radius: var(--bdls-radius);
	overflow: hidden;
	aspect-ratio: 4 / 4.6;
	background: var(--bdls-bg-muted);
}

.bdls-single-lawyer__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bdls-single-lawyer__body .bdls-lawyer-card__position {
	font-size: 1.1rem;
}

.bdls-single-lawyer__body .bdls-lawyer-card__credentials {
	font-size: 0.95rem;
	margin-bottom: 20px;
}

.bdls-single-lawyer__expertise {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.bdls-single-lawyer__expertise li {
	background: rgba(201, 150, 44, 0.12);
	color: var(--bdls-navy);
	font-size: 0.82rem;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
}

.bdls-single-lawyer__contact {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.bdls-single-lawyer__bio {
	border-top: 1px solid var(--bdls-border);
	padding-top: 24px;
}

.bdls-pagination {
	margin-top: 50px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.bdls-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	border-radius: 8px;
	border: 1px solid var(--bdls-border);
	color: var(--bdls-navy);
	padding: 0 10px;
}

.bdls-pagination .page-numbers.current {
	background: var(--bdls-navy);
	color: var(--bdls-white);
	border-color: var(--bdls-navy);
}

.bdls-article__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	color: var(--bdls-text-muted);
	font-size: 0.88rem;
	margin-bottom: 20px;
}

.bdls-article__cat {
	color: var(--bdls-gold);
	font-weight: 600;
}

.bdls-article__thumb {
	border-radius: var(--bdls-radius);
	overflow: hidden;
	margin-bottom: 30px;
}

.bdls-article__content {
	font-size: 1.05rem;
}

.bdls-article__content > * + * {
	margin-top: 1.1em;
}

.bdls-404 {
	text-align: center;
	padding: 40px 0;
}

.bdls-404__icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	color: var(--bdls-gold);
	margin-bottom: 20px;
}

.bdls-404 p {
	color: var(--bdls-text-muted);
	max-width: 460px;
	margin: 0 auto 24px;
}

.bdls-404 .bdls-search-form {
	max-width: 420px;
	margin: 0 auto 28px;
}

.bdls-search-form {
	display: flex;
	border: 1px solid var(--bdls-border);
	border-radius: 8px;
	overflow: hidden;
}

.bdls-search-form input {
	flex: 1;
	border: none;
	padding: 12px 16px;
}

.bdls-search-form input:focus {
	outline: none;
}

.bdls-search-form button {
	background: var(--bdls-navy);
	color: var(--bdls-white);
	border: none;
	width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ---------- 12. Responsive ---------- */
@media (max-width: 1080px) {
	.bdls-pa-grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

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

	.bdls-carousel .bdls-lawyer-card {
		flex: 0 0 calc((100% - 22px * 3) / 4);
	}

	.bdls-footer__grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (max-width: 900px) {
	.bdls-hero__grid {
		grid-template-columns: 1fr;
	}

	.bdls-hero__widget {
		justify-self: stretch;
		max-width: 480px;
		margin: 0 auto;
	}

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

	.bdls-contact-grid {
		grid-template-columns: 1fr;
	}

	.bdls-single-lawyer {
		grid-template-columns: 1fr;
	}

	.bdls-single-lawyer__photo {
		max-width: 320px;
	}
}

@media (max-width: 782px) {
	.bdls-topbar__inner {
		font-size: 0.78rem;
	}

	.bdls-nav__toggle {
		display: flex;
	}

	.bdls-nav__actions--desktop {
		display: none;
	}

	.bdls-nav__actions--mobile {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		margin-top: 20px;
	}

	.bdls-nav__menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bdls-navy);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s ease;
		box-shadow: var(--bdls-shadow-lg);
	}

	.bdls-nav__menu.is-open {
		max-height: 640px;
		overflow-y: auto;
	}

	.bdls-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px 24px;
	}

	.bdls-menu > li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.bdls-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: rgba(255, 255, 255, 0.04);
		display: none;
	}

	.bdls-menu li.is-open > .sub-menu {
		display: block;
	}

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

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

	.bdls-carousel .bdls-lawyer-card {
		flex: 0 0 calc((100% - 22px * 2) / 3);
	}

	.bdls-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.bdls-section {
		padding: 56px 0;
	}

	.bdls-pa-grid,
	.bdls-lawyer-grid,
	.bdls-blog-grid {
		grid-template-columns: 1fr;
	}

	.bdls-carousel .bdls-lawyer-card {
		flex: 0 0 calc(100% - 60px);
	}

	.bdls-hero__stats {
		grid-template-columns: 1fr;
	}

	.bdls-form-row {
		grid-template-columns: 1fr;
	}

	.bdls-footer__grid {
		grid-template-columns: 1fr;
	}

	.bdls-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.bdls-section__heading--split {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}
