/**
 * SEO & conversion: sticky header, header CTAs, local trust row
 * Loaded after responsive.css
 */

/* Sticky main header — keeps Call / Directions accessible while scrolling */
.main-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9990;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.ld-header-cta-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ld-header-cta-list a {
    font-weight: 600;
}

@media (max-width: 767px) {
    .header-top .top-left.top-desc {
        font-size: 11px;
        line-height: 1.35;
    }

    .ld-header-cta-list {
        gap: 8px 12px;
    }
}

/* Home: single H1 + tagline (replaces former H2/H3 stack for SEO hierarchy) */
.welcome-section .welcome-heading {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: white;
    margin: 0 0 12px;
}

.welcome-tagline {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
    color: whitesmoke;
    margin: 0 0 15px;
}

@media (max-width: 767px) {
    .welcome-tagline {
        font-size: 18px;
    }
}

.ld-star-row .fa-star {
    color: #f5c518;
    margin: 0 2px;
    font-size: 18px;
}

/* Contact page: CTA row (avoid .link-box — theme uses position:absolute on service cards) */
.ld-contact-ctas {
    margin-top: 20px;
}

.ld-contact-ctas .theme-btn {
    display: inline-block;
    margin: 0 8px 12px 0;
    vertical-align: middle;
}

/* ---------- FAQ page (faq.php) ---------- */
.faqs-section.ld-faq-page {
    padding-top: 70px;
    padding-bottom: 90px;
}

.ld-faq-intro {
    background: linear-gradient(135deg, #fafafa 0%, #f0f4f8 100%);
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 28px 28px 22px;
    margin-bottom: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.ld-faq-lead {
    font-size: 17px;
    line-height: 1.65;
    color: #333;
    margin: 0 0 18px;
    max-width: 52em;
}

.ld-faq-quicklinks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.ld-faq-quicklinks li {
    margin: 0;
}

.ld-faq-quicklinks a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #1c2125;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ld-faq-quicklinks a:hover,
.ld-faq-quicklinks a:focus {
    border-color: #fc721e;
    color: #fc721e;
    background: #fffaf6;
}

.ld-faq-quicklinks .fa {
    font-size: 15px;
    opacity: 0.9;
}

.ld-faq-group {
    scroll-margin-top: 110px;
    margin-bottom: 42px;
}

.ld-faq-group:last-of-type {
    margin-bottom: 28px;
}

.ld-faq-group-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1c2125;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 3px solid #fc721e;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ld-faq-group-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #fc721e;
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
}

.ld-faq-page .faqs-container {
    margin-bottom: 0;
}

/* Cards: softer panels, hover on question row */
.ld-faq-page .accordion-box.ld-faq-accordion .block {
    margin-bottom: 12px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease;
}

.ld-faq-page .accordion-box.ld-faq-accordion .block:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.ld-faq-page .accordion-box .block .acc-btn {
    font-weight: 600;
    padding-top: 18px;
    padding-bottom: 18px;
    background: #fff;
}

.ld-faq-page .accordion-box .block .acc-btn:hover {
    background: #fafafa;
}

.ld-faq-q {
    display: inline-block;
    padding-right: 12px;
    line-height: 1.45;
}

.ld-faq-page .accordion-box .block .content {
    background: #f7f9fb;
    border-top: 1px solid #eee;
    padding: 22px 25px;
}

.ld-faq-page .accordion-box .block .content p {
    color: #555;
}

.ld-faq-page .accordion-box .block .content a {
    color: #fc721e;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ld-faq-page .accordion-box .block .content a:hover {
    color: #e56516;
}

/* Bottom CTA */
.ld-faq-cta {
    margin-top: 10px;
    padding: 32px 28px;
    text-align: center;
    background: #1c2125;
    border-radius: 10px;
    color: #e0e0e0;
}

.ld-faq-cta-text {
    font-size: 17px;
    line-height: 1.55;
    margin: 0 0 22px;
    max-width: 40em;
    margin-left: auto;
    margin-right: auto;
}

.ld-faq-cta-btns .theme-btn {
    margin: 0 6px 10px;
}

/* Gallery page — YouTube embed grid */
.ld-gallery-page .ld-video-grid {
    margin-left: -10px;
    margin-right: -10px;
}

.ld-gallery-page .ld-video-col {
    margin-bottom: 24px;
    padding-left: 10px;
    padding-right: 10px;
}

.ld-gallery-page .ld-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.ld-gallery-page .ld-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .ld-faq-intro {
        padding: 20px 18px 16px;
    }

    .ld-faq-quicklinks {
        flex-direction: column;
    }

    .ld-faq-quicklinks a {
        justify-content: center;
    }

    .ld-faq-group-title {
        font-size: 17px;
        flex-wrap: wrap;
    }

    .ld-faq-page .accordion-box .block .acc-btn {
        padding-left: 64px;
        font-size: 15px;
    }
}

/* ---------- Services page (services.php) ---------- */
.ld-services-intro-wrap {
    padding-top: 55px !important;
    padding-bottom: 25px !important;
}

.ld-services-intro {
    background: linear-gradient(145deg, #fafafa 0%, #eef2f7 45%, #f8f9fb 100%);
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 28px 28px 22px;
    margin-bottom: 10px;
    box-shadow: 0 6px 32px rgba(28, 33, 37, 0.06);
}

.ld-services-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fc721e;
    margin: 0 0 10px;
}

.ld-services-intro-title {
    font-size: 22px;
    font-weight: 700;
    color: #1c2125;
    margin: 0 0 18px;
    line-height: 1.35;
}

/* Trust strip — hours, phone, address, service type */
.ld-services-trust {
    list-style: none;
    margin: 0 0 22px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 16px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid #e8edf2;
    border-radius: 10px;
}

.ld-services-trust li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: #444;
}

.ld-services-trust-ic {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #fc721e, #e85f0d);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
}

.ld-services-trust-txt strong {
    display: block;
    color: #1c2125;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.ld-services-trust-txt a {
    color: #fc721e;
    font-weight: 600;
    text-decoration: none;
}

.ld-services-trust-txt a:hover,
.ld-services-trust-txt a:focus {
    text-decoration: underline;
}

.ld-services-intro-body p {
    margin-bottom: 14px;
}

.ld-services-intro-body a {
    color: #fc721e;
    font-weight: 600;
}

.ld-services-jump {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.ld-services-jump li {
    margin: 0;
}

.ld-services-jump a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #1c2125;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 999px;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.ld-services-jump a:hover,
.ld-services-jump a:focus {
    border-color: #fc721e;
    color: #fc721e;
    background: #fffaf6;
}

.ld-services-jump a:focus-visible {
    outline: 2px solid #fc721e;
    outline-offset: 2px;
}

.services-section.ld-services-page {
    padding-top: 50px;
    padding-bottom: 90px;
}

.ld-services-section-head {
    text-align: center;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 28px;
}

.ld-services-section-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #fc721e, #ffb347);
}

.ld-services-section-kicker {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin: 0 0 8px;
}

.ld-services-grid-title {
    font-size: 28px;
    font-weight: 700;
    color: #1c2125;
    margin: 0 0 10px;
}

.ld-services-grid-lead {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.55;
}

.ld-service-group {
    scroll-margin-top: 100px;
    margin-bottom: 48px;
}

.ld-service-group-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1c2125;
    margin: 0 0 22px;
    padding-bottom: 12px;
    border-bottom: 3px solid #fc721e;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ld-service-group-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background: #1c2125;
    border-radius: 8px;
}

.ld-service-group-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fc721e;
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
}

/* Cards: override theme min-height & absolute .link-box */
.ld-services-page .default-services-block {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
}

.ld-services-page .default-services-block > .inner-box {
    flex: 1 1 auto;
    height: 100%;
}

.ld-services-page .default-services-block .inner-box.ld-service-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    background: #fff;
    position: relative;
}

.ld-services-page .default-services-block .inner-box.ld-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 2;
    background: linear-gradient(90deg, #fc721e 0%, #ff9a4a 100%);
    border-radius: 12px 12px 0 0;
}

.ld-services-page .default-services-block:hover .inner-box.ld-service-card {
    box-shadow: 0 14px 36px rgba(28, 33, 37, 0.14);
    transform: translateY(-4px);
}

.ld-services-page .default-services-block .image-box {
    position: relative;
    background: #1c2125;
}

.ld-services-page .default-services-block .image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 33, 37, 0.35) 0%, transparent 45%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ld-services-page .default-services-block:hover .image-box::after {
    opacity: 1;
}

.ld-services-page .default-services-block .image-box img {
    transition: transform 0.35s ease;
}

.ld-services-page .default-services-block:hover .image-box img {
    transform: scale(1.04);
}

/* Softer watermark icon so titles read first */
.ld-services-page .default-services-block .lower-content .transparen-icon {
    opacity: 0.22;
    transition: opacity 0.25s ease;
}

.ld-services-page .default-services-block:hover .lower-content .transparen-icon {
    opacity: 0.12;
}

.ld-services-page .default-services-block .lower-content {
    min-height: 0 !important;
    border: none !important;
    border-top: 1px solid #eee !important;
    padding: 22px 22px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1;
}

.ld-services-page .default-services-block .inner-box.ld-service-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100%;
}

.ld-services-page .default-services-block .lower-content .text {
    flex: 1 1 auto;
    margin-bottom: 0 !important;
    padding-bottom: 14px;
}

.ld-services-page .ld-service-cta {
    position: static !important;
    bottom: auto !important;
    margin-top: auto;
    padding-top: 4px;
}

.ld-services-page .ld-service-cta .theme-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
}

.ld-services-page .ld-service-cta .theme-btn:focus-visible {
    outline: 2px solid #fc721e;
    outline-offset: 2px;
}

.ld-services-bottom-cta {
    margin-top: 28px;
    padding: 36px 28px 40px;
    text-align: center;
    background: linear-gradient(165deg, #252b32 0%, #1c2125 40%, #151a1e 100%);
    border-radius: 12px;
    color: #cfd4d8;
    border: 1px solid rgba(252, 114, 30, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.ld-services-bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fc721e, #ffb347, #fc721e);
}

.ld-services-bottom-cta-icon {
    display: inline-block;
    font-size: 28px;
    color: #fc721e;
    margin-bottom: 12px;
    opacity: 0.95;
}

.ld-services-bottom-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3;
}

.ld-services-bottom-cta p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 22px;
    max-width: 36em;
    margin-left: auto;
    margin-right: auto;
    color: #b8c0c6;
}

.ld-services-bottom-cta-btns .theme-btn {
    margin: 0 6px 10px;
}

@media (prefers-reduced-motion: reduce) {
    .ld-services-page .default-services-block .inner-box.ld-service-card,
    .ld-services-page .default-services-block .image-box img,
    .ld-services-page .default-services-block .image-box::after,
    .ld-services-page .default-services-block .lower-content .transparen-icon {
        transition: none !important;
    }

    .ld-services-page .default-services-block:hover .inner-box.ld-service-card {
        transform: none;
    }

    .ld-services-page .default-services-block:hover .image-box img {
        transform: none;
    }
}

@media (min-width: 768px) {
    .ld-services-page .ld-service-cta .theme-btn {
        width: auto;
        min-width: 160px;
    }
}

@media (max-width: 991px) {
    .ld-services-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ld-services-intro {
        padding: 20px 18px 16px;
    }

    .ld-services-trust {
        grid-template-columns: 1fr;
        padding: 14px 14px;
    }

    .ld-services-jump {
        flex-direction: column;
    }

    .ld-services-jump a {
        justify-content: center;
    }

    .ld-services-grid-title {
        font-size: 22px;
    }

    .ld-service-group-title {
        font-size: 17px;
        flex-wrap: wrap;
    }

    .ld-services-bottom-cta {
        padding: 28px 18px 32px;
    }

    .ld-services-bottom-cta-title {
        font-size: 19px;
    }
}

/* ---------- About page (about-us.php) ---------- */
.about-us-section.ld-about-page {
    padding-top: 55px;
    padding-bottom: 90px;
}

.ld-about-hero {
    text-align: center;
    /* max-width: 760px; */
    margin: 0 auto 48px;
    padding: 32px 28px 28px;
    background: linear-gradient(145deg, #fafafa 0%, #eef2f7 50%, #f8f9fb 100%);
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    box-shadow: 0 6px 32px rgba(28, 33, 37, 0.06);
}

.ld-about-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fc721e;
    margin: 0 0 12px;
}

.ld-about-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1c2125;
    margin: 0 0 14px;
    line-height: 1.25;
}

.ld-about-hero-lead {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 24px;
}

.ld-about-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
}

.ld-about-trust li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 14px;
    color: #333;
}

.ld-about-trust-ic {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #fc721e, #e85f0d);
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
}

.ld-about-trust strong {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    font-weight: 700;
}

.ld-about-trust a {
    color: #fc721e;
    font-weight: 600;
    text-decoration: none;
}

.ld-about-trust a:hover {
    text-decoration: underline;
}

.ld-about-main {
    margin-bottom: 50px;
}

.ld-about-story-title {
    font-size: 22px;
    font-weight: 700;
    color: #1c2125;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 3px solid #fc721e;
}

.ld-about-story .text p {
    margin-bottom: 16px;
    line-height: 1.75;
    color: #444;
    font-size: 16px;
}

.ld-about-story .text a {
    color: #fc721e;
    font-weight: 600;
}

.ld-about-owner-card {
    margin-top: 28px;
    padding: 22px 22px 20px;
    background: #f7f9fb;
    border: 1px solid #e8edf2;
    border-left: 4px solid #fc721e;
    border-radius: 0 10px 10px 0;
}

.ld-about-owner-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fc721e;
    margin-bottom: 10px;
}

.ld-about-owner-badge .fa {
    margin-right: 6px;
}

.ld-about-owner-line {
    margin: 0 0 8px;
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

.ld-about-owner-strong {
    font-weight: 700;
    color: #1c2125;
}

.ld-about-owner-card .company-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1c2125;
}

.ld-about-photo-wrap {
    position: relative;
}

.ld-about-photo {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(28, 33, 37, 0.15);
    border: 4px solid #fff;
    outline: 1px solid #e8edf2;
}

.ld-about-photo img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.ld-about-photo-caption {
    margin: 14px 0 0;
    font-size: 14px;
    color: #777;
    font-style: italic;
    text-align: center;
    line-height: 1.45;
}

.ld-about-values {
    margin-bottom: 40px;
}

.ld-about-values-head {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    position: relative;
}

.ld-about-values-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #fc721e, #ffb347);
}

.ld-about-values-title {
    font-size: 26px;
    font-weight: 700;
    color: #1c2125;
    margin: 0 0 8px;
}

.ld-about-values-lead {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.ld-about-pillar .inner-box {
    height: 100%;
    border-radius: 12px !important;
    border: 1px solid #e8edf2 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    padding-bottom: 8px;
}

.ld-about-pillar:hover .inner-box {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.ld-about-pillar .icon-box {
    color: #fc721e;
}

.ld-about-cta {
    text-align: center;
    padding: 36px 28px;
    background: linear-gradient(165deg, #252b32 0%, #1c2125 45%, #151a1e 100%);
    border-radius: 12px;
    border: 1px solid rgba(252, 114, 30, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
}

.ld-about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fc721e, #ffb347);
}

.ld-about-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.ld-about-cta p {
    font-size: 16px;
    color: #b8c0c6;
    margin: 0 0 22px;
    max-width: 32em;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

.ld-about-cta-btns .theme-btn {
    margin: 0 6px 10px;
}

@media (prefers-reduced-motion: reduce) {
    .ld-about-pillar:hover .inner-box {
        transform: none;
    }
}

@media (max-width: 767px) {
    .ld-about-hero {
        padding: 22px 18px 20px;
    }

    .ld-about-hero-title {
        font-size: 24px;
    }

    .ld-about-trust {
        flex-direction: column;
        align-items: flex-start;
    }

    .ld-about-story-title {
        font-size: 19px;
    }

    .ld-about-values-title {
        font-size: 22px;
    }
}

/* ---------- Home testimonials (_testimonial.php) ---------- */
.testimonial-style-one.ld-testimonials {
    padding: 90px 0 100px;
}

.testimonial-style-one.ld-testimonials:before {
    background-color: rgba(18, 22, 26, 0.88);
}

.ld-testimonials-inner {
    position: relative;
    z-index: 1;
}

.ld-testimonials-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.ld-testimonials-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fc721e;
    margin: 0 0 10px;
}

.ld-testimonials-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.ld-testimonials-sub {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 16px;
}

.ld-testimonials-stars {
    font-size: 18px;
    letter-spacing: 4px;
    color: #f5c518;
}

.ld-testimonials-stars .fa-star {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ld-testimonials-gmb-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin: 14px 0 0;
    line-height: 1.4;
}

.ld-testimonials-gmb-note .fa-google {
    margin-right: 6px;
    color: rgba(255, 255, 255, 0.75);
}

/* Glass card per slide */
.ld-testimonials .slide-item .inner-box.ld-testimonial-card {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 36px 36px 28px;
    text-align: left;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ld-testimonial-quote-icon {
    display: block;
    font-size: 28px;
    color: rgba(252, 114, 30, 0.55);
    margin-bottom: 12px;
    line-height: 1;
}

.ld-testimonials .ld-testimonial-quote {
    margin: 0 0 28px;
    padding: 0;
    border: none;
    color: #fff;
    font-size: 19px;
    line-height: 1.75;
    font-weight: 400;
    font-style: italic;
}

.ld-testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 22px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ld-testimonial-author .image {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(252, 114, 30, 0.65);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.ld-testimonial-author .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ld-testimonial-author-meta {
    text-align: left;
}

.ld-testimonials cite.auther-name {
    display: block;
    font-style: normal;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    font-family: 'Montserrat', sans-serif;
}

.ld-testimonials .designation {
    display: block;
    font-size: 15px;
    font-style: normal;
    color: #fc721e;
    font-weight: 600;
}

/* Hide prev/next — dots + autoplay keep the section clean (Owl structure varies by theme) */
.ld-testimonials .owl-controls .owl-nav {
    display: none !important;
}

.ld-testimonials-carousel-outer {
    position: relative;
    padding: 0 0 8px;
}

/* Dots */
.ld-testimonials .owl-controls .owl-dots {
    display: block !important;
    margin-top: 28px !important;
    text-align: center;
}

.ld-testimonials .owl-controls .owl-dot {
    margin: 0 5px;
}

.ld-testimonials .owl-controls .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ld-testimonials .owl-controls .owl-dot.active span {
    background: #fc721e;
    transform: scale(1.15);
}

@media (max-width: 767px) {
    .testimonial-style-one.ld-testimonials {
        padding: 70px 0 85px;
        background-attachment: scroll !important;
    }

    .ld-testimonials-header h2 {
        font-size: 26px;
    }

    .ld-testimonials .slide-item .inner-box.ld-testimonial-card {
        padding: 26px 22px 22px;
    }

    .ld-testimonials .ld-testimonial-quote {
        font-size: 17px;
    }

    .ld-testimonials-carousel-outer {
        padding: 0 0 32px;
    }

    .ld-testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .ld-testimonial-author-meta {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ld-testimonials .owl-controls .owl-dot span {
        transition: none;
    }
}
