/* ==================================================== */
/* Local Page Dedicated Stylesheet (SRPT Theme)         */
/* ==================================================== */

:root {
    --lp-primary: #14183E;
    --lp-accent: #3450A3;
    --lp-accent-hover: #243B82;
    --lp-accent-soft: #EEF3FA;
    --lp-text: #474749;
    --lp-muted: #6e7387;
    --lp-bg-light: #F8FAFD;
    --lp-border: #E5ECF6;
    --lp-card-shadow: 0 4px 20px rgba(20, 24, 62, 0.05);
}

.local-page-wrapper {
    font-family: var(--default-font, "Plus Jakarta Sans", sans-serif);
    color: var(--lp-text);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Tagline Indicator Line */
.lp-tagline,
.lp-hero-tagline-exact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--lp-accent);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.lp-tagline::before,
.lp-hero-tagline-exact::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 3px;
    background-color: var(--lp-accent);
    border-radius: 2px;
}

/* Headings */
.lp-heading-large,
.lp-hero-heading-exact {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.18;
    color: var(--lp-primary);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.lp-heading-large .text-accent-blue,
.lp-heading-large .text-highlight,
.lp-hero-heading-exact .text-accent-blue,
.lp-hero-heading-exact .text-highlight,
.lp-heading-section .text-accent-blue,
.lp-heading-section .text-highlight {
    color: var(--lp-accent);
}

.lp-heading-section {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--lp-primary);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

/* Buttons */
.lp-btn-primary {
    background-color: var(--lp-accent);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 13.5px;
    padding: 6px 18px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--lp-accent);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(52, 80, 163, 0.18);
    text-decoration: none;
    line-height: 1.4;
}

.lp-btn-primary:hover {
    background-color: var(--lp-accent-hover);
    border-color: var(--lp-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 80, 163, 0.25);
}

.lp-btn-outline {
    background-color: #ffffff;
    color: var(--lp-primary) !important;
    font-weight: 600;
    font-size: 13.5px;
    padding: 6px 18px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--lp-accent);
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.4;
}

.lp-btn-outline:hover {
    background-color: var(--lp-accent-soft);
    border-color: var(--lp-accent-hover);
    color: var(--lp-accent) !important;
    transform: translateY(-2px);
}

/* ==================================================== */
/* Hero Banner Full-Width (Exact Match - Blue Theme)    */
/* ==================================================== */
.lp-hero-banner-exact {
    position: relative;
    width: 100%;
    min-height: 520px;
    background-color: #ffffff;
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 65px 0 55px;
}

.lp-hero-banner-exact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #e1eaec 0%, 42%, rgba(255, 255, 255, 0.12) 56%, rgba(255, 255, 255, 0.12) 80%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.lp-hero-content-exact {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.lp-hero-tagline-exact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--lp-accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.lp-hero-tagline-exact::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 3px;
    background-color: var(--lp-accent);
    border-radius: 2px;
}

.lp-hero-heading-exact {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--lp-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.lp-hero-heading-exact .text-highlight,
.lp-hero-heading-exact .text-accent-blue {
    color: var(--lp-accent);
}

.lp-hero-desc-exact {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--lp-text);
    margin-bottom: 24px;
    max-width: 500px;
    font-weight: 400;
}

/* Action Buttons */
.lp-hero-btn-primary {
    background-color: var(--lp-accent);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 13.5px;
    padding: 7px 20px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--lp-accent);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(52, 80, 163, 0.2);
    text-decoration: none;
    line-height: 1.4;
}

.lp-hero-btn-primary:hover {
    background-color: var(--lp-accent-hover);
    border-color: var(--lp-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(52, 80, 163, 0.3);
}

.lp-hero-btn-outline {
    background-color: #ffffff;
    color: var(--lp-primary) !important;
    font-weight: 600;
    font-size: 13.5px;
    padding: 7px 20px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--lp-accent);
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.4;
}

.lp-hero-btn-outline:hover {
    background-color: var(--lp-accent-soft);
    border-color: var(--lp-accent-hover);
    color: var(--lp-accent) !important;
    transform: translateY(-2px);
}

/* 4 Feature Badges Bottom Row (Exact Match to Reference in Blue Theme) */
.lp-hero-badges-exact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    margin-top: 28px;
}

.lp-badge-item-exact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lp-badge-icon-exact {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--lp-accent);
    color: var(--lp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: #ffffff;
}

.lp-badge-text-exact {
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-primary);
    line-height: 1.25;
    text-align: left;
}

@media (max-width: 991px) {
    .lp-hero-banner-exact {
        padding: 50px 0;
        min-height: auto;
    }

    .lp-hero-banner-exact::before {
        background: rgba(255, 255, 255, 0.94);
    }

    .lp-hero-heading-exact {
        font-size: 32px;
    }

    .lp-hero-content-exact {
        max-width: 100%;
    }
}

/* About Section */
.lp-about-section {
    padding: 70px 0;
    background: #ffffff;
}

.lp-about-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(20, 24, 62, 0.08);
    width: 100%;
    position: relative;
    background-color: #f1f5f9;
}

@media (min-width: 992px) {
    .lp-about-img-wrap {
        height: 100%;
        min-height: 100%;
    }

    .lp-about-img-wrap img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

@media (max-width: 991.98px) {
    .lp-about-img-wrap {
        height: 320px;
    }

    .lp-about-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

.lp-about-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--lp-text);
    margin-bottom: 16px;
}

.lp-about-text p {
    margin-bottom: 10px;
}

.lp-about-text p:last-child {
    margin-bottom: 0;
}

/* Key Features Section */
.lp-features-section {
    padding: 70px 0;
    background-color: var(--lp-bg-light);
}

.lp-feature-card {
    background: #ffffff;
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: var(--lp-card-shadow);
    transition: all 0.3s ease;
}

.lp-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 80, 163, 0.1);
    border-color: var(--lp-accent);
}

.lp-feature-icon-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #EEF3FA;
    color: var(--lp-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.lp-feature-card:hover .lp-feature-icon-circle {
    background: var(--lp-accent);
    color: #ffffff;
}

.lp-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--lp-primary);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-feature-desc {
    font-size: 13.5px;
    color: var(--lp-muted);
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Content / Description Section (Above Why Choose Us) */
.lp-mid-content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.lp-mid-content-wrap {
    width: 100%;
}

.lp-mid-content-wrap .lp-heading-section {
    margin-bottom: 18px;
    text-align: left;
}

.lp-mid-content-body {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--lp-text);
    text-align: left;
}

.lp-mid-content-body p {
    margin-bottom: 14px;
}

.lp-mid-content-body p:last-child {
    margin-bottom: 0;
}

.lp-mid-content-body h2,
.lp-mid-content-body h3,
.lp-mid-content-body h4 {
    color: var(--lp-primary);
    font-weight: 700;
    margin-top: 22px;
    margin-bottom: 10px;
    text-align: left;
}

.lp-mid-content-body ul,
.lp-mid-content-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
    text-align: left;
}

.lp-mid-content-body li {
    margin-bottom: 6px;
}

/* Why Choose Us Section */
.lp-why-section {
    padding: 70px 0;
    background: #ffffff;
}

.lp-why-card {
    background: #ffffff;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: var(--lp-card-shadow);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lp-why-card.lp-why-card-top {
    min-height: 260px;
}

.lp-why-card.lp-why-card-bottom {
    min-height: 155px;
}

.lp-why-card:hover {
    border-color: var(--lp-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 80, 163, 0.08);
}

.lp-why-icon {
    font-size: 22px;
    color: var(--lp-accent);
    min-width: 26px;
    margin-top: 2px;
    flex-shrink: 0;
}

.lp-why-card-title {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--lp-primary);
    margin-bottom: 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-why-card-desc {
    font-size: 13px;
    color: var(--lp-muted);
    line-height: 1.45;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-why-card-bottom .lp-why-card-desc {
    -webkit-line-clamp: 6;
}

/* Highlight / Overview Section (Above Applications) */
.lp-highlight-section {
    padding: 70px 0;
    background: #ffffff;
}

.lp-highlight-box {
    background: #ffffff;
    border-radius: 18px;
}

.lp-highlight-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(20, 24, 62, 0.08);
    background: #e9eff8;
    width: 100%;
}

@media (min-width: 992px) {
    .lp-highlight-img-wrap {
        height: 100%;
        min-height: 460px;
    }

    .lp-highlight-img-wrap img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }
}

@media (max-width: 991.98px) {
    .lp-highlight-img-wrap {
        height: 380px;
        min-height: 300px;
    }

    .lp-highlight-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }
}

.lp-highlight-img-wrap:hover img {
    transform: scale(1.04);
}

.lp-highlight-content {
    padding: 10px 0;
}

.lp-highlight-text {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--lp-text);
    margin-bottom: 0;
}

/* Applications Section */
.lp-apps-section {
    padding: 70px 0;
    background-color: var(--lp-bg-light);
}

.lp-app-col-5 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 10px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .lp-app-col-5 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 576px) {
    .lp-app-col-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.lp-app-card {
    background: #ffffff;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--lp-card-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.lp-app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(20, 24, 62, 0.08);
    border-color: var(--lp-accent);
}

.lp-app-img-wrap {
    width: 100%;
    height: 145px;
    overflow: hidden;
    background: #e9eff8;
}

.lp-app-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lp-app-card:hover .lp-app-img-wrap img {
    transform: scale(1.08);
}

.lp-app-body {
    padding: 16px 14px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lp-app-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--lp-primary);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-app-desc {
    font-size: 12.5px;
    color: var(--lp-muted);
    line-height: 1.45;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* FAQ & Enquiry Section */
.lp-faq-enquiry-section {
    padding: 70px 0;
    background: #ffffff;
}

.lp-enquiry-box {
    background: #F8FAFD;
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--lp-card-shadow);
}

.lp-faq-accordion .accordion-item {
    border: 1px solid var(--lp-border) !important;
    border-radius: 12px !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(20, 24, 62, 0.02);
}

.lp-faq-accordion .accordion-button {
    font-weight: 700;
    font-size: 15.5px;
    color: var(--lp-primary);
    background: #ffffff;
    padding: 16px 20px;
}

.lp-faq-accordion .accordion-button:not(.collapsed) {
    background: #F3F7FD;
    color: var(--lp-accent);
}

.lp-faq-accordion .accordion-body {
    padding: 18px 20px;
    font-size: 14.5px;
    color: var(--lp-text);
    line-height: 1.7;
    background: #ffffff;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .lp-hero-banner-exact::before {
        background: rgba(255, 255, 255, 0.94);
    }

    .lp-hero-heading-exact {
        font-size: 32px;
    }

    .lp-hero-content-exact {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .lp-heading-large,
    .lp-hero-heading-exact {
        font-size: 32px;
    }

    .lp-heading-section {
        font-size: 26px;
    }

    .lp-hero-banner-exact,
    .lp-about-section,
    .lp-features-section,
    .lp-why-section,
    .lp-apps-section,
    .lp-faq-enquiry-section {
        padding: 45px 0;
    }
}

/* ==================================================== */
/* Local Page Listing Page Grid & Sidebar (Exact Design)*/
/* ==================================================== */
.lp-listing-section {
    padding: 50px 0 70px;
    background-color: #ffffff;
}

/* Listing Page About Intro Box */
.lp-listing-about-box {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5ECF6;
}

.lp-listing-about-heading {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.28;
    color: var(--lp-primary, #14183E);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.lp-listing-about-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #525666;
    margin-bottom: 0;
}

.lp-listing-about-desc p {
    margin-bottom: 12px;
}

.lp-listing-about-desc p:last-child {
    margin-bottom: 0;
}

.lp-list-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 35px;
    background: transparent;
    border: none;
}

.lp-list-card .lp-list-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 14px;
    background-color: #f1f5f9;
}

.lp-list-card .lp-list-img-wrap img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-list-card:hover .lp-list-img-wrap img {
    transform: scale(1.04);
}

.lp-list-card .lp-list-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lp-list-card .lp-list-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.32;
    color: var(--lp-primary, #14183E);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
    font-family: var(--default-font, "Plus Jakarta Sans", sans-serif);
}

.lp-list-card .lp-list-title a {
    color: var(--lp-primary, #14183E);
    text-decoration: none;
    transition: color 0.25s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lp-list-card .lp-list-title a:hover {
    color: var(--lp-accent, #3450A3);
}

.lp-list-card .lp-list-desc {
    font-size: 14px;
    color: #555e70;
    line-height: 1.62;
    margin-bottom: 8px;
    font-family: var(--default-font, "Plus Jakarta Sans", sans-serif);
    word-break: break-word;
}

.lp-list-card .lp-list-link-wrap {
    margin-top: 4px;
    padding-top: 0;
}

.lp-list-card .lp-list-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-accent, #3450A3) !important;
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: var(--default-font, "Plus Jakarta Sans", sans-serif);
}

.lp-list-card .lp-list-link i {
    font-size: 12.5px;
    color: var(--lp-accent, #3450A3);
    transition: transform 0.25s ease;
}

.lp-list-card .lp-list-link:hover {
    color: var(--lp-accent-hover, #243B82) !important;
}

.lp-list-card .lp-list-link:hover i {
    transform: translateX(4px);
    color: var(--lp-accent-hover, #243B82);
}

/* Sidebar Widgets */
.lp-sidebar-widget {
    background: #ffffff;
    border: 1px solid #E5ECF6;
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 18px rgba(20, 24, 62, 0.03);
}

.lp-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #14183E;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-sidebar-title .sidebar-icon {
    color: #3450A3;
    font-size: 17px;
}

.lp-category-list-wrap {
    max-height: 380px;
    overflow-y: auto;
    padding-right: 6px;
}

.lp-category-list-wrap::-webkit-scrollbar {
    width: 4px;
}
.lp-category-list-wrap::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}
.lp-category-list-wrap::-webkit-scrollbar-thumb {
    background: #14183E;
    border-radius: 4px;
}

.lp-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-category-item {
    border-bottom: 1px solid #f0f4fa;
}

.lp-category-item:last-child {
    border-bottom: none;
}

.lp-category-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    font-size: 14px;
    font-weight: 600;
    color: #14183E;
    text-decoration: none;
    transition: all 0.25s ease;
}

.lp-category-item a:hover {
    color: #3450A3;
    padding-left: 4px;
}

.lp-category-item a i {
    font-size: 12px;
    color: #3450A3;
    transition: transform 0.25s ease;
}

.lp-category-item a:hover i {
    transform: translateX(3px);
}

/* Sidebar Contact Form */
.lp-sidebar-form .form-control {
    height: 46px;
    border-radius: 8px;
    border: 1.5px solid #E5ECF6;
    font-size: 14px;
    color: #14183E;
    padding: 10px 14px;
    margin-bottom: 12px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.lp-sidebar-form textarea.form-control {
    height: 90px;
    resize: vertical;
}

.lp-sidebar-form .form-control:focus {
    border-color: #3450A3;
    box-shadow: 0 0 0 3px rgba(52, 80, 163, 0.12);
}

.lp-sidebar-form .btn-sidebar-submit {
    background: #3450A3;
    color: #ffffff;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(52, 80, 163, 0.2);
}

.lp-sidebar-form .btn-sidebar-submit:hover {
    background: #243B82;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 80, 163, 0.3);
    color: #ffffff;
}

@media (max-width: 768px) {
    .lp-listing-section {
        padding: 35px 0 45px;
    }
    .lp-list-card .lp-list-img-wrap {
        height: 190px;
        margin-bottom: 14px;
    }
}

html {
    scroll-behavior: smooth;
}

#about-section {
    scroll-margin-top: 90px;
}