/* Smart Widgets Premium Styles */

/* Breadcrumbs */
.pl-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.pl-breadcrumb-item {
    display: flex;
    align-items: center;
}

.pl-breadcrumb-item a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

.pl-breadcrumb-item a:hover {
    color: var(--e-global-color-accent, #d4af37);
}

.pl-breadcrumb-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 12px;
    color: #ccc;
}

/* Related Posts grid */
.pl-related-posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pl-related-post-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.pl-related-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pl-related-post-thumbnail {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.pl-related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pl-related-post-card:hover .pl-related-post-thumbnail img {
    transform: scale(1.1);
}

.pl-related-post-content {
    padding: 24px;
}

.pl-related-post-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #222;
}

.pl-related-post-title a {
    text-decoration: none;
    color: inherit;
    background-image: linear-gradient(transparent 90%, var(--e-global-color-accent, #d4af37) 10%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 0.4s ease;
}

.pl-related-post-card:hover .pl-related-post-title a {
    background-size: 100% 100%;
}

/* Content Converter Smart Tabs */
.pl-smart-content-tabs {
    width: 100%;
    border-radius: 20px;
}

.pl-smart-content-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.pl-smart-content-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid #eee;
    padding: 0 5px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    gap: 30px;
}

.pl-smart-content-nav::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.pl-smart-content-tab-btn {
    padding: 15px 0;
    position: relative;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #999;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pl-smart-content-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    inset-inline-start: 0;
    width: 0;
    height: 3px;
    background: var(--e-global-color-accent, #d4af37);
    transition: width 0.3s ease;
}

.pl-smart-content-tab-btn.active {
    color: #222;
}

.pl-smart-content-tab-btn.active::after {
    width: 100%;
}

.pl-smart-panels-container {
    padding: 30px 0;
}

.pl-smart-content-panel {
    display: none;
    animation: plFadeUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.pl-smart-content-panel.active {
    display: block;
}

@keyframes plFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Converter Accordion */
.pl-smart-content-accordion {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.pl-smart-content-acc-item {
    border-bottom: 1px solid #eee;
}

.pl-smart-content-acc-item:last-child {
    border-bottom: none;
}

.pl-smart-content-acc-header {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #222;
}

.pl-acc-icon-start .pl-acc-icon {
    order: -1;
}

.pl-acc-align-center .pl-smart-content-acc-header {
    justify-content: center;
    gap: 15px;
}

.pl-acc-align-left .pl-smart-content-acc-header {
    justify-content: flex-start;
    gap: 15px;
}

.pl-acc-align-right .pl-smart-content-acc-header {
    justify-content: flex-end;
    gap: 15px;
}

.pl-acc-align-justify .pl-smart-content-acc-header {
    justify-content: space-between;
}

.pl-smart-content-acc-header .pl-acc-title {
    transition: color 0.3s ease;
}

.pl-smart-content-acc-header:hover {
    background: rgba(0, 0, 0, 0.02);
}

.pl-smart-content-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.pl-smart-content-acc-item.active .pl-smart-content-acc-content {
    max-height: 5000px;
    transition: max-height 1s ease-in-out;
}

.pl-smart-content-acc-inner {
    padding: 24px 30px 40px;
    line-height: 1.8;
    color: #444;
}

.pl-smart-content-acc-header::after {
    display: none;
    /* Logic now uses Elementor icons */
}

/* Two-column Inner Layout */
.pl-smart-two-col {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.pl-smart-content-img {
    flex: 0 0 35%;
    max-width: 400px;
}

.pl-smart-content-img img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pl-smart-content-text {
    flex: 1;
}

[dir="rtl"] .pl-smart-content-text {
    text-align: right;
}

@media (max-width: 767px) {
    .pl-smart-two-col {
        flex-direction: column;
    }

    .pl-smart-content-img {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.pl-smart-content-rest {
    margin-top: 20px;
    width: 100%;
    line-height: 1.8;
}

.pl-smart-inner-wrap {
    display: flex;
    flex-direction: column;
}

.pl-acc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    font-size: 16px;
}

.pl-acc-icon-open,
.pl-acc-icon-close {
    position: absolute;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-acc-icon-close {
    opacity: 0;
    transform: rotate(-90deg);
}

.pl-smart-content-acc-item.active .pl-acc-icon-open {
    opacity: 0;
    transform: rotate(90deg);
}

.pl-smart-content-acc-item.active .pl-acc-icon-close {
    opacity: 1;
    transform: rotate(0);
}

/* Premium Icon List Styles */
.pl-smart-content-list {
    list-style: none !important;
    padding-inline-start: 0 !important;
    margin-top: 15px !important;
}

.pl-smart-content-list li {
    position: relative;
    padding-inline-start: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.pl-smart-content-list li::before {
    content: '\f00c';
    /* FontAwesome Checkmark */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    inset-inline-start: 0;
    top: 4px;
    color: var(--e-global-color-accent, #d4af37);
    font-size: 14px;
    transition: color 0.3s ease;
}

/* Smart Post Meta */
.pl-smart-meta-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pl-meta-item {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 1;
}

.pl-meta-icon {
    margin-inline-end: 8px;
    font-size: 16px;
}

.pl-meta-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pl-meta-item a:hover {
    color: var(--e-global-color-accent, #d4af37);
}

.pl-meta-item:not(:last-child)::after {
    color: #ccc;
    content: '|';
    margin: 0 10px;
}

/* Smart Maps */
.pl-smart-map-container {
    width: 100%;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: #f9f9f9;
}

/* Agency Layout (Responsive Columns) */
.pl-smart-agency-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.pl-agency-left {
    flex: 1;
}

.pl-agency-right {
    flex: 0 0 45%;
    /* Right column for lists */
}

[dir="rtl"] .pl-agency-left,
[dir="rtl"] .pl-agency-right {
    text-align: right;
}

@media (max-width: 991px) {
    .pl-smart-agency-layout {
        flex-direction: column;
    }

    .pl-agency-right {
        flex: 0 0 100%;
        width: 100%;
    }
}

/* Premium Numbered List Style (01, 02 style) */
.pl-premium-list {
    display: flex;
    flex-direction: column;
}

.pl-premium-list-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.pl-premium-list-item:first-child {
    padding-top: 0;
}

.pl-premium-list-item:last-child {
    border-bottom: none;
}

.pl-premium-list-index {
    font-size: 24px;
    font-weight: 300;
    color: var(--e-global-color-accent, #d4af37);
    margin-inline-end: 30px;
    line-height: 1;
    min-width: 40px;
}

.pl-premium-list-content {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Checkmark and Bullet Styles (Standard look) */
.pl-list-style-check .pl-premium-list-item,
.pl-list-style-bullet .pl-premium-list-item {
    border-bottom: none;
    padding: 8px 0;
}

.pl-list-style-check .pl-premium-list-index,
.pl-list-style-bullet .pl-premium-list-index {
    font-size: 18px;
    margin-inline-end: 15px;
    min-width: 25px;
}

.pl-list-style-check .pl-premium-list-index i {
    color: var(--e-global-color-accent, #d4af37);
}

/* Amenities Grid */
.pl-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    width: 100%;
}

.pl-amenity-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pl-amenity-icon {
    font-size: 20px;
    color: var(--e-global-color-accent, #d4af37);
    margin-inline-end: 20px;
    width: 30px;
    text-align: center;
}

.pl-amenity-text {
    font-size: 16px;
    color: #222;
}

.pl-amenities-layout .pl-agency-left {
    padding-inline-end: 40px;
}

@media (max-width: 767px) {
    .pl-amenities-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pl-amenities-layout .pl-agency-left {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

/* Premium Steps Layout */
.pl-smart-content-steps {
    padding: 20px 0;
}

.pl-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pl-step-card {
    display: flex;
    gap: 25px;
}

.pl-step-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
    flex-shrink: 0;
}

.pl-step-marker {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid var(--e-global-color-primary, #c5a059);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.pl-step-index {
    color: var(--e-global-color-primary, #c5a059);
    font-weight: 700;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
}

.pl-step-line {
    width: 2px;
    background: linear-gradient(to bottom, var(--e-global-color-primary, #c5a059), rgba(197, 160, 89, 0.1));
    flex-grow: 1;
    margin: 5px 0;
}

.pl-step-main {
    padding-bottom: 40px;
    flex-grow: 1;
}

.pl-step-title {
    margin-top: 8px;
    margin-bottom: 20px;
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.pl-step-body {
    color: #555;
    line-height: 1.8;
}

/* Mobile Adjustments for Steps */
@media (max-width: 767px) {
    .pl-step-card {
        gap: 15px;
    }

    .pl-step-sidebar {
        width: 40px;
    }

    .pl-step-marker {
        width: 36px;
        height: 36px;
    }

    .pl-step-index {
        font-size: 14px;
    }

    .pl-step-title {
        font-size: 20px;
        margin-top: 5px;
    }
}

/* Smart Innovations Widget */
.pl-smart-innovations-wrapper {
    width: 100%;
    margin: 0 auto;
}

.pl-si-second-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--e-global-color-accent, #d4af37);
    margin-bottom: 15px;
}

[dir="rtl"] .pl-si-second-title {
    letter-spacing: 0;
}

.pl-si-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #111;
}

.pl-si-body-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.pl-si-body-content p {
    margin-bottom: 20px;
}

.pl-si-section-title {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 25px;
    color: #111;
    position: relative;
    display: inline-block;
}

.pl-si-section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    inset-inline-start: 0;
    width: 40px;
    height: 3px;
    background: var(--e-global-color-accent, #d4af37);
}

/* Innovation Highlights (Auto-converted) */
.pl-si-highlight-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-inline-start: 5px solid var(--e-global-color-accent, #d4af37);
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pl-si-highlight-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.pl-si-highlight-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.pl-si-highlight-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Gallery Grid */
.pl-si-gallery {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.pl-si-cols-1 {
    grid-template-columns: 1fr;
}

.pl-si-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.pl-si-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.pl-si-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.pl-si-gallery-item {
    overflow: hidden;
    position: relative;
}

.pl-si-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pl-si-gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

@media (max-width: 767px) {
    .pl-si-main-title {
        font-size: 36px;
    }

    .pl-si-cols-2,
    .pl-si-cols-3,
    .pl-si-cols-4 {
        grid-template-columns: 1fr;
    }
}

.pl-si-placeholder {
    padding: 40px;
    border: 2px dashed #ccc;
    text-align: center;
    color: #888;
}

/* Smart Press Widget */
.pl-smart-press-wrapper {
    width: 100%;
    margin: 0 auto;
}

.pl-sp-featured-image {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pl-sp-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pl-sp-meta {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pl-sp-tax-item {
    color: var(--e-global-color-accent, #d4af37);
}

.pl-sp-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 35px;
    color: #111;
}

.pl-sp-content-block {
    margin-bottom: 40px;
}

.pl-sp-content-image {
    margin-bottom: 25px;
}

.pl-sp-content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.pl-sp-content-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.pl-sp-content-text p {
    margin-bottom: 20px;
}

.pl-sp-placeholder {
    padding: 40px;
    border: 2px dashed #ccc;
    text-align: center;
    color: #888;
}

/* RTL Support for Arabic Press Posts */
[dir="rtl"] .pl-sp-meta {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

[dir="rtl"] .pl-sp-title,
[dir="rtl"] .pl-sp-content-text {
    text-align: right;
}

/* Smart Services Widget */
.pl-smart-services-wrapper {
    width: 100%;
}

.pl-ss-featured-image {
    margin-bottom: 35px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.pl-ss-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pl-ss-second-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--e-global-color-accent, #d4af37);
    margin-bottom: 12px;
}

.pl-ss-main-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #111;
}

.pl-ss-partner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #f8f8f8;
    border-radius: 100px;
    font-size: 14px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.pl-ss-partner i {
    color: var(--e-global-color-accent, #d4af37);
    font-size: 16px;
}

.pl-ss-body-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.pl-ss-gallery {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.pl-ss-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.pl-ss-gallery-item:hover img {
    transform: scale(1.03);
}

.pl-ss-placeholder {
    padding: 40px;
    border: 2px dashed #ccc;
    text-align: center;
    color: #888;
}

[dir="rtl"] .pl-ss-partner {
    flex-direction: row-reverse;
}

/* Smart Interiors Widget */
.pl-smart-interiors-wrapper {
    width: 100%;
}

.pl-si-featured-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.pl-si-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pl-si-second-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--e-global-color-accent, #d4af37);
    margin-bottom: 12px;
}

.pl-si-main-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #111;
}

.pl-si-partner {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--e-global-color-accent, #d4af37);
}

.pl-si-partner-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 5px;
}

.pl-si-partner-name {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.pl-si-body-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 45px;
}

.pl-si-gallery {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.pl-si-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pl-si-gallery-item:hover img {
    transform: scale(1.05);
}

.pl-si-placeholder {
    padding: 40px;
    border: 2px dashed #ccc;
    text-align: center;
    color: #888;
}

[dir="rtl"] .pl-si-partner {
    padding-left: 0;
    padding-right: 20px;
    border-left: none;
    border-right: 3px solid var(--e-global-color-accent, #d4af37);
    text-align: right;
}

[dir="rtl"] .pl-si-title,
[dir="rtl"] .pl-si-body-content {
    text-align: right;
}

/* Smart Projects Widget */
.pl-smart-project-wrapper {
    width: 100%;
}

.pl-pj-banner {
    position: relative;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pl-pj-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.pl-pj-sold-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #e74c3c;
    color: #fff;
    padding: 10px 25px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.pl-pj-second-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--e-global-color-accent, #d4af37);
    margin-bottom: 12px;
}

.pl-pj-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #111;
}

.pl-pj-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.pl-pj-location {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #555;
    font-weight: 600;
}

.pl-pj-location i {
    color: var(--e-global-color-accent, #d4af37);
}

.pl-pj-ctas {
    display: flex;
    gap: 15px;
}

.pl-pj-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border: 1px solid #111;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #111;
}

.pl-pj-btn.is-primary {
    background: #111;
    color: #fff;
}

.pl-pj-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pl-pj-description {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 60px;
    max-width: 900px;
}

/* Contents Layouts */
.pl-pj-contents-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Alternating Layout */
.pl-pj-cols-alternating .pl-pj-content-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

.pl-pj-cols-alternating .pl-pj-content-item:nth-child(even) {
    flex-direction: row-reverse;
}

.pl-pj-item-image {
    flex: 0 0 50%;
    border-radius: 20px;
    overflow: hidden;
}

.pl-pj-item-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.pl-pj-content-item:hover .pl-pj-item-image img {
    transform: scale(1.05);
}

.pl-pj-item-info {
    flex: 1;
}

.pl-pj-item-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.pl-pj-item-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Grid Layout */
.pl-pj-cols-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pl-pj-cols-grid .pl-pj-content-item {
    flex-direction: column;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pl-pj-cols-grid .pl-pj-item-image {
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .pl-pj-cols-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pl-pj-cols-alternating .pl-pj-content-item,
    .pl-pj-cols-alternating .pl-pj-content-item:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .pl-pj-title {
        font-size: 32px;
    }

    .pl-pj-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pl-pj-cols-grid {
        grid-template-columns: 1fr;
    }
}

.pl-pj-placeholder {
    padding: 40px;
    border: 2px dashed #ccc;
    text-align: center;
    color: #888;
}

[dir="rtl"] .pl-pj-sold-badge {
    right: auto;
    left: 30px;
}

[dir="rtl"] .pl-pj-partner,
[dir="rtl"] .pl-pj-header,
[dir="rtl"] .pl-pj-description,
[dir="rtl"] .pl-pj-item-info {
    text-align: right;
}

/* Smart Portfolio Grid Widget */
.pl-portfolio-grid-wrapper {
    width: 100%;
}

.pl-pg-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.pl-pg-filters {
    display: flex;
    gap: 30px;
}

.pl-pg-filter-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #999;
    cursor: pointer;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.pl-pg-filter-btn:hover {
    color: #111;
}

.pl-pg-filter-btn.is-active {
    color: #111;
}

.pl-pg-filter-btn.is-active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--e-global-color-accent, #d4af37);
}

.pl-pg-search-container {
    position: relative;
    width: 300px;
}

.pl-pg-search-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 14px;
}

.pl-pg-search-input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 100px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.pl-pg-search-input:focus {
    border-color: var(--e-global-color-accent, #d4af37);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pl-pg-grid {
    display: grid;
    gap: 50px;
    position: relative;
    min-height: 400px;
}

.pl-pg-grid.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

.pl-pg-cols-1 {
    grid-template-columns: 1fr;
}

.pl-pg-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.pl-pg-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.pl-pg-card {
    transition: all 0.4s ease;
}

.pl-pg-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 25px;
}

.pl-pg-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pl-pg-card:hover .pl-pg-card-image img {
    transform: scale(1.05);
}

.pl-pg-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.pl-pg-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.pl-pg-card-info {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.pl-pg-learn-more {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    border-bottom: 2px solid #111;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.pl-pg-learn-more:hover {
    color: var(--e-global-color-accent, #d4af37);
    border-bottom-color: var(--e-global-color-accent, #d4af37);
}

.pl-pg-loader-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.is-loading .pl-pg-loader-overlay {
    display: block;
}

.pl-pg-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top-color: var(--e-global-color-accent, #d4af37);
    border-radius: 50%;
    animation: pl-spin 0.8s linear infinite;
}

@keyframes pl-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .pl-pg-top-bar {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .pl-pg-search-container {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .pl-pg-filters {
        gap: 15px;
        flex-wrap: wrap;
    }

    .pl-pg-cols-2,
    .pl-pg-cols-3 {
        grid-template-columns: 1fr;
    }
}

[dir="rtl"] .pl-pg-search-container i {
    left: auto;
    right: 15px;
}

[dir="rtl"] .pl-pg-search-input {
    padding: 12px 40px 12px 15px;
}

[dir="rtl"] .pl-pg-card-title,
[dir="rtl"] .pl-pg-card-desc,
[dir="rtl"] .pl-pg-card-info {
    text-align: right;
}

/* Investor Features Widget */
.pl-inv-features-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.pl-inv-feature-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.pl-inv-feature-card:hover {
    transform: translateY(-5px);
}

.pl-inv-feature-icon {
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-inv-feature-icon img {
    max-width: 60px;
    height: auto;
}

.pl-inv-feature-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
}

/* Investor Advantages Widget */
.pl-inv-advantages-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pl-inv-advantage-card {
    position: relative;
    padding-left: 30px;
    border-left: 4px solid var(--e-global-color-accent, #d4af37);
}

.pl-inv-advantage-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.pl-inv-advantage-icon img {
    max-width: 30px;
    height: auto;
}

.pl-inv-advantage-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--e-global-color-accent, #d4af37);
    margin: 0;
}

.pl-inv-advantage-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Agent Recruitment Widget */
.pl-agent-recruit-wrapper {
    width: 100%;
}

.pl-agent-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--e-global-color-accent, #d4af37);
    margin-bottom: 15px;
}

.pl-agent-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #111;
}

.pl-agent-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 50px;
    max-width: 800px;
}

.pl-agent-form-header {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    border-top: 4px solid var(--e-global-color-accent, #d4af37);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.pl-agent-form-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #111;
}

.pl-agent-form-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

@media (max-width: 767px) {
    .pl-inv-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .pl-agent-title {
        font-size: 32px;
    }

    .pl-inv-advantage-title {
        font-size: 18px;
    }
}

[dir="rtl"] .pl-inv-advantage-card {
    padding-left: 0;
    padding-right: 30px;
    border-left: none;
    border-right: 4px solid var(--e-global-color-accent, #d4af37);
    text-align: right;
}

[dir="rtl"] .pl-agent-recruit-wrapper {
    text-align: right;
}

/* Language Switcher Widget */
.pl-lang-switcher-wrapper,
.pl-lang-switcher-wrapper * {
    box-sizing: border-box;
}

.pl-lang-switcher-wrapper {
    position: relative;
    display: inline-block;
    background: transparent !important;
}

.pl-lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    font-size: inherit;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
    line-height: 1 !important;
}

.pl-lang-toggle svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

/* Sticky Header Scroll Effect Support - Expanded Selectors */
.elementor-sticky--effects .pl-lang-toggle,
.is-scrolled .pl-lang-toggle,
.pl-scrolled .pl-lang-toggle {
    transition: color 0.3s ease, stroke 0.3s ease;
}

.pl-lang-dropdown-wrap {
    position: relative;
    background: transparent !important;
}

.pl-lang-dropdown,
ul.pl-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    margin: 10px 0 0 !important;
    padding: 10px 0 !important;
    list-style: none !important;
    list-style-type: none !important;
    background: var(--pl-dropdown-bg, #111) !important;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pl-lang-dropdown::before {
    display: none !important;
}

.is-open .pl-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.is-open .pl-lang-toggle svg {
    transform: rotate(180deg);
}

.pl-lang-dropdown li,
ul.pl-lang-dropdown li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
    display: block !important;
}

.pl-lang-dropdown li::before {
    display: none !important;
}

.pl-lang-dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px !important;
    color: var(--pl-dropdown-link-color, #fff) !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: all 0.2s ease;
    background: transparent !important;
    width: 100%;
}

.pl-lang-dropdown li a:hover {
    background: rgba(212, 175, 55, 0.1) !important;
    color: var(--e-global-color-accent, #d4af37) !important;
}

.pl-lang-list,
ul.pl-lang-list {
    display: flex;
    gap: 25px;
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
    align-items: center;
}

.pl-lang-list li,
ul.pl-lang-list li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pl-lang-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    color: inherit;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.pl-lang-list li.active a {
    color: var(--e-global-color-accent, #d4af37);
}

.pl-lang-list li.active a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.pl-lang-flag {
    display: inline-flex;
    line-height: 1;
    align-items: center;
    flex-shrink: 0;
}

.pl-lang-flag img {
    width: 20px !important;
    min-width: 20px !important;
    height: auto !important;
    border-radius: 2px;
    display: block !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.pl-lang-name {
    white-space: nowrap;
}

[dir="rtl"] .pl-lang-dropdown {
    left: 0;
    right: auto;
}

[dir="rtl"] .pl-lang-toggle {
    flex-direction: row-reverse;
}

/* FIX: Prevent horizontal overflow from dropdown and ensure full-width header */
.pl-lang-switcher-wrapper {
    max-width: 100%;
}

@media (max-width: 1024px) {

    /* Ensure the dropdown doesn't cause overflow on very small screens */
    .pl-lang-dropdown {
        max-width: calc(100vw - 40px);
    }
}

/* FIX: Force sticky containers to be full-width to prevent "shrinking" on resize */
/* This overrides Elementor's inline width calculation which often gets stuck */
.elementor-sticky--active.pl-scroll-content,
.elementor-sticky--active.elementor-section,
.elementor-sticky--active.e-con {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
}

/* Ensure inner boxed containers still respect their constraints */
.elementor-sticky--active.e-con-boxed>.e-con-inner {
    max-width: var(--container-widget-width, 1140px);
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Smart Press Premium Layouts */
.pl-smart-press-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.pl-sp-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    gap: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 20px;
}

.pl-sp-premium-gallery {
    position: relative;
    margin-bottom: 40px;
}

.pl-sp-gallery-main {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.pl-sp-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.pl-sp-gallery-thumbs {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.pl-sp-thumb {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.pl-sp-thumb.is-active {
    border-color: var(--e-global-color-accent, #d4af37);
    opacity: 1;
}

.pl-sp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Styles */
.pl-sp-cta-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.pl-sp-btn {
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--e-global-color-accent, #d4af37);
}

.pl-sp-btn.brochure {
    background: transparent;
    color: var(--e-global-color-accent, #d4af37);
}

.pl-sp-btn.booking {
    background: var(--e-global-color-accent, #d4af37);
    color: #fff;
}

.pl-sp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.pl-sp-gallery-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: var(--e-global-color-accent, #d4af37);
    transition: all 0.3s ease;
    min-width: 60px;
}

.pl-sp-gallery-trigger i {
    font-size: 24px;
    margin-bottom: 5px;
}

.pl-sp-gallery-trigger span {
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
}

.pl-sp-gallery-trigger:hover {
    opacity: 0.8;
}

/* Response */
@media (max-width: 768px) {
    .pl-sp-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .pl-sp-cta-wrapper {
        width: 100%;
        justify-content: space-between;
    }

    .pl-sp-thumb {
        width: 80px;
        height: 60px;
    }
}

/* ============================================================
   SHARED: Entity Placeholder (Editor Mode)
   ============================================================ */
.pl-entity-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border: 2px dashed #ccc;
    border-radius: 12px;
    background: #fafafa;
    color: #888;
    text-align: center;
    gap: 12px;
    padding: 40px;
}

.pl-entity-placeholder .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: #ccc;
}

.pl-entity-placeholder p {
    margin: 0;
    font-size: 14px;
    max-width: 320px;
}

/* ============================================================
   SHARED: Gallery Grids (used by Innovations, Interiors, 
   Services, Projects)
   ============================================================ */
.pl-si-gallery-grid,
.pl-int-gallery-grid,
.pl-svc-gallery-grid,
.pl-proj-gallery-grid {
    display: grid;
    grid-template-columns: repeat(var(--pl-gallery-cols, 2), 1fr);
    gap: 16px;
}

/* Masonry layouts */
.pl-si-gallery-masonry,
.pl-int-gallery-masonry {
    columns: var(--pl-gallery-cols, 2);
    column-gap: 16px;
}

.pl-si-gallery-masonry .pl-si-gallery-item,
.pl-int-gallery-masonry .pl-int-gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
}

/* Gallery items */
.pl-si-gallery-item,
.pl-int-gallery-item,
.pl-svc-gallery-item,
.pl-proj-gallery-item {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.pl-si-gallery-item img,
.pl-int-gallery-item img,
.pl-svc-gallery-item img,
.pl-proj-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.4s ease;
}

/* Hover effects */
.pl-si-gallery-featured.hover-zoom .pl-si-gallery-item img,
.pl-int-gallery-featured.hover-zoom .pl-int-gallery-item img,
.pl-si-gallery-grid.hover-zoom .pl-si-gallery-item:hover img,
.pl-int-gallery-grid.hover-zoom .pl-int-gallery-item:hover img {
    transform: scale(1.07);
}

.pl-si-gallery-grid.hover-lift .pl-si-gallery-item:hover,
.pl-int-gallery-grid.hover-lift .pl-int-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Hero / Featured first image */
.pl-si-gallery-hero img,
.pl-int-gallery-hero img,
.pl-proj-gallery-hero img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    max-height: 600px;
}

/* Overlay on hover */
.pl-int-gallery-item.has-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pl-int-gallery-item.has-overlay:hover::after {
    opacity: 1;
}

/* Aspect ratio wrapper */
.pl-int-gallery-grid.ratio-4-3 .pl-int-gallery-item,
.pl-int-gallery-grid.ratio-16-9 .pl-int-gallery-item,
.pl-int-gallery-grid.ratio-1-1 .pl-int-gallery-item,
.pl-int-gallery-grid.ratio-3-4 .pl-int-gallery-item {
    position: relative;
    overflow: hidden;
}

.pl-int-gallery-grid.ratio-4-3 .pl-int-gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl-int-gallery-grid.ratio-4-3 .pl-int-gallery-item {
    padding-bottom: 75%;
}

.pl-int-gallery-grid.ratio-16-9 .pl-int-gallery-item {
    padding-bottom: 56.25%;
}

.pl-int-gallery-grid.ratio-16-9 .pl-int-gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl-int-gallery-grid.ratio-1-1 .pl-int-gallery-item {
    padding-bottom: 100%;
}

.pl-int-gallery-grid.ratio-1-1 .pl-int-gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl-int-gallery-grid.ratio-3-4 .pl-int-gallery-item {
    padding-bottom: 133.33%;
}

.pl-int-gallery-grid.ratio-3-4 .pl-int-gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   SMART INNOVATIONS WIDGET (Enhanced)
   ============================================================ */
.pl-smart-innovations-wrapper {
    width: 100%;
}

/* Tags */
.pl-si-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.pl-si-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    background: #f0f0f0;
    color: #555;
    transition: all 0.25s ease;
}

.pl-si-tag:hover {
    background: var(--e-global-color-accent, #d4af37);
    color: #fff;
}

/* ============================================================
   SMART INTERIORS WIDGET (Enhanced)
   ============================================================ */
.pl-smart-interiors-wrapper {
    width: 100%;
}

.pl-int-sub-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--e-global-color-accent, #d4af37);
    margin-bottom: 10px;
}

.pl-int-main-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}

.pl-int-designer-badge {
    display: inline-flex;
    flex-direction: column;
    padding: 12px 20px;
    border-inline-start: 4px solid var(--e-global-color-accent, #d4af37);
    background: #f9f7f2;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
    gap: 4px;
}

.pl-int-designer-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    font-weight: 600;
}

.pl-int-designer-name {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.pl-int-body-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

/* ============================================================
   SMART SERVICES WIDGET (Enhanced)
   ============================================================ */
.pl-smart-services-wrapper {
    width: 100%;
}

.pl-svc-sub-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--e-global-color-accent, #d4af37);
    margin-bottom: 10px;
}

.pl-svc-main-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}

.pl-svc-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f8f8f8;
    border-radius: 100px;
    font-size: 14px;
    color: #333;
    margin-bottom: 28px;
    border: 1px solid #eee;
}

.pl-svc-partner-badge i {
    color: var(--e-global-color-accent, #d4af37);
    font-size: 16px;
}

.pl-svc-body-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

/* Side layout */
.pl-svc-side-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.pl-svc-layout-side.pl-svc-img-right .pl-svc-side-layout {
    flex-direction: row-reverse;
}

.pl-svc-featured-img {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.pl-svc-featured-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.pl-svc-featured-img:hover img {
    transform: scale(1.04);
}

.pl-svc-featured-img--above {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    flex: unset;
}

.pl-svc-side-content {
    flex: 1;
}

@media (max-width: 768px) {

    .pl-svc-side-layout,
    .pl-svc-layout-side.pl-svc-img-right .pl-svc-side-layout {
        flex-direction: column;
    }

    .pl-svc-featured-img {
        flex: 0 0 100%;
    }
}

/* ============================================================
   SMART PORTFOLIO GRID WIDGET (Enhanced)
   ============================================================ */
.pl-portfolio-grid-wrapper {
    width: 100%;
}

.pl-pf-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.pl-pf-filter-btn {
    padding: 10px 24px;
    border: 1.5px solid #eee;
    background: #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #666;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.pl-pf-filter-btn:hover {
    border-color: var(--e-global-color-primary, #c5a059);
    color: var(--e-global-color-primary, #c5a059);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pl-pf-filter-btn.active {
    background: var(--e-global-color-primary, #c5a059);
    border-color: var(--e-global-color-primary, #c5a059);
    color: #fff;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.pl-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(var(--pl-grid-cols, 3), 1fr);
    gap: 24px;
    transition: all 0.5s ease;
}

/* Card Styles */
.pl-pf-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pl-card-style-elevated .pl-pf-card {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.pl-card-style-elevated .pl-pf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.pl-card-style-flat .pl-pf-card {
    border: 1.5px solid #eee;
}

.pl-card-style-flat .pl-pf-card:hover {
    border-color: var(--e-global-color-accent, #d4af37);
}

/* Thumbnail */
.pl-pf-card-thumb {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.pl-pf-card-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pl-pf-card:hover .pl-pf-card-thumb img {
    transform: scale(1.08);
}

.pl-pf-cat-badge {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    padding: 5px 14px;
    background: var(--e-global-color-accent, #d4af37);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    z-index: 2;
}

/* Body */
.pl-pf-card-body {
    padding: 22px 24px 24px;
}

.pl-pf-location {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pl-pf-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
    color: #111;
}

.pl-pf-card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

.pl-pf-card-title a:hover {
    color: var(--e-global-color-accent, #d4af37);
}

.pl-pf-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

/* Stats Bar */
.pl-pf-stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 12px 16px;
    background: #f9f7f2;
    border-radius: 10px;
    margin-bottom: 18px;
}

.pl-pf-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555;
}

.pl-pf-stat-icon {
    font-size: 13px;
    color: var(--e-global-color-accent, #d4af37);
}

.pl-pf-stat-value {
    font-weight: 700;
    color: #222;
}

.pl-pf-stat--price .pl-pf-stat-value {
    font-size: 14px;
}

/* Read More */
.pl-pf-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1.5px solid var(--e-global-color-primary, #c5a059);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--e-global-color-primary, #c5a059);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.pl-pf-read-more:hover {
    background: var(--e-global-color-primary, #c5a059);
    color: #fff;
}

/* Filter animation */
.pl-portfolio-grid .pl-pf-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
}

.pl-portfolio-grid .pl-pf-card.is-hidden {
    display: none;
}

/* ============================================================
   SMART PRESS WIDGET (Enhanced)
   ============================================================ */
.pl-smart-press-wrapper {
    width: 100%;
}

.pl-press-pub-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 20px;
    background: #f5f3ee;
    border-inline-start: 4px solid var(--e-global-color-accent, #d4af37);
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
}

.pl-press-pub-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    font-weight: 600;
}

.pl-press-pub-name {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.pl-press-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
}

.pl-press-feat-img--above {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pl-press-feat-img--above img {
    width: 100%;
    height: auto;
    display: block;
}

.pl-press-feat-img.hover-zoom img {
    transition: transform 0.6s ease;
}

.pl-press-feat-img.hover-zoom:hover img {
    transform: scale(1.04);
}

.pl-press-side-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.pl-press-img-right .pl-press-side-layout {
    flex-direction: row-reverse;
}

.pl-press-feat-img {
    flex: 0 0 40%;
    border-radius: 16px;
    overflow: hidden;
}

.pl-press-feat-img img {
    width: 100%;
    display: block;
}

.pl-press-side-content {
    flex: 1;
}

.pl-press-body-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.pl-press-body-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
}

.pl-press-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 35px;
}

.pl-press-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: #f0f0f0;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
}

.pl-press-tag:hover {
    background: var(--e-global-color-accent, #d4af37);
    color: #fff;
}

@media (max-width: 768px) {

    .pl-press-side-layout,
    .pl-press-img-right .pl-press-side-layout {
        flex-direction: column;
    }

    .pl-press-feat-img {
        flex: 0 0 100%;
    }
}

/* ============================================================
   SMART PROJECTS WIDGET (Enhanced)
   ============================================================ */
.pl-smart-projects-wrapper {
    width: 100%;
}

.pl-proj-sub-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--e-global-color-accent, #d4af37);
    margin-bottom: 10px;
}

.pl-proj-main-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}

.pl-proj-featured-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.pl-proj-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

.pl-proj-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
    padding: 8px 18px;
    background: #f9f7f2;
    border-radius: 100px;
}

.pl-proj-stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #f9f7f2;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pl-proj-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 20px 16px;
    border-inline-end: 1px solid rgba(0, 0, 0, 0.07);
    text-align: center;
    min-width: 80px;
    gap: 6px;
}

.pl-proj-stat:last-child {
    border-inline-end: none;
}

.pl-proj-stat-icon {
    font-size: 22px;
    color: var(--e-global-color-primary, #c5a059);
}

.pl-proj-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.pl-proj-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
}

.pl-proj-stat--price {
    background: rgba(197, 160, 89, 0.06);
}

.pl-proj-stat--price .pl-proj-stat-value {
    color: var(--e-global-color-primary, #c5a059);
}

.pl-proj-body-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

/* Features grid */
.pl-proj-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-bottom: 50px;
}

.pl-proj-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.pl-proj-feature-item:hover {
    border-color: var(--e-global-color-accent, #d4af37);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.pl-proj-feature-item .fas {
    color: var(--e-global-color-accent, #d4af37);
    font-size: 18px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .pl-proj-main-title {
        font-size: 32px;
    }

    .pl-proj-stats-bar {
        flex-direction: column;
    }

    .pl-proj-stat {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        border-inline-end: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    }

    .pl-proj-stat:last-child {
        border-bottom: none;
    }
}

/* ============================================================
   SMART AGENT RECRUIT WIDGET
   ============================================================ */
.pl-recruit-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 60px;
    background: #f9f7f2;
}

.pl-recruit-wrapper.has-bg-image {
    color: #fff;
}

.pl-recruit-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.pl-recruit-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.pl-recruit-headline {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #111;
}

.pl-recruit-wrapper.has-bg-image .pl-recruit-headline {
    color: #fff;
}

.pl-recruit-sub-headline {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.pl-recruit-wrapper.has-bg-image .pl-recruit-sub-headline {
    color: rgba(255, 255, 255, 0.85);
}

/* Features */
.pl-recruit-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.pl-recruit-features.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.pl-recruit-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.pl-recruit-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    flex-shrink: 0;
    color: var(--e-global-color-accent, #d4af37);
}

.pl-recruit-feature-text {
    color: #333;
}

.pl-recruit-wrapper.has-bg-image .pl-recruit-feature-text {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA */
.pl-recruit-cta-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pl-recruit-cta {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: var(--e-global-color-primary, #c5a059);
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.35);
}

.pl-recruit-cta:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.pl-recruit-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: var(--e-global-color-primary, #c5a059);
    transition: all 0.25s ease;
}

.pl-recruit-wrapper.has-bg-image .pl-recruit-secondary-link {
    color: rgba(255, 255, 255, 0.85);
}

.pl-recruit-secondary-link:hover {
    gap: 14px;
    color: var(--e-global-color-accent, #d4af37);
}

@media (max-width: 768px) {
    .pl-recruit-wrapper {
        padding: 40px 28px;
    }

    .pl-recruit-headline {
        font-size: 30px;
    }

    .pl-recruit-features.two-col {
        grid-template-columns: 1fr;
    }

    .pl-recruit-cta-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .pl-portfolio-grid {
        grid-template-columns: repeat(var(--pl-grid-cols, 1), 1fr) !important;
    }

    .pl-si-gallery-grid,
    .pl-int-gallery-grid,
    .pl-svc-gallery-grid,
    .pl-proj-gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .pl-int-main-title,
    .pl-svc-main-title {
        font-size: 32px;
    }
}

/* RTL Support */
[dir="rtl"] .pl-int-designer-badge,
[dir="rtl"] .pl-press-pub-badge {
    border-inline-start: 4px solid var(--e-global-color-accent, #d4af37);
    border-radius: 8px 0 0 8px;
}

[dir="rtl"] .pl-pf-cat-badge {
    inset-inline-start: auto;
    inset-inline-end: 14px;
}

[dir="rtl"] .pl-proj-stats-bar {
    flex-direction: row-reverse;
}

[dir="rtl"] .pl-svc-partner-badge {
    flex-direction: row-reverse;
}

[dir="rtl"] .pl-int-sub-title,
[dir="rtl"] .pl-svc-sub-title,
[dir="rtl"] .pl-proj-sub-title {
    letter-spacing: 0;
}

/* ============================================================
   UNIVERSAL PAGE BUILDER WIDGET
   ============================================================ */
.pl-universal-page-builder-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 1. Hero Section */
.pl-upb-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-color: #1a1a1a;
}

.pl-upb-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.pl-upb-hero.has-image .pl-upb-hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.pl-upb-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.pl-upb-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
}

.pl-upb-hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

.pl-upb-hero-desc {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

/* 2. Content Section */
.pl-upb-content-section {
    padding: 80px 20px;
    background: #fff;
}

.pl-upb-content-inner {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.pl-upb-content-inner p {
    margin-bottom: 20px;
}

.pl-upb-content-inner.centered-content {
    margin: 0 auto;
}

/* Alignment Helper Classes (Driven by Elementor prefix_class) */
.pl-upb-align-left .pl-upb-content-inner.centered-content {
    margin-left: 0;
    margin-right: auto;
}

.pl-upb-align-center .pl-upb-content-inner.centered-content {
    margin-left: auto;
    margin-right: auto;
}

.pl-upb-align-right .pl-upb-content-inner.centered-content {
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 1024px) {
    .pl-upb-align-tablet-left .pl-upb-content-inner.centered-content {
        margin-left: 0;
        margin-right: auto;
    }

    .pl-upb-align-tablet-center .pl-upb-content-inner.centered-content {
        margin-left: auto;
        margin-right: auto;
    }

    .pl-upb-align-tablet-right .pl-upb-content-inner.centered-content {
        margin-left: auto;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .pl-upb-align-mobile-left .pl-upb-content-inner.centered-content {
        margin-left: 0;
        margin-right: auto;
    }

    .pl-upb-align-mobile-center .pl-upb-content-inner.centered-content {
        margin-left: auto;
        margin-right: auto;
    }

    .pl-upb-align-mobile-right .pl-upb-content-inner.centered-content {
        margin-left: auto;
        margin-right: 0;
    }
}

.pl-upb-split-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pl-upb-split-image {
    width: 100%;
}

.pl-upb-split-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pl-upb-placeholder-graphic {
    width: 100%;
    padding-bottom: 75%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 16px;
    border: 2px dashed #ccc;
}

/* 3. Hierarchy Sibling Navigation */
.pl-upb-hierarchy-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.pl-upb-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin-bottom: 50px;
}

.pl-upb-hierarchy-grid {
    display: grid;
    grid-template-columns: repeat(var(--pl-upb-cols, 3), 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pl-upb-hierarchy-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #ebebeb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.pl-upb-hierarchy-card:hover,
.pl-upb-hierarchy-card.active {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.pl-upb-hierarchy-card.active {
    border-color: #111 !important;
}

.pl-upb-hierarchy-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.pl-upb-hierarchy-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
    line-height: 1.3;
}

.pl-upb-hierarchy-link-text {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.pl-upb-hierarchy-card:hover .pl-upb-hierarchy-link-text {
    gap: 10px;
    color: #111;
}

/* 4. Empty State Fallbacks */
.pl-upb-empty-section {
    padding: 100px 20px;
    background: #fff;
    text-align: center;
}

.pl-upb-empty-state-coming-soon {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px;
    background: #fdfdfd;
    border: 2px dashed #eee;
    border-radius: 20px;
}

.pl-upb-empty-icon {
    font-size: 48px;
    margin-bottom: 25px;
}

.pl-upb-empty-title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.pl-upb-empty-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.pl-upb-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pl-upb-feature-card {
    padding: 40px;
    background: #f9f9f9;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pl-upb-feature-card:hover {
    transform: translateY(-8px);
}

.pl-upb-feature-icon {
    font-size: 40px;
    margin-bottom: 25px;
}

.pl-upb-feature-title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.pl-upb-feature-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* 5. Universal CTA */
.pl-upb-cta-section {
    padding: 80px 20px;
}

.pl-upb-cta-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.pl-upb-cta-content {
    max-width: 600px;
}

.pl-upb-cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin: 0 0 15px;
    line-height: 1.2;
}

.pl-upb-cta-desc {
    font-size: 18px;
    color: #555;
    margin: 0;
}

.pl-upb-cta-btn {
    display: inline-flex;
    padding: 16px 40px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pl-upb-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .pl-upb-split-wrap {
        grid-template-columns: 1fr;
    }

    .pl-upb-hierarchy-grid,
    .pl-upb-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .pl-upb-hero-title {
        font-size: 36px;
    }

    .pl-upb-cta-wrap {
        flex-direction: column;
        text-align: center;
    }

    .pl-upb-cta-action {
        width: 100%;
    }

    .pl-upb-hierarchy-grid,
    .pl-upb-features-grid {
        grid-template-columns: 1fr !important;
    }
}
/* Smart Projects Enhanced */
.pl-smart-projects-wrapper {
    width: 100%;
    margin: 0 auto;
}

.pl-proj-banner {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.pl-proj-banner img {
    width: 100%;
    display: block;
}

.pl-proj-featured-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.pl-proj-sold-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4444;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.pl-proj-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

/* Zigzag layout */
.pl-proj-zigzag-wrap {
    margin: 60px 0;
}

.pl-proj-zigzag-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
}

.pl-proj-zigzag-item.pl-reverse {
    flex-direction: row-reverse;
}

.pl-proj-zigzag-img, .pl-proj-zigzag-text {
    flex: 1;
}

.pl-proj-zigzag-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pl-proj-zigzag-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.pl-proj-zigzag-content {
    line-height: 1.8;
    color: #444;
}

/* Construction */
.pl-proj-construction {
    margin-top: 80px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 20px;
}

.pl-proj-cons-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.pl-proj-cons-text {
    flex: 1;
}

.pl-proj-cons-img {
    flex: 0 0 40%;
}

.pl-proj-cons-img img {
    width: 100%;
    border-radius: 12px;
}

/* CTAs */
.pl-proj-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    align-items: center;
}

.pl-proj-btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.pl-btn-brochure {
    background: #eee;
    color: #333;
}

.pl-btn-booking {
    background: var(--e-global-color-accent, #d4af37);
    color: #fff;
}

.pl-proj-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pl-proj-pagani-badge {
    background: #111;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .pl-proj-zigzag-item {
        flex-direction: column !important;
        gap: 25px;
    }
    .pl-proj-cons-row {
        flex-direction: column;
    }
    .pl-proj-cons-img {
        width: 100%;
    }
}

/* Premium Project Lists */
.pl-proj-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px 25px;
}

.pl-proj-list li {
    position: relative;
    padding-inline-start: 28px;
    font-size: 16px;
    color: #555;
    line-height: 1.4;
}

.pl-proj-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    inset-inline-start: 0;
    color: var(--e-global-color-accent, #d4af37);
    font-size: 18px;
}

.pl-proj-zigzag-content p {
    margin-bottom: 20px;
}

.pl-proj-zigzag-content p:last-child {
    margin-bottom: 0;
}

/* Design Fixes */
.pl-proj-ctas { justify-content: flex-start; }
@media (max-width: 768px) {
    .pl-proj-ctas { flex-direction: column !important; }
    .pl-proj-btn, .pl-proj-pagani-badge { width: 100% !important; justify-content: center; }
}

/* Dar Al Arkan Premium Aesthetics */
.pl-smart-projects-wrapper { font-family: 'Inter', sans-serif; }
.pl-proj-main-title { font-size: 42px; font-weight: 800; letter-spacing: -1px; margin-bottom: 30px; }
.pl-proj-zigzag-item img { transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); border-radius: 12px; }
.pl-proj-zigzag-item:hover img { transform: translateY(-10px); }
.pl-proj-zigzag-title { color: #d4af37; font-size: 28px; }
.pl-proj-zigzag-content { font-size: 17px; line-height: 1.8; color: #555; }

.pl-proj-stats-bar {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 40px 0;
}

.pl-proj-stat { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.pl-proj-stat-icon { font-size: 20px; color: #d4af37; margin-bottom: 5px; }
.pl-proj-stat-label { font-size: 12px; text-transform: uppercase; color: #999; font-weight: 600; }
.pl-proj-stat-value { font-size: 18px; font-weight: 700; color: #111; }

.pl-proj-map-wrap { margin-top: 80px; }
.pl-proj-sec-title { margin-bottom: 30px; font-size: 32px; font-weight: 700; }

