/* ============================= */
/* America ADU Compact Sidebar Services */
/* ============================= */

.adu-project-sidebar-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.adu-project-sidebar-list li {
    margin-bottom: 14px;
}

.adu-project-sidebar-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    min-width: 0;
    padding: 10px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(18, 60, 115, 0.09);
    box-shadow: 0 12px 30px rgba(18, 60, 115, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.adu-project-sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(18, 60, 115, 0.16);
    border-color: rgba(192, 57, 43, 0.35);
}

.adu-project-thumb {
    position: relative;
    width: 86px;
    height: 76px;
    border-radius: 13px;
    overflow: hidden;
    background: #123C73;
    flex-shrink: 0;
}

.adu-project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.adu-project-sidebar-card:hover .adu-project-thumb img {
    transform: scale(1.1);
}

.adu-project-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(18, 60, 115, 0.05) 0%,
        rgba(18, 60, 115, 0.58) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.adu-project-sidebar-card:hover .adu-project-thumb::after {
    opacity: 1;
}

.adu-project-icon {
    position: absolute;
    right: 7px;
    bottom: 7px;
    z-index: 2;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #C0392B;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transform: scale(0.85);
    opacity: 0;
    transition: all 0.3s ease;
}

.adu-project-sidebar-card:hover .adu-project-icon {
    opacity: 1;
    transform: scale(1);
}

.adu-project-info {
    min-width: 0;
    overflow: hidden;
}

.adu-project-label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(18, 60, 115, 0.08);
    color: #123C73;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adu-project-info h4 {
    margin: 0 0 5px;
    color: #1E1E1E;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adu-project-info p {
    margin: 0;
    color: #626b76;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* View All Button */
.adu-project-sidebar-more {
    margin-top: 18px;
    margin-bottom: 0;
}

.adu-project-sidebar-more a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 15px 17px;
    border-radius: 14px;
    background: linear-gradient(135deg, #123C73 0%, #0b264a 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(18, 60, 115, 0.22);
    transition: all 0.3s ease;
}

.adu-project-sidebar-more a span {
    color: #ffffff;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adu-project-sidebar-more a i {
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.adu-project-sidebar-more a:hover {
    background: linear-gradient(135deg, #C0392B 0%, #9f2f24 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(192, 57, 43, 0.24);
}

.adu-project-sidebar-more a:hover i {
    transform: translateX(4px);
}

/* Very small sidebar widths */
@media only screen and (max-width: 420px) {
    .adu-project-sidebar-card {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 11px;
        padding: 9px;
    }

    .adu-project-thumb {
        width: 74px;
        height: 68px;
    }

    .adu-project-info h4 {
        font-size: 14px;
    }

    .adu-project-info p {
        font-size: 11.5px;
    }
}

/* cta */

/* ============================= */
/* America ADU SEO/AEO Sidebar CTA */
/* ============================= */

.adu-seo-sidebar-cta {
    position: relative;
    overflow: hidden;
    padding: 24px 22px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(18, 60, 115, 0.10);
    box-shadow: 0 18px 42px rgba(18, 60, 115, 0.10);
}

.adu-seo-sidebar-cta::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: rgba(18, 60, 115, 0.07);
}

.adu-seo-sidebar-cta::after {
    content: "";
    position: absolute;
    bottom: -65px;
    left: -65px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(192, 57, 43, 0.08);
}

.adu-seo-sidebar-cta > * {
    position: relative;
    z-index: 2;
}

.adu-seo-mini-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(18, 60, 115, 0.08);
    color: #123C73;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.adu-seo-sidebar-cta h3 {
    margin: 0 0 10px;
    color: #1E1E1E;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 900;
}

.adu-seo-sidebar-cta p {
    margin: 0 0 17px;
    color: #626b76;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.adu-seo-link-list {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.adu-seo-link-list li {
    margin-bottom: 8px;
}

.adu-seo-link-list li:last-child {
    margin-bottom: 0;
}

.adu-seo-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
    width: 100%;
    padding: 11px 12px;
    border-radius: 12px;
    background: #f7f8fa;
    color: #1E1E1E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.adu-seo-link-list a span {
    display: block;
    min-width: 0;
    color: inherit;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adu-seo-link-list a i {
    flex-shrink: 0;
    color: #C0392B;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.adu-seo-link-list a:hover {
    background: #123C73;
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 10px 22px rgba(18, 60, 115, 0.16);
}

.adu-seo-link-list a:hover i {
    color: #ffffff;
    transform: translateX(3px);
}

.adu-seo-cta-bottom {
    padding-top: 16px;
    border-top: 1px solid rgba(18, 60, 115, 0.10);
}

.adu-seo-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    margin-bottom: 10px;
    padding: 12px 13px;
    border-radius: 12px;
    background: rgba(18, 60, 115, 0.08);
    color: #123C73;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    transition: all 0.3s ease;
}

.adu-seo-phone i,
.adu-seo-phone span {
    color: inherit;
}

.adu-seo-phone span {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adu-seo-phone:hover {
    background: #123C73;
    color: #ffffff;
    transform: translateY(-2px);
}

.adu-seo-main-btn {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 13px;
    background: linear-gradient(135deg, #C0392B 0%, #9f2f24 100%);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(192, 57, 43, 0.22);
    transition: all 0.3s ease;
}

.adu-seo-main-btn:hover {
    background: linear-gradient(135deg, #123C73 0%, #0b264a 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(18, 60, 115, 0.24);
}

@media only screen and (max-width: 767px) {
    .adu-seo-sidebar-cta {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .adu-seo-sidebar-cta h3 {
        font-size: 20px;
    }
}


/* instead of comments */

/* ============================= */
/* Dallas ADU Project SEO/AEO Bottom Section */
/* ============================= */

.adu-project-seo-bottom {
    position: relative;
    overflow: hidden;
    margin-top: 55px;
    padding: 42px 34px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(18, 60, 115, 0.10), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(18, 60, 115, 0.10);
    box-shadow: 0 24px 60px rgba(18, 60, 115, 0.10);
}

.adu-project-seo-bottom::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(192, 57, 43, 0.09);
}

.adu-project-seo-bottom::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(18, 60, 115, 0.08);
}

.adu-project-seo-bottom > * {
    position: relative;
    z-index: 2;
}

.adu-project-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(192, 57, 43, 0.10);
    color: #C0392B;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.adu-project-seo-header {
    margin-bottom: 28px;
}

.adu-project-seo-header h2 {
    margin: 0 0 14px;
    color: #123C73;
    font-size: 34px;
    line-height: 1.18;
    font-weight: 900;
}

.adu-project-seo-header p {
    margin: 0;
    color: #4f5661;
    font-size: 16px;
    line-height: 1.75;
}

.adu-project-seo-header p strong {
    color: #1E1E1E;
    font-weight: 900;
}

.adu-project-seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.adu-project-seo-card {
    min-width: 0;
    padding: 22px 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(18, 60, 115, 0.09);
    box-shadow: 0 14px 34px rgba(18, 60, 115, 0.07);
    transition: all 0.3s ease;
}

.adu-project-seo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(18, 60, 115, 0.13);
    border-color: rgba(192, 57, 43, 0.25);
}

.adu-project-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #123C73;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.adu-project-seo-card h3 {
    margin: 0 0 8px;
    color: #1E1E1E;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 900;
}

.adu-project-seo-card p {
    margin: 0;
    color: #626b76;
    font-size: 14px;
    line-height: 1.65;
}

.adu-project-aeo-answer-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 245px;
    gap: 24px;
    align-items: center;
    margin-bottom: 26px;
    padding: 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, #123C73 0%, #0b264a 100%);
    box-shadow: 0 18px 42px rgba(18, 60, 115, 0.20);
}

.adu-project-aeo-content h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
}

.adu-project-aeo-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.7;
}

.adu-project-aeo-answer-box .adu-project-kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.adu-project-aeo-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.adu-project-phone,
.adu-project-main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    transition: all 0.3s ease;
}

.adu-project-phone {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.adu-project-phone i,
.adu-project-phone span {
    color: inherit;
}

.adu-project-phone span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adu-project-main-btn {
    background: #C0392B;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(192, 57, 43, 0.25);
}

.adu-project-phone:hover,
.adu-project-main-btn:hover {
    background: #ffffff;
    color: #123C73;
    transform: translateY(-2px);
}

.adu-project-internal-links {
    margin-bottom: 26px;
}

.adu-project-internal-links h3,
.adu-project-faq-mini h3 {
    margin: 0 0 16px;
    color: #123C73;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
}

.adu-project-internal-links ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.adu-project-internal-links li {
    min-width: 0;
}

.adu-project-internal-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
    padding: 14px 15px;
    border-radius: 14px;
    background: #ffffff;
    color: #1E1E1E;
    text-decoration: none;
    border: 1px solid rgba(18, 60, 115, 0.08);
    transition: all 0.3s ease;
}

.adu-project-internal-links a span {
    min-width: 0;
    color: inherit;
    font-size: 14px;
    font-weight: 850;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adu-project-internal-links a i {
    flex-shrink: 0;
    color: #C0392B;
    transition: transform 0.3s ease;
}

.adu-project-internal-links a:hover {
    background: #123C73;
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 12px 26px rgba(18, 60, 115, 0.14);
}

.adu-project-internal-links a:hover i {
    color: #ffffff;
    transform: translateX(4px);
}

.adu-project-faq-mini {
    padding-top: 22px;
    border-top: 1px solid rgba(18, 60, 115, 0.10);
}

.adu-project-faq-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(18, 60, 115, 0.10);
}

.adu-project-faq-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.adu-project-faq-item h4 {
    margin: 0 0 7px;
    color: #1E1E1E;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 900;
}

.adu-project-faq-item p {
    margin: 0;
    color: #626b76;
    font-size: 15px;
    line-height: 1.65;
}

.adu-project-faq-item p strong {
    color: #1E1E1E;
    font-weight: 900;
}

@media only screen and (max-width: 991px) {
    .adu-project-seo-grid,
    .adu-project-aeo-answer-box,
    .adu-project-internal-links ul {
        grid-template-columns: 1fr;
    }

    .adu-project-aeo-answer-box {
        gap: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .adu-project-seo-bottom {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .adu-project-seo-header h2 {
        font-size: 26px;
    }

    .adu-project-aeo-content h3,
    .adu-project-internal-links h3,
    .adu-project-faq-mini h3 {
        font-size: 22px;
    }
}

/* ============================= */
/* ADU Project Value Box */
/* ============================= */

.adu-project-value-box {
    margin-bottom: 26px;
    padding: 28px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(18, 60, 115, 0.06) 0%, rgba(192, 57, 43, 0.05) 100%),
        #ffffff;
    border: 1px solid rgba(18, 60, 115, 0.10);
    box-shadow: 0 16px 40px rgba(18, 60, 115, 0.08);
}

.adu-project-value-head {
    margin-bottom: 22px;
}

.adu-project-value-head h3 {
    margin: 0 0 10px;
    color: #123C73;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 900;
}

.adu-project-value-head p {
    margin: 0;
    color: #4f5661;
    font-size: 15px;
    line-height: 1.7;
}

.adu-project-value-list {
    display: grid;
    gap: 14px;
}

.adu-project-value-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    padding: 18px;
    border-radius: 17px;
    background: #f8fafc;
    border: 1px solid rgba(18, 60, 115, 0.08);
    transition: all 0.3s ease;
}

.adu-project-value-item:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(18, 60, 115, 0.10);
    border-color: rgba(192, 57, 43, 0.22);
}

.adu-project-value-item > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #123C73;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.adu-project-value-item h4 {
    margin: 0 0 6px;
    color: #1E1E1E;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

.adu-project-value-item p {
    margin: 0;
    color: #626b76;
    font-size: 14px;
    line-height: 1.6;
}

@media only screen and (max-width: 767px) {
    .adu-project-value-box {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .adu-project-value-item {
        grid-template-columns: 1fr;
    }

    .adu-project-value-item > span {
        width: 40px;
        height: 40px;
    }

    .adu-project-value-head h3 {
        font-size: 22px;
    }
}


/* ============================= */
/* America ADU Before / After Pro */
/* ============================= */

.adu-before-after-slider {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.adu-ba-image-wrap {
    --ba-position: 50%;

    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: #123C73;
    box-shadow: 0 24px 60px rgba(18, 60, 115, 0.22);
    border: 1px solid rgba(18, 60, 115, 0.12);
    user-select: none;
    touch-action: none;
    cursor: ew-resize;
}

/* Keeps slider ratio clean */
.adu-ba-image-wrap::before {
    content: "";
    display: block;
    padding-top: 62%;
}

.adu-ba-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.adu-ba-before {
    z-index: 1;
}

.adu-ba-after-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: var(--ba-position);
    overflow: hidden;
}

.adu-ba-after {
    width: 100%;
    height: 100%;
    min-width: 100%;
}

/* Labels */
.adu-ba-label {
    position: absolute;
    top: 18px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.adu-ba-label-before {
    left: 18px;
    background: rgba(30, 30, 30, 0.72);
}

.adu-ba-label-after {
    right: 18px;
    background: rgba(192, 57, 43, 0.88);
}

/* Handle */
.adu-ba-handle {
    position: absolute;
    top: 0;
    left: var(--ba-position);
    z-index: 6;
    width: 0;
    height: 100%;
    padding: 0;
    border: none;
    background: transparent;
    transform: translateX(-50%);
    cursor: ew-resize;
    outline: none;
}

.adu-ba-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
    background: #ffffff;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}

.adu-ba-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    color: #123C73;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
    border: 4px solid rgba(255, 255, 255, 0.55);
    transition: all 0.25s ease;
}

.adu-ba-circle i {
    color: #123C73;
    font-size: 18px;
    line-height: 1;
}

.adu-ba-image-wrap:hover .adu-ba-circle,
.adu-ba-handle:focus .adu-ba-circle {
    background: #C0392B;
    transform: translate(-50%, -50%) scale(1.06);
}

.adu-ba-image-wrap:hover .adu-ba-circle i,
.adu-ba-handle:focus .adu-ba-circle i {
    color: #ffffff;
}

/* Hidden range input but still usable */
.adu-ba-range {
    position: absolute;
    inset: 0;
    z-index: 7;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}

/* Optional shine */
.adu-ba-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    background:
        linear-gradient(
            120deg,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 25%,
            transparent 70%,
            rgba(255, 255, 255, 0.06) 100%
        );
    pointer-events: none;
}

/* Mobile */
@media only screen and (max-width: 767px) {
    .adu-ba-image-wrap {
        border-radius: 18px;
    }

    .adu-ba-image-wrap::before {
        padding-top: 74%;
    }

    .adu-ba-circle {
        width: 48px;
        height: 48px;
    }

    .adu-ba-circle i {
        font-size: 15px;
    }

    .adu-ba-label {
        top: 12px;
        padding: 7px 10px;
        font-size: 10px;
    }

    .adu-ba-label-before {
        left: 12px;
    }

    .adu-ba-label-after {
        right: 12px;
    }
}

.title-holder p{
    color: #123C73;
}


/* ============================= */
/* Dallas ADU Project Extra SEO Blocks */
/* ============================= */

.adu-project-overview-content {
    margin-top: 38px;
    padding: 34px 30px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(18, 60, 115, 0.10);
    box-shadow: 0 18px 45px rgba(18, 60, 115, 0.08);
}

.adu-project-overview-content h2 {
    margin: 0 0 22px;
    color: #123C73;
    font-size: 30px;
    line-height: 1.22;
    font-weight: 900;
}

.adu-project-overview-content .single-text {
    height: 100%;
    padding: 22px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(18, 60, 115, 0.08);
}

.adu-project-overview-content .single-text h3 {
    margin: 0 0 10px;
    color: #1E1E1E;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
}

.adu-project-overview-content .single-text p,
.adu-project-overview-content .bottom-text p {
    margin: 0;
    color: #626b76;
    font-size: 15px;
    line-height: 1.7;
}

.adu-project-overview-content .bottom-text {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(18, 60, 115, 0.10);
}

.adu-project-detail-page .text-holder .blog-title {
    color: #123C73;
    font-size: 34px;
    line-height: 1.18;
    font-weight: 900;
}

.adu-project-detail-page .text-holder .text p {
    color: #4f5661;
    font-size: 16px;
    line-height: 1.78;
}

.adu-project-detail-page .meta-info li a {
    font-weight: 800;
}

.adu-project-local-seo-box {
    margin-bottom: 26px;
    padding: 28px;
    border-radius: 22px;
    background: #ffffff;
    border-left: 5px solid #C0392B;
    box-shadow: 0 16px 40px rgba(18, 60, 115, 0.08);
}

.adu-project-local-seo-box h3 {
    margin: 0 0 12px;
    color: #123C73;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 900;
}

.adu-project-local-seo-box p {
    margin: 0 0 12px;
    color: #626b76;
    font-size: 15px;
    line-height: 1.7;
}

.adu-project-local-seo-box p:last-child {
    margin-bottom: 0;
}

.adu-project-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.adu-project-feature-card {
    padding: 24px 22px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(18, 60, 115, 0.10);
    box-shadow: 0 14px 34px rgba(18, 60, 115, 0.07);
    transition: all 0.3s ease;
}

.adu-project-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(192, 57, 43, 0.30);
    box-shadow: 0 20px 46px rgba(18, 60, 115, 0.13);
}

.adu-project-feature-card i {
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #123C73;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.adu-project-feature-card h4 {
    margin: 0 0 8px;
    color: #1E1E1E;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 900;
}

.adu-project-feature-card p {
    margin: 0;
    color: #626b76;
    font-size: 14px;
    line-height: 1.65;
}

.adu-project-final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 28px;
    align-items: center;
    margin-top: 28px;
    padding: 30px;
    border-radius: 22px;
    background: linear-gradient(135deg, #123C73 0%, #0b264a 100%);
    box-shadow: 0 22px 52px rgba(18, 60, 115, 0.22);
}

.adu-project-final-cta h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.22;
    font-weight: 900;
}

.adu-project-final-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.7;
}

.adu-project-final-cta .adu-project-kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.adu-project-final-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.adu-project-phone.dark,
.adu-project-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 0;
    width: 100%;
    padding: 13px 14px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    transition: all 0.3s ease;
}

.adu-project-phone.dark i,
.adu-project-phone.dark span,
.adu-project-email i,
.adu-project-email span {
    color: inherit;
}

.adu-project-email span,
.adu-project-phone.dark span {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adu-project-phone.dark:hover,
.adu-project-email:hover {
    background: #ffffff;
    color: #123C73;
    transform: translateY(-2px);
}

@media only screen and (max-width: 991px) {
    .adu-project-feature-grid,
    .adu-project-final-cta {
        grid-template-columns: 1fr;
    }

    .adu-project-final-actions {
        max-width: 360px;
    }
}

@media only screen and (max-width: 767px) {
    .adu-project-overview-content {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .adu-project-overview-content h2,
    .adu-project-detail-page .text-holder .blog-title {
        font-size: 25px;
    }

    .adu-project-local-seo-box,
    .adu-project-final-cta {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .adu-project-final-cta h3 {
        font-size: 23px;
    }
}