/* ============================================================
   GLOBAL — SWL Injury Lawyers
   Common · Helpers · Header · Footer · WordPress
   ============================================================ */

/* ---------- COMMON: variables ---------- */
:root {
    /* Fonts (Gilroy substituted with Manrope; Roboto for body) */
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Brand navy (surfaces, hero, footer) */
    --color-navy: #0b1429;         /* primary dark navy (hero, dark sections) */
    --color-dark: #080b15;         /* darkest (stats, footer) */
    --color-db: #0D1830;
    --color-navy-2: #16233a;       /* heading text on light */
    --color-navy-card: #101c3a;    /* cards on dark sections */
    --color-white: #fff; 

    /* Blue accent (hero glow, CTA gradient) */
    --color-blue: #0487d9;
    --color-blue-2: #1c47a6;

    /* Gold */
    --color-gold: #d9a526;         /* solid gold (buttons, eyebrows) */
    --color-gold-light: #f0c14b;   /* light gold — gradient start */
    --color-gold-dark: #b98604;    /* gradient end */

    /* Text */
    --color-cream: #f5f2ec;        /* headings on dark */
    --color-body: #55607a;         /* paragraphs on light */
    --color-muted: #8593b0;        /* paragraphs on dark */
    --color-light: #ffffff;

        /* Surfaces */
    --color-surface: #f6f7f9;      /* light section bg */
    --color-border: #e6e8ee;
    --color-border-dark: rgba(255,255,255,.12);

    /* Icons */
    --icon-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.14979 9.49268L8.86953 3.50561M8.50319 9.85902L8.86953 3.50561L2.51612 3.13928' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ---------- COMMON: reset + base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 140px; }
body {
    font-family: var(--font-body);
    color: var(--color-navy-2);
    background: var(--color-light);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--color-navy-2);
    line-height: 1.15;
    margin: 0 0 .5em;
}
h1 { font-size: 74px; letter-spacing: -1.48px; }
h2 { font-size: 52px; letter-spacing: -1px; }
h3 { font-size: 30px; }
h4 { font-size: 22px; }
h5 { font-size: 20px; }
h6 { font-size: 15px; text-transform: uppercase; letter-spacing: 1px; }
p { margin: 0 0 1em; }
strong, b { font-weight: 700; }
em, i { font-style: italic; }

/* ---------- HELPERS ---------- */
.container { max-width: 1600px; margin: auto; padding: 0 30px; }

.wrap { display: flex; justify-content: space-between; align-items: center; }
.wrap-top    { align-items: flex-start; }
.wrap-column { flex-direction: column; }
.wrap-wrap   { flex-wrap: wrap; }
.wrap-center { justify-content: center; }

/* Section eyebrow — small icon dot + uppercase gold label */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.faq-section .section-eyebrow{text-transform: capitalize;}
/* Section head (eyebrow + title) */
.section-head h2 { color: var(--color-navy-2); margin: 16px 0 0; }
.section-head.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-head.on-dark h2 { color: var(--color-light); }

/* Gradient text helper (for "We Win", accent words) */
.grad-text {
    background: linear-gradient(98deg, var(--color-gold-light), var(--color-gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.16px;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    padding: 10px 20px;
}
.btn-primary { background: var(--color-gold); color: var(--color-light); }
.btn-primary:hover { background: var(--color-gold-dark); }
.btn-primary .btn-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; background: var(--color-light);
    border-radius: 3px; flex: 0 0 auto;
}
.btn-primary .btn-icon::before {
    content: ""; width: 12px; height: 12px; background: var(--color-gold);
    -webkit-mask: var(--icon-arrow) center / contain no-repeat;
            mask: var(--icon-arrow) center / contain no-repeat;
}
/* inline arrow (no box) — outline buttons; inherits text color */
.btn-arrow {
    display: inline-block; width: 12px; height: 12px; background: currentColor;
    -webkit-mask: var(--icon-arrow) center / contain no-repeat;
            mask: var(--icon-arrow) center / contain no-repeat;
}
.btn-outline { background: transparent; color: var(--color-navy-2); border: 1px solid var(--color-border); }
.btn-outline:hover { border-color: var(--color-gold); color: var(--color-gold); }
.btn-outline-light { background: transparent; color: var(--color-light); border: 1px solid var(--color-border-dark); }
.btn-outline-light:hover { border-color: var(--color-gold); color: var(--color-gold); }

.btn:focus-visible, a:focus-visible, button:focus-visible {
    outline: 2px solid var(--color-gold); outline-offset: 3px;
}

/* Icon image sizing inside tiles / rows */
.pc-icon img { width: 28px; height: 28px; }
.wc-icon img { width: 26px; height: 26px; }
.hero-form-badge img { width: 24px; height: 24px; }
.lang-ico { width: 14px; height: 14px; }
.footer-visit .ico img { width: 18px; height: 18px; display: block; }
.footer-social a img { width: 16px; height: 16px; }
.team-info .tm-link img { width: 15px; height: 15px; }

/* Star rating */
.stars { color: var(--color-gold); letter-spacing: 2px; }

/* Pill tag */
.pc-tag {
    display: inline-block;
    border: 1px solid var(--color-border);
    color: var(--color-body);
    font-family: var(--font-body);
    font-size: 13px;
    padding: 6px 13px;
    border-radius: 999px;
}

/* ============================================================
   HEADER
   ============================================================ */
.yellow {color: var(--color-gold);}
.header-topbar { background: var(--color-dark); color: var(--color-white); }
.header-topbar .container { min-height: 45px; }
.header-topbar .wrap { min-height: 45px; display: grid; grid-template-columns: 1fr auto 1fr; }
.topbar-left { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.topbar-left .sep { color: var(--color-gold); }
.topbar-lang {text-align: right;}
.gtranslate-btn {display: inline-block;}
.topbar-lang a.glink {
	border-radius: 20px;
	padding: 2px 10px;
	font-size: 13px;
	color: var(--color-gold-light);
	border: 1px solid rgba(212, 175, 55, 0.40);
	justify-content: center;
}
.topbar-lang:hover { color: var(--color-gold); }

.header-main {
    position: sticky; top: 0; z-index: 60;
    background: var(--color-light);
    border-bottom: 1px solid #ededed;
    overflow: visible;
    transition: box-shadow .25s ease;
}
.header-main.is-scrolled { box-shadow: 0 8px 30px rgba(16,30,55,.10); }
.header-main .wrap { position: relative; min-height: 94px; gap: 24px;}
@media(min-width:1201px){
    .header-main .wrap { display: grid; grid-template-columns: 1fr auto 1fr;}
}
.cta-card {
	display: flex;
	align-items: center;
	gap: 8px;
	border-radius: 32px;
	padding: 4px 10px;
	margin: 8px 0;
	box-shadow: 0 0 2px rgba(224, 169, 27, 0.7), 0 0 10px rgba(224, 169, 27, 0.45);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
	font-size: 15px;
    font-family: var(--font-display);
    border: 1px solid var(--color-border-dark);
}
.cta-phone {
	display: flex;
	align-items: center;
	gap: 5px;
}
.cta-card svg path {
	stroke: var(--color-gold);
	fill: var(--color-dark);
}
.cta-card:hover {
	box-shadow:
		0 0 10px rgba(224, 169, 27, 0.9),
		0 0 2px rgba(224, 169, 27, 0.65);
	transform: translateY(-1px);
}
.cta-card .sep{margin-top: -2px;}

/* center logo in a white notch that dips below the bar */
.header-logo {
    position: absolute; left: 50%; top: 0; transform: translateX(-50%);
    height: 100%; width: 225px;
    display: flex; align-items: center; justify-content: center; z-index: 2;
}
.header-logo::before {
    content: ""; position: absolute; left: 0; top: 0; width: 100%; height: calc(100% + 30px);
    background: var(--color-light); z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 68%, 84% 100%, 16% 100%, 0 68%);
    filter: drop-shadow(0 9px 8px rgba(16,30,55,.05));
}
.header-logo img { height: 90px; width: auto; position: relative; }

.custom-logo-link.brand {
	background: transparent url(../icons/swl-logo-shade.svg);
	margin-bottom: -31px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center bottom;
	padding-bottom: 20px;
}

.header-nav .menu { display: flex; align-items: center; gap: 50px; }
.translated-ltr .header-nav .menu {gap: 33px;}
.header-nav .menu > li > a {
    color: #4f5860;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .5px;
    text-transform: uppercase;
    display: inline-flex; align-items: center;
}
.translatepress-es_ES .header-nav .menu > li > a { font-size: 12px; }
.translated-ltr .header-nav .menu > li > a {font-size: 14px;}
.header-nav .menu > li > a:hover { color: var(--color-gold); }
.header-nav.nav-left  { flex: 0 1 auto; }
.header-nav.nav-right { flex: 0 1 auto; }

.header-right { display: flex; align-items: center; gap: 40px; justify-content: right;}
.header-actions { display: flex; align-items: center; gap: 18px; }
.gtranslate-btn a.glink {
	text-decoration: none;
	display: block;
	background: url(../icons/globe.svg);
	background-repeat: no-repeat;
	background-position: 7px center;
	padding-left: 27px;
}
.gtranslate-btn a.glink:hover {
	background-color: var(--color-navy-2);
	border-color: var(--color-navy-2);
}
/* dropdown */
.header-nav .menu-item { position: relative; }
.header-nav .menu-item-has-children > a::after {
    content: ""; display: inline-block; width: 0; height: 0;
    border-left: 4px solid transparent; border-right: 4px solid transparent;
    border-top: 5px solid currentColor; margin-left: 7px; transition: transform .2s ease;
}
.header-nav .sub-menu {
    position: absolute; top: 100%; left: 0; min-width: 230px;
    background: var(--color-light); border-top: 3px solid var(--color-gold);
    border-radius: 0 0 10px 10px; box-shadow: 0 30px 60px -28px rgba(16,30,55,.4);
    padding: 10px 0; opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(10px); transition: opacity .2s ease, transform .2s ease; z-index: 70;
}
.header-nav .menu-item:hover > .sub-menu,
.header-nav .menu-item:focus-within > .sub-menu {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.header-nav .sub-menu a {
    display: block; padding: 10px 22px; font-size: 15px; color: var(--color-body); white-space: nowrap;
}
.header-nav .sub-menu a:hover, .header-nav .sub-menu .current-menu-item a{ color: var(--color-gold); background: var(--color-surface); }
.header-nav .menu > .menu-item-has-children:hover > a::after,.header-nav .menu > .menu-item-has-children.submenu-open > a::after{ transform: rotate(180deg); }

/* mobile toggle */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px; width: 30px;
    background: none; border: none; cursor: pointer;
}
.nav-toggle span { height: 2px; width: 100%; background: var(--color-navy-2); transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sec-banner{
    padding: 120px 0;
    background: radial-gradient(50.68% 60.08% at 78.93% 50%, rgba(4, 135, 217, 0.2) 0%, rgba(4, 135, 217, 0) 60%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */, #0B1429;
}
.rank-math-breadcrumb p{
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: #8B96B6;
    transition: all .3s;
}
.rank-math-breadcrumb p .last {
    font-weight: 600;
    color: #E8C873;
}
.rank-math-breadcrumb p a:hover{
    color: #E8C873;
}
.banner-left{max-width: 850px;}
.banner-left h1,.banner-left .title{
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 74px;
    line-height: 82px;
    letter-spacing: -1.48px;
    color: #FFFFFF;
    margin: 0;
    padding: 15px 0 0;
}
.banner-left h3{
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    margin: 15px 0 0 3px;
    
}
.single-post .banner-left h1{font-size: 50px; line-height: normal; font-weight: 600;}
.sp-thumbnail { margin-bottom: 30px;}
.sp-thumbnail img { border-radius: 10px;}
.sp-meta { margin-bottom: 15px; display: flex; align-items: center;flex-wrap: wrap; gap: 10px;}
.sp-meta > span:not(:last-child)::after { content: "|"; margin-left: 10px; color: #d3cdcd;}
.sp-category a{transition: all .3s ease;}
.sp-category a:hover{color: var(--color-gold);}
.cs-more-btn { margin: 20px auto 15px;}
.banner-right p, .banner-social a{
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    color: #A6B0C8;
    margin: 0;
}
.banner-social a{
    font-weight: 600;
    transition: all .3s ease;
}
.banner-social a:hover{
    color: var(--color-gold);
}
.banner-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}
.sec-single-pa, .sec-about-us, .sec-general-content, .sec-staff-single, .sec-general{
    padding: 70px 0;
}
.sec-general-content .container {
    max-width: 1300px;
}
.on-this-page h3{
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 1.47px;
    color: #D9A526;
    text-transform: uppercase;
    margin-bottom: 0;
}
.on-this-page ul{margin-top: 20px;}
.on-this-page ul li{
    margin: 15px 0;
    padding-left: 15px;
    border-left: 2px solid #EEE6D0;
}
.on-this-page ul li a{
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: #3A4258;
    transition: all 0.3s ease;
    padding: 5px 0 0 0;
}
.on-this-page ul li a:hover, .on-this-page ul li a.active{ color: #D9A526;}
.sp-content h1, .sp-content h2{
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: #0D1830;
}
.sp-content h3 {
    font-size: 25px;
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    color: #0D1830;
}
.sp-content a{color: var(--color-gold); transition: all .3s ease;}
.sp-content a:hover{color: var(--color-gold-dark);}
.sp-content p{
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15.5px;
    line-height: 28px;
    color: #3A3D4D;
}
.sp-content:not(:first-child){margin-top: 30px;}
.banner-right{max-width: 500px;}
.sp-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border: 1px solid #ddd;
}

.sp-content th,
.sp-content td {
    padding: 14px 18px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.sp-content th {
    background: #f5f7fa;
    font-weight: 700;
    color: #222;
}

.sp-content tr:nth-child(even) {
    background: #fafafa;
}

.sp-content tr:hover {
    background: #f1f5f9;
}

.sp-content table b {
    font-weight: 700;
}

.sp-content table p {
    margin: 0;
}

.sp-form{
    width: 100%;
    background: #0D1830;
    border-radius: 24px;
}
.sp-form .gform_wrapper{
    padding: 0 40px 35px;
}
.sp-form-head{
    padding: 35px 40px 0;
    display: flex;
    flex-direction: column;

}
.sp-form-head h3{
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    order: 1;
}
.sp-form-head h4{
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 12.5px;
    line-height: 15px;
    letter-spacing: 1.75px;
    color: #9FB0D1;
    text-transform: uppercase;
    margin: 25px 0 18px;
    order: 3;
}
.form-head-call{
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    width: fit-content;
    line-height: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    transition: all .3s ease;
    order: 2;
}
.sp-form-head a:hover{
    color: #0487D9;
}
.sp-form .gf_progressbar_title{
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13.5px;
    line-height: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}
.sp-form .gform-theme--framework .gf_progressbar{
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 4px;
}
.sp-form .gform-theme--framework .gf_progressbar .percentbar_blue{
    height: 5px;
    background: linear-gradient(90deg, #0487D9 0%, #5FC4EF 100%);
    border-radius: 4px;
}
.sp-form .gform-theme--framework .gform-field-label{
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    margin-bottom: 10px;
}
.sp-form .ginput_container_select select,.sp-form .ginput_container_textarea textarea, .sp-form .gform_page_fields input:is(
    input:not([type="hidden"]),
    input:not([type="checkbox"]),
    textarea
) {
    width: 100% !important;
    height: 44px !important;
    background: #FFFFFF !important;
    border-radius: 10px !important;
    border: 1px solid transparent;
    outline: none !important;
}
.sp-form .ginput_container_textarea{min-block-size: 200px !important;}
.sp-form .ginput_container_select select,.sp-form .ginput_container_textarea textarea, .sp-form .gform_page_fields input:is(
    input:not([type="hidden"]),
    input:not([type="checkbox"]),
    textarea
)::placeholder {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
    color: #757575;
}
.sp-form .ginput_container_select select:foucs,  .sp-form .ginput_container_textarea textarea:focus, .sp-form .gform_page_fields input:is(
    input:not([type="hidden"]),
    input:not([type="button"]),
    textarea
):focus {
    border-color: #0487D9;
}
.sp-form .gform_previous_button{border-color: transparent !important;}
.sp-form .gform-theme--foundation .gform_fields{
    row-gap: 15px !important;
}
.sp-form .gform_next_button, .sp-form .gform_previous_button, #gform_submit_button_3 {
    display: flex !important;
    position: relative !important;
    justify-content: center !important;
    align-items: center !important;
    font-family: var(--font-display) !important;
    gap: 8px !important;
    width: 100% !important;
    height: 50px !important;
    border-radius: 10px !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 19px !important;
    text-align: center !important;
    color: #FFFFFF !important;
    transition: all .3s ease !important;
}
.sp-form .gform_next_button:focus, .sp-form .gform_previous_button:focus, #gform_submit_button_3:focus{
    outline: none !important;
}
#gform_submit_button_3{background: #0487D9!important ;}
.sp-form .gform_next_button:hover, .sp-form .gform_previous_button:hover{
    background-color: #0487d9cc !important;
    }
.sp-form .gform_previous_button {
    background: #0487D9 url("../icons/previous-arrow.svg")
        calc(50% - 45px) calc(50% + 1px) no-repeat !important;
        padding: 15px 15px 15px 15px !important;
}

.sp-form .gform_next_button {
    background: #0487D9 url("../icons/next-arrow.svg")
        calc(50% + 15px) calc(50% + 1px) no-repeat !important;
        padding: 15px 45px 15px 15px !important;
}

.sp-form .ginput_container_checkbox .gchoice .gfield-choice-input {
    width: 20px !important;
    height: 20px !important;
    border-radius: 4px !important;
}
.sp-casestudies{
    width: 100%;
    background: #FFFDF8;
    border: 1px solid #E7DDC8;
    padding: 20px 20px 10px;
    border-radius: 16px;
    margin-top: 50px;
}
.cs-head h3,.sp-casestudies .wp-block-heading{
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 28px;
    color: #0D1830;
}
.cs-head p,.sp-casestudies .wp-block-paragraph{
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: #B8881F;
}
.cs-amount{
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    line-height: 19px;
    color: #DAA520;
}
.cs-type{
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    text-align: right;
    color: #5B6472;
}
.cs-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F0EAD9;
    padding: 15px 0 10px;
}
.cs-item:first-child{padding: 10px 0 10px;}
.cs-item:last-child{border-bottom: none; padding: 15px 0 5px;}
.sp-wrap {
    display: grid;
    grid-template-columns: 196px 1fr 405px;
    column-gap: 70px;
}

.sp-content ul, .sp-content ol {
    list-style: disc;
    margin: 0 0 10px 50px;
}

.liabilites-items, .help-steps{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.litems{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 30px;
    min-height: 208px;
    background: linear-gradient(118.4deg, #FEFBF4 12.69%, #F6F2E8 67.55%);
    border-radius: 14px;
}
.litems .licon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: #FFF6E0;
    border-radius: 10px;
}
.litems h3{
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #0D1830;
    margin: 10px 0 10px 0;
}
.litems p{
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 13.5px;
    line-height: 22px;
    color: #5B6472;
    margin-bottom: 0;
}
.tips-text{
    padding: 35px 40px; 
    background: linear-gradient(94.53deg, #057FCC -17.59%, #0A1C35 103.75%);
    border-radius: 20px;
}
.tips-text h3{
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 34px;
    color: #FFFFFF;
    margin-bottom: 7px;
}
.tips-text p{
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 0;
}
.help-steps > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
}
.help-step{
    padding: 20px;
    border: 1px solid #EEE6D0;
    border-radius: 14px;
}
.help-step h3{
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    color: #0D1830;
}
.help-step p{
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #5B6472;
    margin-bottom: 0;
}
.highlighted-list ul li{
    position: relative;
    padding: 20px 15px 20px 50px;
    background: #FFF6E0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: #2C3245;
}
.highlighted-list ul li:not(:first-child){
    margin-top: 10px;
}
.highlighted-list ul li::before{
    content: "";
    background: url(../icons/h-tick.svg);
    position: absolute;
    left: 20px;
    width: 22px;
    height: 22px;
    top: 15px;
}
.inner-cta-content h2{
    font-family: var(--font-display);
    text-align: center;
    font-style: normal;
    font-weight: 600;
    font-size: 27px;
    line-height: 33px;
    color: #FFFFFF;
    margin: 8px 0 20px;
}
.inner-cta-content p{
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14.5px;
    line-height: 25px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #DCE6F5;
}
.inner-cta .cta-buttons{margin-top: 10px;}
.inner-cta{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(105.82deg, #0487D9 0%, #0A1C35 78%);
    border-radius: 20px;
    padding: 40px 35px;
}
.ol-serial{
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.6;
    color: #0487D9;
}
.ol-text{
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    color: #2C3245;
}
.no-win-no-fee{
    padding: 30px 25px;
    background: #0D1830;
    border-radius: 16px;
}
.nwnf-badge{
    padding: 5px 12px;
    background: rgba(218, 165, 32, 0.16);
    border: 1px solid rgba(218, 165, 32, 0.4);
    border-radius: 100px;
    font-family: var(--font-display);
    font-style: italic;
    width: fit-content;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1px;
    color: #F0D488;
    margin-bottom: 13px;
}
.nwnf-content p{
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 27px;
    color: #C9D2E8;
}
.ol-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 10px 0;
}
.ol-item:not(:first-child){
    border-top: 1px solid #EEE6D0;
}
.partents-logos h2 {
    margin: 20px 0 30px;
}
.tl-contact {
    margin-top: 20px;
    background: var(--color-navy-card);
    border-radius: 18px;
    padding: 100px 40px;
    gap: 50px;
}
.steps-section {
    padding-top: 70px;
}
.steps-section .sml-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
.steps-section .sml-item:not(:last-child) {
    border-bottom: 0;
}
.steps-section h2 + p { max-width: 930px;}


.contact-us .hero-form {
    flex: 0 0 50%; max-width: 50%;
}
.hero-form .gform-theme--foundation .gform_fields{
    row-gap: 15px !important;
}
.hero-form .gform-theme--foundation .gfield textarea.medium {
    min-block-size: 9rem;
}

.hero-form {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold-dark) transparent;
}

.hero-form::-webkit-scrollbar {
    width: 4px;
}

.hero-form::-webkit-scrollbar-track {
    background: transparent;
}

.hero-form::-webkit-scrollbar-thumb {
    background-color: var(--color-gold-dark);
    border-radius: 24px !important;
    border-top: 30px solid transparent !important;
    border-bottom: 30px solid transparent !important;
    background-clip: padding-box !important;
}

.hero-form::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-gold-dark);
}

.hero-form .gform_wrapper .gform-loader {
    position: absolute;
    right: 20%;
}
.hero-form .gfield_error input, .hero-form .gfield_error select, .hero-form .gfield_error textarea {
    border: 1px solid #f00 !important;
}
.hero-form .gform-theme--framework .gform_validation_errors:focus {outline: none!important;}
.hero-form .gform-theme--framework .gform_validation_errors {
    background-color: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    gap: 0 !important;
    margin-block: 0 !important;
    padding-block: 0 !important;
    padding-inline: 0 !important;
}
.hero-form .validation_message {display: none !important;}
.sec-contact-form, .sec-map{
    padding: 70px 0;
}
.sec-map { padding: 0;}
.smr-map iframe{border-radius: 18px; border-radius: 0;}
.sec-contact-form{
    background: #F5F2EC;
}
.scf-content, .sm-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
}
.scf-content > *, .sm-content > *{ width: 50%;}
.scf-left h2, .sm-left h2, .partents-logos h2{
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: #0D1830;
}
.scf-item a{
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 38px;
    color: #fff;
    transition: all .3s ease;
}
.scf-item a:hover{
    color: #D9A526;
}
.scf-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff !important;
    stroke: #fff !important;
}
.scf-item {
	padding: 30px 15px;
	border-radius: 24px;
	background: #142347;
	text-align: center;
	display: flex;
	align-items: center;
	gap: 5px;
	flex-direction: column;
	justify-content: center;
}
.scf-items {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 0;
}
.scf-icon {
	border: 1px solid #d9a526;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	line-height: 79px;
	background: #d9a526;
}
.sm-left p{
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15.5px;
    line-height: 28px;
    color: #3A3D4D;
    margin-bottom: 0;
}
.sml-item h3 {
    font-size: 25px;
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    color: #0D1830;
    margin: 15px 0 14px;
}
.sml-icon {
    display: flex;
    align-items: flex-end;
    gap: 5px;
}
.sml-icon svg{width: 30px; height: 30px;}
.sml-icon h4{
    font-size: 20px;
    margin-bottom: 0;
}
.sml-items {
    border: 1px solid #EAE5DA;
    border-radius: 18px;
    background: linear-gradient(180deg, #FFF 0%, #FBF9F4 95.94%);
    transition: box-shadow .25s ease, transform .25s ease;
    margin-top: 40px;
}
.sml-item {
    padding: 30px;
}
.sml-item:not(:last-child) {
    border-bottom: 1px solid #EAE5DA;
}

.sec-blogs {
    padding: 70px 0;
}
.sb-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-content: flex-start;
    gap: 25px;
}
.article-content h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.3;
    color: #0D1830;
    margin: 20px 0 15px;
    transition: all .3s ease;
}
.article-content h2:hover {
    color: #d9a526;
}
.article-card  figure {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding-bottom: 60%;
}
.article-card  figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-card {
    box-shadow: 0 5px 16px 0 rgb(81 133 129 / 14%);
    padding: 20px 15px;
    border-radius: 10px;
    align-self: start;
}
.read-more {
    background: #d9a526;
    padding: 8px 14px;
    color: #fff;
    border-radius: 4px;
    transition: all .3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}
.read-more:hover{
    background: var(--color-gold-dark);
}
 .sec-about-us .sp-wrap, .sec-general .sp-wrap{
    grid-template-columns: 1fr 405px;
    gap: 30px;
}
.sp-middle .partents-logos{margin-top: 25px; justify-content: space-between;}
 .sec-staff-single .sp-thumbnail {
    max-width: 500px;
    margin: 0 auto 30px;
}

.banner-tel, .banner-fax, .banner-email {
    position: relative;
    padding-left: 35px;
}
.banner-tel::before, .banner-fax::before, .banner-email::before{
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    left: 0;
    top: 0px;
    background-image: url("../icons/banner-phone.svg");
    background-position: center center;
    background-size: 15px;
    background-repeat: no-repeat;
    border: 1px solid var(--color-gold);
    border-radius: 15px;
    padding: 1px;
    background-color: var(--color-dark);
}
.banner-social br {
    display: none;
}
.banner-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.banner-fax::before{
    background-image: url("../icons/banner-fax.svg");
}
.banner-email::before{
    background-image: url("../icons/banner-mail.svg");
}

.blog-pagination {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 15px;
}
.blog-pagination .screen-reader-text{display: none;}
.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 10px;
}
.blog-pagination .nav-links > * {
    background: #d9a526;
    transition: all .3s ease;
    padding: 6px 15px;
    border-radius: 4px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-pagination .nav-links > *:hover, .blog-pagination .nav-links > *.current {
    background: var(--color-gold-dark);
}
.blog-pagination .next svg {
    transform: rotate(45deg);
}
.blog-pagination .prev svg {
    transform: rotate(-140deg);
}
.author-box {
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 5px 16px 0 rgb(81 133 129 / 14%);
    padding: 20px 15px;
    border-radius: 10px;
}
.author-box-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-top: 1px solid rgb(81 133 129 / 14%);
    padding-top: 20px;
}
.author-avatar{
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    height: 165px;
    width: 165px;
    /* max-width: 165px;
    flex: 0 0 165px; */
}
.author-avatar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.author-details{
    width: calc(100% - 185px);
}
.author-bio {
    margin-bottom: 0;
}
.author-name {
    color: var(--color-gold-dark);
    margin-bottom: 6px;
    font-weight: 800;
}
.author-name:hover {
    transition: all .3s ease;
    color: #0D1830;
}
.author-bio a {
    background: var(--color-gold);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all .3s ease;
}
.author-bio a:hover{background: var(--color-gold-dark);}
.author-box h3 {
    font-size: 20px;
    margin: 0 0 15px;
}
.sec-reviews{
    background: var(--color-light);
    padding: 120px 0;
}
.practice-card .btn-primary {margin-top: 20px;}
.locations-template .results-section, .page-template-pa-archive .results-section {background: #F5F2EC;}
.swl-thank-you {
    max-width: 720px;
    margin: 80px auto;
    padding: 60px 50px;
    background: #fff;
    border: 1px solid rgba(217,165,38,.2);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
}

.swl-thank-you::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(
        90deg,
        var(--color-gold-light),
        var(--color-gold),
        var(--color-gold-dark)
    );
}

.thank-you-icon{
    width:90px;
    height:90px;
    margin:0 auto 30px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(
        135deg,
        var(--color-gold-light),
        var(--color-gold-dark)
    );
    box-shadow:0 15px 35px rgba(217,165,38,.35);
}

.swl-thank-you h2{
    margin:0;
    font-size:42px;
    font-weight:700;
    color:#0c2340;
    line-height:1.2;
}

.swl-thank-you h3{
    margin:10px 0 24px;
    font-size:24px;
    font-weight:600;
    color:var(--color-gold-dark);
    position:relative;
    display:inline-block;
}

.swl-thank-you h3::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    margin:12px auto 0;
    border-radius:10px;
    background:linear-gradient(
        90deg,
        var(--color-gold-light),
        var(--color-gold-dark)
    );
}

.swl-thank-you p{
    max-width:560px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    color:#666;
}
.iframe-res {
    position: relative;
    padding-bottom: 65%;
    margin-bottom: 20px;
}
.iframe-res iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media (max-width: 1200px) {
    .nav-toggle { display: flex; }
    .header-logo { position: static; transform: none; width: auto; }
    .header-logo::before { display: none; }
    .header-logo img { height: 64px; }
    .header-nav.nav-left {
        position: absolute; top: 100%; left: 0; right: 0; flex: none;
        background: var(--color-light); border-top: 1px solid #ededed;
        box-shadow: 0 20px 40px -20px rgba(16,30,55,.25);
        max-height: 0; overflow: hidden; transition: max-height .35s ease;
    }
    .header-nav.nav-left.is-open { max-height: 80vh; overflow-y: auto; }
    .header-nav .menu { flex-direction: column; align-items: stretch; gap: 0; }
    .header-nav .menu > li { border-bottom: 1px solid #ededed; }
    .header-nav .menu > li > a { padding: 15px 30px; justify-content: space-between; }
    .header-nav .sub-menu {
        position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none;
        max-height: 0; overflow: hidden; background: var(--color-surface); border: none;
        border-radius: 0; box-shadow: none; padding: 0; transition: max-height .3s ease;
    }
    .header-nav .submenu-open > .sub-menu { max-height: 800px; }
    .header-right .nav-right { display: none; }

}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
	background: var(--color-db) url(../img/swl-king.png);
	color: var(--color-muted);
	padding-top: 88px;
	position: relative;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 450px;
}
.footer-visit li{padding-left: 24px; margin-bottom: 14px;}
.addrs {
	background-image: url(../icons/icon-loc.svg);
	background-repeat: no-repeat;
	background-position: 0 4px;
}
.opt-time {
	background-image: url(../icons/icon-timer.svg);
	background-repeat: no-repeat;
	background-position: 0 4px;
}
.cta-no {
	background-image: url(../icons/icon-tel.svg);
	background-repeat: no-repeat;
	background-position: 0 7px;
}
.footer-legal {
	display: flex;
	gap: 10px;
}
.footer-top { display: grid; grid-template-columns: 3fr 1.1fr 1.1fr 1fr; gap: 50px; }
.footer-brand img { height: 49px; width: auto; margin-bottom: 26px; }
.footer-brand p { font-size: 15px; line-height: 1.7; max-width: 525px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--color-border-dark);
    display: inline-flex; align-items: center; justify-content: center; color: var(--color-muted); font-size: 15px;
}
.footer-social a:hover { border-color: var(--color-gold); color: var(--color-gold); }
.footer-col h4, .footer-col h3 { color: var(--color-light); font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 22px; }
.footer-col a { display: block; font-size: 15px; line-height: 2.1; color: var(--color-muted); }
.footer-col a:hover { color: var(--color-gold); }
.footer-visit .visit-row { display: flex; gap: 12px; margin-bottom: 16px; font-size: 15px; line-height: 1.5; }
.footer-visit .visit-row .ico { color: var(--color-gold); flex: 0 0 auto; }

.footer-bottom { border-top: 1px solid var(--color-border-dark); margin-top: 60px; padding: 26px 0; }
.footer-bottom .wrap { gap: 20px; flex-wrap: wrap; }
.footer-bottom .fb-links { display: flex; gap: 24px; }
.footer-bottom, .footer-bottom a { font-size: 13px; color: var(--color-muted); }
.footer-bottom a:hover { color: var(--color-gold); }
.footer-bottom p{margin: 0;}

@media (max-width: 1000px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom .wrap { flex-direction: column; align-items: center; }
}

/* ============================================================
   WORDPRESS EDITOR + HELPERS
   ============================================================ */
.entry-content { font-size: 18px; line-height: 1.8; color: var(--color-body); }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4 { color: var(--color-navy-2); margin: 1.4em 0 .5em; }
.entry-content p { margin: 0 0 1.3em; }
.entry-content a { color: var(--color-gold); text-decoration: underline; }
.entry-content ul, .entry-content ol { margin: 0 0 1.3em 1.4em; }
.entry-content ul { list-style: disc; } .entry-content ol { list-style: decimal; }
.entry-content blockquote { margin: 1.4em 0; padding: 18px 26px; border-left: 4px solid var(--color-gold); background: var(--color-surface); font-style: italic; }
.entry-content img { border-radius: 8px; margin: 12px 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; }
.entry-content th, .entry-content td { padding: 12px 16px; border: 1px solid var(--color-border); text-align: left; }
.entry-content th { background: var(--color-surface); font-weight: 700; }

.alignleft { float: left; margin: 5px 25px 15px 0; }
.alignright { float: right; margin: 5px 0 15px 25px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; }
.wp-caption-text, .entry-content figcaption { font-size: 14px; color: var(--color-body); text-align: center; padding: 8px 0; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sticky, .bypostauthor { display: block; }

.cta-inner h2 {font-weight: normal;}
.cta-logo {display: flex; justify-content: center; width: 100px; margin: 0 auto;}
.cta-inner {background-size: cover!important;}

.settlements-load-more, .testimonials-load-more{border: 0; margin: 35px auto 0; display: block;}
.settlements-status, .testimonials-status {text-align: center; margin-top: 20px; margin-bottom: 0;}
.al-location-container {
	display: grid;
	border-radius: 15px;
	background-color: var(--color-cream);
	grid-template-columns: repeat(4,1fr);
	margin: 70px 0 0;
}
.al-location-letter {
	font-size: 75px;
	font-weight: 600;
	line-height: 45px;
	color: var(--secondary);
}
.al-location-box {
	padding: 60px 50px;
	text-align: left;
}
.al-location-list {
	margin-top: 70px;
}
.custom-form-flex {
	display: flex;
	padding: 100px 0 100px 0;
    flex-wrap: wrap;
}
.leiker-map,.stepform {width: 50%;}
.gtranslate-btn a img {
	display: none;
}
a.glink.gt-current-lang {display: none;}

.translated-ltr .hero-left h1{font-size: 50px; line-height: 1.2;}
.translated-ltr .hero-left h1 br{display: none;}
.translated-ltr .hero-left h1 .grad-text{padding-bottom: 10px;}
.translated-ltr .btn-primary {max-width: 240px;}
.custom-logo-link.brand{max-width: 200px;}

.sec-staff-single .sp-wrap{
    grid-template-columns: 405px 1fr;
    gap: 30px;
}
.sec-staff-single .sp-middle{
    order: 1;
}
.sec-staff-single .container{
    max-width: 1300px;
}
.staff-name {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
}
.staff-designation {
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
}
.staff-info {
    margin-bottom: 15px;
}
.bt-desc {
    margin: 30px auto 0;
    max-width: 1000px;
}

.bt-desc p,
.results-head p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.results-head p {
    max-width: 1000px;
}
.not-found .nf-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.nf-card {
    max-width: 750px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
}
.nf-card h2 {
    font-size: 30px;
    letter-spacing: 0;
    margin: 0px 0 10px;
}
/* .table-wrapper {width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 25px 0;}
.table-wrapper table {width: 100%; min-width: 700px; border-collapse: collapse;} */

.gtranslate-btn a.glink { display: inline-block; }