/*
Theme Name:  D&L Auto Body & Towing
Theme URI:   https://berlinlocaltowcompany.com
Description: A bold, premium theme for D & L Auto Body & Towing LLC — Berlin & Meriden, CT. 25+ years of service, diesel repair, towing, lockout, and HOA towing. Complete redesign with full pages, two-location support, diesel repair landing pages, and Google Ads templates.
Version:     2.0.0
Author:      D&L Auto Body & Towing LLC
Text Domain: dlt
*/

/* ═══════════════════════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════════════════════ */
:root {
    --dlt-orange:     #e8600a;
    --dlt-orange-dk:  #c24f05;
    --dlt-orange-lt:  #ff7c2a;
    --dlt-amber:      #f0940a;
    --dlt-black:      #0a0a0a;
    --dlt-dark:       #141414;
    --dlt-charcoal:   #1e1e1e;
    --dlt-steel:      #2a2a2a;
    --dlt-mid:        #444444;
    --dlt-light:      #f7f7f7;
    --dlt-white:      #ffffff;
    --dlt-text:       #1a1a1a;
    --dlt-muted:      #6b6b6b;
    --dlt-border:     #e2e2e2;
    --dlt-success:    #22863a;
    --dlt-radius:     4px;
    --dlt-radius-lg:  8px;
    --dlt-shadow:     0 4px 28px rgba(0,0,0,.13);
    --dlt-shadow-dk:  0 8px 40px rgba(0,0,0,.4);
    --dlt-max:        1260px;
    --dlt-font-head:  'Barlow Condensed', 'Arial Narrow', sans-serif;
    --dlt-font-body:  'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    --dlt-transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--dlt-font-body);
    font-size: 1rem;
    line-height: 1.68;
    color: var(--dlt-text);
    background: var(--dlt-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--dlt-orange); text-decoration: none; transition: color var(--dlt-transition); }
a:hover { color: var(--dlt-orange-dk); }
h1,h2,h3,h4,h5,h6 {
    font-family: var(--dlt-font-head);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: var(--dlt-dark);
}
p { margin-bottom: 1.1rem; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: .35rem; }

/* ═══════════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════════ */
.dlt-wrap  { max-width: var(--dlt-max); margin: 0 auto; padding: 0 28px; }
.dlt-sec   { padding: 88px 0; }
.dlt-sec-sm { padding: 52px 0; }
.dlt-sec-dark      { background: var(--dlt-dark); }
.dlt-sec-dark h2,
.dlt-sec-dark h3   { color: #fff; }
.dlt-sec-dark p    { color: rgba(255,255,255,.72); }
.dlt-sec-charcoal  { background: var(--dlt-charcoal); }
.dlt-sec-charcoal h2,
.dlt-sec-charcoal h3 { color: #fff; }
.dlt-sec-charcoal p  { color: rgba(255,255,255,.72); }
.dlt-sec-light     { background: var(--dlt-light); }
.dlt-sec-orange    { background: var(--dlt-orange); }

.dlt-sec-head {
    text-align: center;
    margin-bottom: 56px;
}
.dlt-sec-head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: .6rem;
}
.dlt-sec-head p {
    color: var(--dlt-muted);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--dlt-font-body);
}
.dlt-sec-dark .dlt-sec-head p,
.dlt-sec-charcoal .dlt-sec-head p { color: rgba(255,255,255,.55); }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .72em 1.7em;
    border-radius: var(--dlt-radius);
    font-family: var(--dlt-font-head);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--dlt-transition);
    line-height: 1.3;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-orange {
    background: var(--dlt-orange);
    color: #fff;
    border-color: var(--dlt-orange);
}
.btn-orange:hover {
    background: var(--dlt-orange-dk);
    border-color: var(--dlt-orange-dk);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,96,10,.35);
}
.btn-dark {
    background: var(--dlt-dark);
    color: #fff;
    border-color: var(--dlt-dark);
}
.btn-dark:hover {
    background: var(--dlt-charcoal);
    border-color: var(--dlt-charcoal);
    color: #fff;
}
.btn-white {
    background: #fff;
    color: var(--dlt-dark);
    border-color: #fff;
}
.btn-white:hover {
    background: var(--dlt-light);
    color: var(--dlt-orange);
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    color: #fff;
}
.btn-call {
    background: var(--dlt-orange);
    color: #fff;
    border-color: var(--dlt-orange);
    animation: pulse-call 2s infinite;
}
@keyframes pulse-call {
    0%   { box-shadow: 0 0 0 0 rgba(232,96,10,.5); }
    70%  { box-shadow: 0 0 0 14px rgba(232,96,10,0); }
    100% { box-shadow: 0 0 0 0 rgba(232,96,10,0); }
}
.btn-sm  { padding: .5em 1.2em; font-size: .9rem; }
.btn-lg  { padding: .85em 2.2em; font-size: 1.15rem; }
.btn-xl  { padding: 1em 2.8em; font-size: 1.25rem; }

/* ═══════════════════════════════════════════════════════════
   TOP BAR (Emergency Strip)
═══════════════════════════════════════════════════════════ */
.dlt-bar {
    background: var(--dlt-orange);
    color: #fff;
    font-family: var(--dlt-font-head);
    font-size: .88rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 8px 0;
}
.dlt-bar a { color: #fff; text-decoration: none; }
.dlt-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--dlt-max);
    margin: 0 auto;
    padding: 0 28px;
    flex-wrap: wrap;
    gap: 8px;
}
.dlt-bar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.dlt-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.dlt-bar-item svg { width: 14px; height: 14px; }
.dlt-bar-blink {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: blink-dot 1.4s infinite;
    margin-right: 4px;
}
@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50%      { opacity: .2; }
}
.dlt-bar-badge {
    background: rgba(0,0,0,.2);
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════════ */
header {
    background: var(--dlt-dark);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow var(--dlt-transition);
}
header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.dlt-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--dlt-max);
    margin: 0 auto;
    padding: 0 28px;
    height: 72px;
}
.dlt-header-inner .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.dlt-header-inner .logo svg {
    height: 44px;
    width: auto;
}
.dlt-header-inner .logo span {
    color: #fff;
    font-family: var(--dlt-font-head);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Navigation */
.dlt-header-inner nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.dlt-header-inner nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}
.dlt-header-inner nav ul li {
    margin: 0;
    position: relative;
}
.dlt-header-inner nav ul li a {
    display: block;
    padding: 10px 16px;
    color: rgba(255,255,255,.8);
    font-family: var(--dlt-font-head);
    font-size: .95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: all var(--dlt-transition);
    text-decoration: none;
    border-radius: var(--dlt-radius);
}
.dlt-header-inner nav ul li a:hover,
.dlt-header-inner nav ul li.current-menu-item a {
    color: #fff;
    background: rgba(255,255,255,.08);
}

/* Sub-menus */
.dlt-header-inner nav ul li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dlt-charcoal);
    border-radius: 0 0 var(--dlt-radius) var(--dlt-radius);
    box-shadow: var(--dlt-shadow-dk);
    min-width: 220px;
    z-index: 1000;
    flex-direction: column;
    padding: 8px 0;
}
.dlt-header-inner nav ul li:hover .sub-menu {
    display: flex;
}
.dlt-header-inner nav ul li .sub-menu li a {
    padding: 9px 20px;
    font-size: .88rem;
    border-radius: 0;
}

/* CTA button in header */
.dlt-header-cta {
    margin-left: 12px;
}
.dlt-header-cta .btn {
    padding: .5em 1.3em;
    font-size: .9rem;
}

/* Burger menu */
.dlt-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}
.dlt-burger span {
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#dlt-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 113px);
    display: flex;
    align-items: center;
    background: var(--dlt-dark);
}
.dlt-hero-rig {
    display: none;
}
.dlt-hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.dlt-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.dlt-hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,.88) 0%, rgba(10,10,10,.55) 50%, rgba(10,10,10,.75) 100%);
    z-index: 1;
}
.dlt-hero-noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: .04;
}
.dlt-hero-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--dlt-orange);
    z-index: 3;
}

#dlt-hero .dlt-wrap {
    position: relative;
    z-index: 4;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 28px;
}
#dlt-hero .dlt-hero-content {
    max-width: 760px;
    width: 100%;
}
.dlt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,96,10,.18);
    border: 1px solid rgba(232,96,10,.35);
    color: var(--dlt-orange-lt);
    font-family: var(--dlt-font-head);
    font-size: .88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.dlt-hero-badge svg { width: 14px; height: 14px; }

.dlt-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.02;
}
.dlt-hero-title span {
    color: var(--dlt-orange);
}
.dlt-hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 540px;
    font-family: var(--dlt-font-body);
    text-transform: none;
    letter-spacing: 0;
}
.dlt-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero trust row */
.dlt-hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.dlt-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    font-family: var(--dlt-font-body);
}
.dlt-hero-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--dlt-orange);
    flex-shrink: 0;
}
.dlt-hero-trust-item strong {
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════ */
.dlt-stats-bar {
    background: var(--dlt-orange);
    padding: 28px 0;
}
.dlt-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: var(--dlt-max);
    margin: 0 auto;
    padding: 0 28px;
    flex-wrap: wrap;
}
.dlt-stat-item {
    text-align: center;
}
.dlt-stat-num {
    display: block;
    font-family: var(--dlt-font-head);
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: .02em;
}
.dlt-stat-lbl {
    display: block;
    font-size: .82rem;
    color: rgba(255,255,255,.8);
    font-family: var(--dlt-font-head);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════════════ */
.dlt-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.dlt-svc-card {
    background: var(--dlt-white);
    border-radius: var(--dlt-radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--dlt-shadow);
    transition: all var(--dlt-transition);
    border: 1px solid var(--dlt-border);
    position: relative;
    overflow: hidden;
}
.dlt-svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--dlt-orange);
    transform: scaleX(0);
    transition: transform var(--dlt-transition);
}
.dlt-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.dlt-svc-card:hover::before {
    transform: scaleX(1);
}
.dlt-sec-dark .dlt-svc-card {
    background: var(--dlt-charcoal);
    border-color: rgba(255,255,255,.08);
}
.dlt-sec-dark .dlt-svc-card h3 { color: #fff; }
.dlt-sec-dark .dlt-svc-card p  { color: rgba(255,255,255,.65); }

.dlt-svc-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,96,10,.1);
    border-radius: 50%;
    color: var(--dlt-orange);
}
.dlt-svc-icon svg {
    width: 30px;
    height: 30px;
}
.dlt-sec-dark .dlt-svc-icon {
    background: rgba(232,96,10,.15);
}

.dlt-svc-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.dlt-svc-card p {
    font-size: .92rem;
    color: var(--dlt-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}
.dlt-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dlt-orange);
    font-family: var(--dlt-font-head);
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.dlt-svc-link svg { width: 14px; height: 14px; }
.dlt-svc-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE D&L
═══════════════════════════════════════════════════════════ */
.dlt-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.dlt-why-visual {
    position: relative;
}
.dlt-why-visual img {
    border-radius: var(--dlt-radius-lg);
    width: 100%;
    box-shadow: var(--dlt-shadow);
}
.dlt-cert-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.dlt-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dlt-charcoal);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--dlt-radius);
    font-family: var(--dlt-font-head);
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.dlt-cert-badge svg { width: 16px; height: 16px; color: var(--dlt-orange); }

.dlt-bbb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dlt-charcoal);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--dlt-radius);
}
.dlt-bbb-grade {
    font-family: var(--dlt-font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dlt-orange);
    line-height: 1;
}
.dlt-bbb-label {
    font-size: .72rem;
    font-family: var(--dlt-font-head);
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 1.3;
    opacity: .8;
}

.dlt-why-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.dlt-why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.dlt-why-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--dlt-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--dlt-font-head);
    font-size: 1.15rem;
    font-weight: 700;
}
.dlt-why-item h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.dlt-sec-dark .dlt-why-item p,
.dlt-sec-charcoal .dlt-why-item p {
    color: rgba(255,255,255,.6);
}

/* ═══════════════════════════════════════════════════════════
   DIESEL REPAIR SECTION
═══════════════════════════════════════════════════════════ */
.dlt-diesel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.dlt-diesel-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.dlt-diesel-visual .dlt-stat-item {
    background: var(--dlt-charcoal);
    border-radius: var(--dlt-radius-lg);
    padding: 24px 16px;
    text-align: center;
}
.dlt-diesel-visual .dlt-stat-num {
    font-size: 2rem;
    color: var(--dlt-orange);
}
.dlt-diesel-visual .dlt-stat-lbl {
    color: rgba(255,255,255,.65);
    font-size: .78rem;
}

.dlt-diesel-text h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}
.dlt-diesel-text p {
    color: rgba(255,255,255,.65);
    margin-bottom: 24px;
}
.dlt-diesel-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.dlt-diesel-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.8);
    font-size: .92rem;
}
.dlt-diesel-checklist li svg {
    width: 16px;
    height: 16px;
    color: var(--dlt-orange);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════════ */
.dlt-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.dlt-review {
    background: var(--dlt-white);
    border-radius: var(--dlt-radius-lg);
    padding: 32px 28px;
    box-shadow: var(--dlt-shadow);
    border: 1px solid var(--dlt-border);
    display: flex;
    flex-direction: column;
}
.dlt-sec-charcoal .dlt-review {
    background: var(--dlt-steel);
    border-color: rgba(255,255,255,.06);
}
.dlt-stars {
    color: #f0940a;
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.dlt-review-text {
    font-size: .95rem;
    line-height: 1.65;
    color: var(--dlt-text);
    flex: 1;
    margin-bottom: 18px;
    font-style: italic;
}
.dlt-sec-charcoal .dlt-review-text {
    color: rgba(255,255,255,.75);
}
.dlt-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}
.dlt-reviewer-initials {
    width: 42px;
    height: 42px;
    background: var(--dlt-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--dlt-font-head);
    font-weight: 700;
    font-size: .92rem;
}
.dlt-reviewer-meta {
    display: flex;
    flex-direction: column;
}
.dlt-reviewer-name {
    font-family: var(--dlt-font-head);
    font-weight: 700;
    font-size: .95rem;
    color: var(--dlt-dark);
    text-transform: uppercase;
    letter-spacing: .03em;
}
.dlt-sec-charcoal .dlt-reviewer-name { color: #fff; }
.dlt-reviewer-meta span:last-child {
    font-size: .78rem;
    color: var(--dlt-muted);
}
.dlt-sec-charcoal .dlt-reviewer-meta span:last-child {
    color: rgba(255,255,255,.45);
}

/* ═══════════════════════════════════════════════════════════
   LOCATIONS
═══════════════════════════════════════════════════════════ */
.dlt-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.dlt-location-card {
    background: var(--dlt-white);
    border-radius: var(--dlt-radius-lg);
    overflow: hidden;
    box-shadow: var(--dlt-shadow);
    border: 1px solid var(--dlt-border);
}
.dlt-location-header {
    background: var(--dlt-dark);
    color: #fff;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.dlt-location-header svg {
    width: 22px;
    height: 22px;
    color: var(--dlt-orange);
    flex-shrink: 0;
}
.dlt-location-header h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}
.dlt-main-badge {
    margin-left: auto;
    background: var(--dlt-orange);
    color: #fff;
    padding: 3px 12px;
    border-radius: 50px;
    font-family: var(--dlt-font-head);
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
}
.dlt-location-body {
    padding: 24px 28px;
}
.dlt-location-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: .92rem;
    color: var(--dlt-text);
    line-height: 1.5;
}
.dlt-location-detail svg {
    width: 18px;
    height: 18px;
    color: var(--dlt-orange);
    flex-shrink: 0;
    margin-top: 2px;
}
.dlt-location-detail strong {
    font-weight: 600;
}
.dlt-location-detail a {
    color: var(--dlt-orange);
    font-weight: 600;
}
.dlt-location-map {
    width: 100%;
    height: 200px;
    border-top: 1px solid var(--dlt-border);
    overflow: hidden;
}
.dlt-location-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
}

/* ═══════════════════════════════════════════════════════════
   COMMUNITY
═══════════════════════════════════════════════════════════ */
.dlt-community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.dlt-community-card {
    background: var(--dlt-charcoal);
    border-radius: var(--dlt-radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.06);
    transition: all var(--dlt-transition);
}
.dlt-community-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232,96,10,.3);
}
.dlt-community-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,96,10,.12);
    border-radius: 50%;
    color: var(--dlt-orange);
}
.dlt-community-icon svg {
    width: 26px;
    height: 26px;
}
.dlt-community-card h3 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 8px;
}
.dlt-community-card p {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════════════════ */
.dlt-cta-strip {
    background: var(--dlt-orange);
    padding: 52px 0;
    text-align: center;
}
.dlt-cta-strip h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 10px;
}
.dlt-cta-strip p {
    color: rgba(255,255,255,.8);
    font-size: 1.1rem;
    margin-bottom: 28px;
    font-family: var(--dlt-font-body);
    text-transform: none;
    letter-spacing: 0;
}
.dlt-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
    background: var(--dlt-black);
    color: rgba(255,255,255,.65);
    padding: 64px 0 0;
}
.dlt-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--dlt-max);
    margin: 0 auto;
    padding: 0 28px 48px;
}
.dlt-footer-col h4 {
    color: #fff;
    font-size: .95rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-family: var(--dlt-font-head);
}
.dlt-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.dlt-footer-brand svg {
    height: 40px;
    width: auto;
}
.dlt-footer-brand p {
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    line-height: 1.6;
}
.dlt-footer-menu {
    list-style: none;
    padding: 0;
}
.dlt-footer-menu li {
    margin-bottom: 8px;
}
.dlt-footer-menu a {
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    transition: color var(--dlt-transition);
}
.dlt-footer-menu a:hover {
    color: var(--dlt-orange);
}

.dlt-footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: .88rem;
}
.dlt-footer-contact-row svg {
    width: 16px;
    height: 16px;
    color: var(--dlt-orange);
    flex-shrink: 0;
    margin-top: 3px;
}
.dlt-footer-contact-row a {
    color: rgba(255,255,255,.65);
}
.dlt-footer-contact-row a:hover {
    color: var(--dlt-orange);
}

.dlt-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.dlt-social {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    color: rgba(255,255,255,.6);
    transition: all var(--dlt-transition);
}
.dlt-social:hover {
    background: var(--dlt-orange);
    color: #fff;
}
.dlt-social svg {
    width: 16px;
    height: 16px;
}

.dlt-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    max-width: var(--dlt-max);
    margin: 0 auto;
}
.dlt-footer-legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    font-size: .8rem;
    color: rgba(255,255,255,.35);
}
.dlt-footer-legal a {
    color: rgba(255,255,255,.4);
}
.dlt-footer-legal a:hover {
    color: var(--dlt-orange);
}

/* ═══════════════════════════════════════════════════════════
   FORM STYLES
═══════════════════════════════════════════════════════════ */
.dlt-form-light input,
.dlt-form-light textarea,
.dlt-form-light select {
    background: var(--dlt-white);
    border: 1px solid var(--dlt-border);
    color: var(--dlt-text);
    border-radius: var(--dlt-radius);
    padding: 12px 16px;
    font-family: var(--dlt-font-body);
    font-size: .95rem;
    width: 100%;
    transition: border-color var(--dlt-transition);
}
.dlt-form-light input:focus,
.dlt-form-light textarea:focus,
.dlt-form-light select:focus {
    outline: none;
    border-color: var(--dlt-orange);
    box-shadow: 0 0 0 3px rgba(232,96,10,.12);
}
.dlt-form-light label {
    display: block;
    font-family: var(--dlt-font-head);
    font-size: .88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 6px;
    color: var(--dlt-text);
}
.dlt-form-light textarea {
    min-height: 120px;
    resize: vertical;
}
.dlt-form-light input::placeholder,
.dlt-form-light textarea::placeholder {
    color: var(--dlt-muted);
}

/* ═══════════════════════════════════════════════════════════
   PAGE TEMPLATES
═══════════════════════════════════════════════════════════ */
.dlt-page-hero {
    background: var(--dlt-dark);
    padding: 100px 0 60px;
    text-align: center;
}
.dlt-page-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 12px;
}
.dlt-page-hero p {
    color: rgba(255,255,255,.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.dlt-page-content {
    padding: 64px 0;
}
.dlt-page-content h2 {
    margin-bottom: 16px;
}
.dlt-page-content p {
    max-width: 760px;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.dlt-anim {
    animation: fadeInUp .6s ease-out both;
}

/* ═══════════════════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-orange { color: var(--dlt-orange); }
.text-white  { color: #fff; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .dlt-why-grid,
    .dlt-diesel-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .dlt-locations-grid {
        grid-template-columns: 1fr;
    }
    .dlt-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .dlt-sec { padding: 56px 0; }
    .dlt-sec-head { margin-bottom: 36px; }

    /* Header */
    .dlt-header-inner nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--dlt-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 1000;
        padding: 0;
    }
    .dlt-header-inner nav ul.open {
        display: flex;
    }
    .dlt-header-inner nav ul li a {
        font-size: 1.4rem;
        padding: 14px 24px;
    }
    .dlt-header-inner nav ul li .sub-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        min-width: auto;
        padding: 0;
    }
    .dlt-header-cta { display: none; }
    .dlt-burger { display: flex; }

    /* Hero */
    #dlt-hero { min-height: 80vh; }
    .dlt-hero-ctas { flex-direction: column; }
    .dlt-hero-ctas .btn { width: 100%; justify-content: center; }
    .dlt-hero-trust { gap: 16px; }

    /* Stats */
    .dlt-stats-inner { gap: 24px; }
    .dlt-stat-num { font-size: 2rem; }

    /* Services */
    .dlt-services-grid { grid-template-columns: 1fr; }

    /* Diesel */
    .dlt-diesel-checklist { grid-template-columns: 1fr; }

    /* Reviews */
    .dlt-reviews-grid { grid-template-columns: 1fr; }

    /* CTA */
    .dlt-cta-btns { flex-direction: column; align-items: center; }

    /* Footer */
    .dlt-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .dlt-footer-legal { flex-direction: column; gap: 8px; text-align: center; }

    /* Bar */
    .dlt-bar-inner { justify-content: center; text-align: center; }
    .dlt-bar-left { justify-content: center; }
}

@media (max-width: 480px) {
    .dlt-wrap { padding: 0 16px; }
    .dlt-hero-title { font-size: 2.2rem; }
    .dlt-stat-num { font-size: 1.7rem; }
    .dlt-stats-inner { gap: 16px; }
    .dlt-location-body { padding: 16px; }
    .dlt-location-header { padding: 16px; }
}

/* ═══════════════════════════════════════════════════════════
   WORDPRESS ADMIN BAR FIX
═══════════════════════════════════════════════════════════ */
.admin-bar header {
    top: 32px;
}
@media (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
}