/* ==========================================================================
   Listing Single — Modern layout (Amer Oman)
   ========================================================================== */

.listing-single-page {
    --ls-primary: var(--brand-primary, #fd7b21);
    --ls-primary-dark: var(--brand-primary-dark, #e56a1a);
    --ls-dark: var(--brand-dark-blue, #144273);
    --ls-bg: #f4f7fb;
    --ls-surface: #ffffff;
    --ls-border: #e4eaf2;
    --ls-text: #1f2937;
    --ls-muted: #64748b;
    --ls-radius: 16px;
    --ls-shadow: 0 12px 40px rgba(20, 66, 115, 0.08);
}

.listing-single-page .content {
    background: var(--ls-bg);
}

/* Breadcrumb */
.ls-breadcrumb-wrap {
    padding: 18px 0 0;
    background: var(--ls-surface);
    border-bottom: 1px solid var(--ls-border);
}

.ls-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ls-breadcrumb a {
    color: var(--ls-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ls-breadcrumb a:hover {
    color: var(--ls-primary-dark);
}

.ls-breadcrumb .sep {
    color: #cbd5e1;
}

.ls-breadcrumb .current {
    color: var(--ls-muted);
    font-weight: 600;
}

/* Hero */
.ls-hero {
    background: var(--ls-surface);
    padding: 24px 0 28px;
    border-bottom: 1px solid var(--ls-border);
}

.ls-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.ls-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ls-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.ls-badge-category {
    background: #fff4ec;
    color: #c45a12;
    border: 1px solid #ffd9bf;
}

.ls-badge-type {
    background: #e8f4fc;
    color: var(--ls-dark);
    border: 1px solid #cfe4f5;
}

.ls-badge-verified {
    background: #e8f8ef;
    color: #1d7a46;
    border: 1px solid #b8e6cc;
}

.ls-hero-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.ls-menu-wrap {
    position: relative;
}

.ls-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--ls-border);
    background: var(--ls-surface);
    color: var(--ls-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ls-icon-btn:hover,
.ls-icon-btn.active {
    border-color: var(--ls-primary);
    background: #fff4ec;
    color: var(--ls-primary);
}

.ls-hero h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--ls-text);
    margin: 0 0 12px;
    line-height: 1.35;
}

.ls-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    color: var(--ls-muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.ls-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ls-hero-meta i {
    color: var(--ls-primary);
}

.ls-hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--ls-border);
}

.ls-price-block .label {
    display: block;
    font-size: 12px;
    color: var(--ls-muted);
    margin-bottom: 4px;
}

.ls-price-block .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ls-primary);
    line-height: 1;
}

.ls-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ls-stat {
    text-align: center;
    min-width: 64px;
}

.ls-stat strong {
    display: block;
    font-size: 1.25rem;
    color: var(--ls-dark);
    line-height: 1.2;
}

.ls-stat span {
    font-size: 12px;
    color: var(--ls-muted);
}

.ls-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    padding: 6px 12px;
    border-radius: 999px;
    color: #b45309;
    font-weight: 600;
    font-size: 14px;
}

.ls-rating-pill .stars {
    color: #f59e0b;
    font-size: 12px;
}

/* Layout */
.ls-main-section {
    padding: 32px 0 48px;
}

.ls-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

/* Gallery */
.ls-gallery-card {
    background: var(--ls-surface);
    border-radius: var(--ls-radius);
    border: 1px solid var(--ls-border);
    box-shadow: var(--ls-shadow);
    overflow: hidden;
    margin-bottom: 24px;
}

.ls-gallery-main {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #eef2f7;
}

.ls-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ls-gallery-main .gal-link {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(20, 66, 115, 0.75);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

html[dir="rtl"] .ls-gallery-main .gal-link {
    left: auto;
    right: 16px;
}

.ls-gallery-main .gal-link:hover {
    transform: scale(1.05);
}

.ls-gallery-thumbs {
    display: flex;
    gap: 10px;
    padding: 14px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.ls-thumb {
    flex: 0 0 88px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
    opacity: 0.75;
    transition: all 0.2s ease;
}

.ls-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ls-thumb:hover,
.ls-thumb.active {
    opacity: 1;
    border-color: var(--ls-primary);
    box-shadow: 0 4px 12px rgba(253, 123, 33, 0.25);
}

/* Cards */
.ls-card {
    background: var(--ls-surface);
    border-radius: var(--ls-radius);
    border: 1px solid var(--ls-border);
    box-shadow: var(--ls-shadow);
    margin-bottom: 24px;
    overflow: hidden;
}

.ls-card-head {
    padding: 18px 22px;
    border-bottom: 1px solid var(--ls-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ls-card-head h2,
.ls-card-head h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ls-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ls-card-head h2 i,
.ls-card-head h3 i {
    color: var(--ls-primary);
}

.ls-card-body {
    padding: 22px;
}

/* Specs grid */
.ls-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.ls-spec-item {
    padding: 14px 16px;
    background: var(--ls-bg);
    border-radius: 12px;
    border: 1px solid var(--ls-border);
}

.ls-spec-item .spec-label {
    display: block;
    font-size: 12px;
    color: var(--ls-muted);
    margin-bottom: 4px;
}

.ls-spec-item .spec-value {
    font-weight: 600;
    color: var(--ls-text);
    font-size: 0.95rem;
    word-break: break-word;
}

/* Keywords */
.ls-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ls-keywords a {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: #fff4ec;
    border: 1px solid #ffd9bf;
    color: #c45a12;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ls-keywords a:hover {
    background: var(--ls-primary);
    border-color: var(--ls-primary);
    color: #fff;
}

/* Tabs */
.ls-tabs-nav {
    display: flex;
    gap: 8px;
    padding: 10px;
    background: var(--ls-bg);
    border-bottom: 1px solid var(--ls-border);
    overflow-x: auto;
    scrollbar-width: thin;
}

.ls-tab-btn {
    border: 0;
    background: transparent;
    color: var(--ls-muted);
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.ls-tab-btn:hover {
    color: var(--ls-dark);
    background: rgba(255, 255, 255, 0.7);
}

.ls-tab-btn.active {
    background: var(--ls-primary);
    color: #fff;
    box-shadow: 0 6px 16px rgba(253, 123, 33, 0.3);
}

.ls-tab-panel {
    display: none;
    padding: 22px;
}

.ls-tab-panel.active {
    display: block;
}

.ls-description {
    color: var(--ls-muted);
    line-height: 1.85;
    margin: 0;
}

.ls-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--ls-muted);
}

.ls-empty i {
    font-size: 2.5rem;
    color: #cbd5e1;
    margin-bottom: 12px;
    display: block;
}

/* Map */
.ls-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--ls-border);
    min-height: 320px;
}

.ls-map-wrap #singleMap {
    height: 360px;
    width: 100%;
}

/* Reviews */
.ls-review-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px;
    background: linear-gradient(135deg, #fff9f5 0%, #fff 100%);
    border-radius: 12px;
    border: 1px solid #ffe4cc;
    margin-bottom: 20px;
}

.ls-review-score {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: var(--ls-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.ls-review-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--ls-border);
    border-radius: 12px;
    margin-bottom: 12px;
    background: var(--ls-bg);
}

.ls-review-item:last-child {
    margin-bottom: 0;
}

.ls-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.ls-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ls-review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
}

.ls-review-head h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--ls-text);
}

.ls-review-date {
    font-size: 12px;
    color: var(--ls-muted);
}

.ls-review-stars {
    color: #f59e0b;
    font-size: 12px;
}

/* Sidebar */
.ls-sidebar {
    position: sticky;
    top: 100px;
}

.ls-provider-card {
    text-align: center;
    padding: 24px 20px 20px;
}

.ls-provider-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 14px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 8px 24px rgba(20, 66, 115, 0.15);
}

.ls-provider-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ls-provider-card h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.ls-provider-card h3 a {
    color: var(--ls-text);
    text-decoration: none;
}

.ls-provider-card h3 a:hover {
    color: var(--ls-primary);
}

.ls-provider-meta {
    font-size: 13px;
    color: var(--ls-muted);
    margin-bottom: 16px;
}

.ls-contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.ls-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ls-contact-btn-primary {
    background: var(--ls-primary);
    color: #fff;
    grid-column: 1 / -1;
}

.ls-contact-btn-primary:hover {
    background: var(--ls-primary-dark);
    color: #fff;
}

.ls-contact-btn-wa {
    background: #25d366;
    color: #fff;
}

.ls-contact-btn-wa:hover {
    background: #1ebe57;
    color: #fff;
}

.ls-contact-btn-call {
    background: var(--ls-dark);
    color: #fff;
}

.ls-contact-btn-call:hover {
    background: #0f3358;
    color: #fff;
}

.ls-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    text-align: start;
}

.ls-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--ls-border);
    font-size: 14px;
}

.ls-contact-list li:last-child {
    border-bottom: 0;
}

.ls-contact-list i {
    color: var(--ls-primary);
    margin-top: 3px;
}

.ls-contact-list a {
    color: var(--ls-dark);
    word-break: break-all;
}

.ls-sidebar .custom-form label {
    font-size: 13px;
}

.ls-featured-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--ls-border);
}

.ls-featured-item:last-child {
    border-bottom: 0;
}

.ls-featured-thumb {
    width: 72px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.ls-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ls-featured-info h4 {
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.35;
}

.ls-featured-info h4 a {
    color: var(--ls-text);
    text-decoration: none;
}

.ls-featured-info h4 a:hover {
    color: var(--ls-primary);
}

.ls-featured-info .loc {
    font-size: 12px;
    color: var(--ls-muted);
}

/* Similar services */
.ls-similar-section {
    margin-top: 48px;
    padding: 32px 28px 36px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid var(--ls-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(20, 66, 115, 0.06);
}

.ls-similar-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.ls-similar-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ls-primary);
    margin-bottom: 8px;
}

.ls-similar-header h2 {
    margin: 0 0 6px;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--ls-dark);
    line-height: 1.3;
}

.ls-similar-sub {
    margin: 0;
    font-size: 14px;
    color: var(--ls-muted);
}

.ls-similar-sub strong {
    color: var(--ls-text);
}

.ls-similar-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ls-similar-nav {
    display: flex;
    gap: 8px;
}

.ls-similar-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--ls-border);
    background: var(--ls-surface);
    color: var(--ls-dark);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.ls-similar-nav-btn:hover:not(:disabled) {
    border-color: var(--ls-primary);
    background: #fff4ec;
    color: var(--ls-primary);
}

.ls-similar-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.ls-similar-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    background: var(--ls-dark);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s ease;
}

.ls-similar-view-all:hover {
    background: #0f3358;
    color: #fff !important;
}

.ls-similar-track-wrap {
    position: relative;
    margin: 0 -6px;
    padding: 4px 6px 8px;
}

.ls-similar-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.ls-similar-card {
    display: flex;
    flex-direction: column;
    background: var(--ls-surface);
    border-radius: 16px;
    border: 1px solid var(--ls-border);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    min-width: 0;
}

.ls-similar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(20, 66, 115, 0.12);
    border-color: #ffd9bf;
}

.ls-similar-card-media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #e8edf3;
}

.ls-similar-card-img {
    display: block;
    width: 100%;
    height: 100%;
}

.ls-similar-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ls-similar-card:hover .ls-similar-card-img img {
    transform: scale(1.06);
}

.ls-similar-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(20, 66, 115, 0.55) 100%);
    pointer-events: none;
}

.ls-similar-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 8px;
    background: var(--ls-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

html[dir="rtl"] .ls-similar-featured {
    right: auto;
    left: 12px;
}

.ls-similar-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    max-width: calc(100% - 90px);
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ls-dark) !important;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    backdrop-filter: blur(6px);
}

html[dir="rtl"] .ls-similar-cat {
    left: auto;
    right: 12px;
}

.ls-similar-rating {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

html[dir="rtl"] .ls-similar-rating {
    left: auto;
    right: 12px;
}

.ls-similar-rating i {
    color: #fbbf24;
}

.ls-similar-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 16px;
}

.ls-similar-card-title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45;
}

.ls-similar-card-title a {
    color: var(--ls-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ls-similar-card-title a:hover {
    color: var(--ls-primary);
}

.ls-similar-card-loc {
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--ls-muted);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.5;
}

.ls-similar-card-loc i {
    color: var(--ls-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.ls-similar-card-footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--ls-border);
}

.ls-similar-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ls-similar-type {
    font-size: 11px;
    font-weight: 600;
    color: var(--ls-muted);
    text-transform: uppercase;
}

.ls-similar-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ls-primary);
    line-height: 1.2;
}

.ls-similar-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 10px;
    background: #fff4ec;
    border: 1px solid #ffd9bf;
    color: #c45a12 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.ls-similar-cta:hover {
    background: var(--ls-primary);
    border-color: var(--ls-primary);
    color: #fff !important;
}

.ls-similar-empty {
    text-align: center;
    padding: 48px 24px;
    background: var(--ls-bg);
    border-radius: 16px;
    border: 1px dashed var(--ls-border);
}

.ls-similar-empty i {
    font-size: 3rem;
    color: #cbd5e1;
    margin-bottom: 16px;
    display: block;
}

.ls-similar-empty h3 {
    margin: 0 0 8px;
    color: var(--ls-text);
}

.ls-similar-empty p {
    margin: 0 0 20px;
    color: var(--ls-muted);
}

@media (max-width: 1100px) {
    .ls-similar-track {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 6px;
    }

    .ls-similar-card {
        flex: 0 0 min(300px, 82vw);
        scroll-snap-align: start;
    }

    .ls-similar-section {
        padding: 24px 18px 28px;
    }
}

@media (max-width: 576px) {
    .ls-similar-header {
        flex-direction: column;
        align-items: stretch;
    }

    .ls-similar-header-actions {
        justify-content: space-between;
    }

    .ls-similar-view-all {
        flex: 1;
        justify-content: center;
    }

    .ls-similar-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .ls-similar-cta {
        justify-content: center;
    }
}

.ls-draft-banner {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    color: #92400e;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}

/* Video */
.ls-video-wrap video {
    width: 100%;
    border-radius: 12px;
}

/* Report modal */
#reportModal {
    backdrop-filter: blur(4px);
}

#reportModal .ls-modal-box {
    background: #fff;
    padding: 28px;
    border-radius: var(--ls-radius);
    width: 90%;
    max-width: 420px;
    box-shadow: 0 20px 50px rgba(16, 24, 40, 0.2);
}

#reportModal .ls-modal-box h3 {
    margin: 0 0 16px;
}

#reportModal select,
#reportModal textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--ls-border);
    border-radius: 10px;
    font-family: inherit;
}

.ls-modal-actions {
    display: flex;
    gap: 10px;
}

.ls-modal-actions .btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

/* RTL */
html[dir="rtl"] .ls-review-item,
html[dir="rtl"] .ls-featured-item {
    direction: rtl;
}

/* Responsive */
@media (max-width: 1100px) {
    .ls-layout {
        grid-template-columns: 1fr;
    }

    .ls-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .ls-hero-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .ls-stats {
        justify-content: space-between;
    }

    .ls-contact-actions {
        grid-template-columns: 1fr;
    }

    .ls-gallery-main {
        aspect-ratio: 4/3;
    }
}
