/* ===== SHARED PAGE STYLES ===== */

/* Updated Nav for sub-pages */
.nav-container {
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.nav-logo img {
    height: 56px;
    width: auto;
    display: block;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-link.active {
    color: #a0a0a0;
}

.nav-link.active::after {
    width: 100%;
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.page-hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* ===== PAGE SECTIONS ===== */
.page-section {
    padding: 100px 40px;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.alt-bg {
    background: #111111;
}

.text-center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
    padding-right: 15px;
}

.section-label::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #a0a0a0;
    border-radius: 50%;
}

.section-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.4;
}

/* ===== STORY GRID (About page) ===== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 30px;
}

.story-grid.reverse {
    direction: ltr;
}

.story-grid.reverse .story-text {
    direction: rtl;
}

.story-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.4;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 15px;
    text-align: justify;
}

.story-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-image:hover img {
    transform: scale(1.05);
}

.image-accent {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 40%;
    height: 40%;
    border: 3px solid #a0a0a0;
    border-radius: 16px;
    z-index: -1;
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-card:hover {
    background: rgba(160, 160, 160, 0.08);
    border-color: rgba(160, 160, 160, 0.3);
    transform: translateY(-8px);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a0a0a0, #c0c0c0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.6rem;
    color: #0a0a0a;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: #2a2a2a;
    background-image: linear-gradient(#2a2a2a, #2a2a2a);
    padding: 70px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    vertical-align: middle;
    margin-left: 4px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* ===== PROPERTIES LAYOUT ===== */
.properties-layout-section {
    background: #0a0a0a;
    padding: 60px 40px 100px;
    position: relative;
}

.properties-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 35px;
    align-items: start;
}

.filter-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: #131313;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-sidebar::-webkit-scrollbar {
    width: 6px;
}

.filter-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.filter-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
}

.filter-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    background: #131313;
    z-index: 2;
}

.filter-sidebar-header h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.close-filters {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.close-filters:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(90deg);
}

.filter-sidebar-body {
    padding: 16px;
}

.filter-sidebar-body .filters-accordion {
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
}

.properties-main {
    min-width: 0;
}

.properties-header-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 25px;
    padding: 0 5px;
}

.mobile-filter-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 14px;
}

.mobile-filter-trigger {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0a0a0a;
    background: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-filter-trigger:hover {
    transform: translateY(-1px);
}

.mobile-filter-trigger i {
    font-size: 0.95rem;
}

.filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
}

.filter-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* ===== FILTERS ACCORDION ===== */
.filters-accordion {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.filter-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.filter-row:last-child {
    border-bottom: none;
}

.filter-row-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: background 0.25s ease;
    text-align: right;
}

.filter-row-toggle:hover {
    background: rgba(255, 255, 255, 0.03);
}

.filter-row-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
    flex: 1;
}

.filter-row-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
    transition: color 0.25s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}

.filter-row.has-value .filter-row-value {
    color: #ffffff;
    font-weight: 600;
}

.filter-chevron {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
}

.filter-row[data-expanded="true"] .filter-chevron {
    transform: rotate(-90deg);
    color: #ffffff;
}

.filter-row[data-expanded="true"] {
    background: rgba(255, 255, 255, 0.02);
}

.filter-row-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-row[data-expanded="true"] .filter-row-body {
    max-height: 500px;
}

.filter-row-inner {
    padding: 10px 28px 28px;
}

/* ===== FILTER PILLS ===== */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-pill {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 9px 22px;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.filter-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.filter-pill.active {
    background: #ffffff;
    border-color: #ffffff;
    color: #0a0a0a;
    font-weight: 600;
}

/* ===== RANGE FIELDS ===== */
.range-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}

.range-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 18px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.range-field:focus-within {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.range-field label {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.5px;
}

.range-field input[type="number"] {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0;
    width: 100%;
    outline: none;
    direction: ltr;
    text-align: right;
    letter-spacing: 0.3px;
    -moz-appearance: textfield;
    appearance: textfield;
}

.range-field input[type="number"]::-webkit-outer-spin-button,
.range-field input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ===== DUAL RANGE SLIDER ===== */
.range-slider {
    position: relative;
    height: 24px;
    margin: 18px 6px 8px;
}

.range-slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    transform: translateY(-50%);
}

.range-slider-fill {
    position: absolute;
    top: 50%;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #d5d5d5);
    border-radius: 4px;
    transform: translateY(-50%);
    pointer-events: none;
}

.range-slider-input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 24px;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
    margin: 0;
    outline: none;
}

.range-slider-input::-webkit-slider-runnable-track {
    background: transparent;
    height: 4px;
}

.range-slider-input::-moz-range-track {
    background: transparent;
    height: 4px;
}

.range-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #ffffff;
    cursor: grab;
    pointer-events: auto;
    transition: transform 0.2s ease;
    margin-top: -9px;
}

.range-slider-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #ffffff;
    cursor: grab;
    pointer-events: auto;
    transition: transform 0.2s ease;
}

.range-slider-input::-webkit-slider-thumb:hover,
.range-slider-input::-webkit-slider-thumb:active {
    transform: scale(1.15);
    cursor: grabbing;
}

.range-slider-input::-moz-range-thumb:hover {
    transform: scale(1.15);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

/* ===== FILTER ACTIONS BAR ===== */
.filter-actions-bar {
    margin-top: 24px;
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-reset-btn {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 11px 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.filter-reset-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.filter-reset-btn i {
    font-size: 0.85rem;
    transition: transform 0.5s ease;
}

.filter-reset-btn:hover i {
    transform: rotate(-180deg);
}

.filter-results-count {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.filter-results-count i {
    color: #ffffff;
    font-size: 0.9rem;
}

.filter-results-count span#results-count {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

/* ===== NO RESULTS ===== */
.no-results {
    display: none;
    text-align: center;
    padding: 80px 30px;
    color: rgba(255, 255, 255, 0.6);
}

.no-results i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.no-results p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.property-card {
    background: #161616;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-8px);
    border-color: rgba(160, 160, 160, 0.2);
}

.property-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.property-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-gallery {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.card-gallery img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-gallery img.active {
    opacity: 1;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    z-index: 3;
    font-size: 0.9rem;
    padding: 0;
}

.gallery-arrow:hover {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.gallery-prev {
    right: 12px;
}

.gallery-next {
    left: 12px;
}

.gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
    pointer-events: none;
}

.gallery-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transition: all 0.3s ease;
}

.gallery-dots span.active {
    width: 18px;
    border-radius: 3px;
    background: #ffffff;
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 18px;
    background: #a0a0a0;
    color: #0a0a0a;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    z-index: 2;
}

.property-badge.rent {
    background: #e8a838;
    color: #0a0a0a;
}

.property-badge.land {
    background: #4a9e6e;
    color: #fff;
}

.property-badge.commercial {
    background: #5b7cc9;
    color: #fff;
}


.btn-small {
    padding: 10px 30px;
    background: #ffffff;
    color: #0a0a0a;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: #a0a0a0;
}

.property-info {
    padding: 25px;
}

.property-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #a0a0a0;
    margin-bottom: 8px;
}

.property-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.property-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
}

.property-location i {
    margin-left: 5px;
    color: #a0a0a0;
}

.property-features {
    display: flex;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.property-features span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.property-features i {
    margin-left: 5px;
    color: #a0a0a0;
    font-size: 0.8rem;
}

/* ===== FEATURED POLICIES ===== */
.featured-policy-section {
    padding: 110px 40px;
    background: #0a0a0a;
}

.featured-policy-section .page-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.featured-policy {
    position: relative;
    padding: 55px 60px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    overflow: hidden;
    transition: border-color 0.5s ease, transform 0.5s ease;
}

@keyframes accentShimmer {
    0% { background-position: 0 -100%; }
    100% { background-position: 0 200%; }
}

.featured-policy:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-6px);
}

.featured-policy-watermark {
    display: none;
}

.featured-policy-head {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 34px;
    padding-bottom: 32px;
    position: relative;
}

.featured-policy-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
}

.featured-policy-icon {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    position: relative;
    transition: transform 0.4s ease;
}

.featured-policy-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-policy:hover .featured-policy-icon {
    transform: scale(1.05) rotate(-3deg);
}

.featured-policy:hover .featured-policy-icon::before {
    opacity: 1;
}

.featured-policy-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.featured-policy-title {
    font-size: clamp(1.45rem, 2.8vw, 2.05rem);
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.featured-policy-intro {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 34px;
    font-weight: 300;
}

.featured-policy-intro strong,
.featured-policy-item p strong {
    color: #ffffff;
    font-weight: 600;
}

.featured-policy-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    counter-reset: policy-item;
}

.featured-policy-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 26px 30px;
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.featured-policy-item:hover {
    background: #252525;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-4px);
}

.item-number {
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1;
    color: rgba(255, 255, 255, 0.85);
    min-width: 58px;
    letter-spacing: -2px;
    opacity: 0.85;
    transition: opacity 0.4s ease, transform 0.4s ease;
    margin-top: -4px;
}

.featured-policy-item:hover .item-number {
    opacity: 1;
    transform: scale(1.05);
}

.item-content {
    flex: 1;
    min-width: 0;
}

.featured-policy-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.featured-policy-item p {
    font-size: 1rem;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
    margin: 0;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 330px;
        padding: 130px 22px 50px;
    }

    .featured-policy-section {
        padding: 70px 20px;
    }

    .featured-policy-section .page-container {
        gap: 40px;
    }

    .featured-policy {
        padding: 35px 26px;
        border-radius: 18px;
    }

    .featured-policy-watermark {
        font-size: 10rem;
        bottom: -20px;
    }

    .featured-policy-head {
        gap: 18px;
        margin-bottom: 26px;
        padding-bottom: 26px;
    }

    .featured-policy-icon {
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
        border-radius: 13px;
    }

    .featured-policy-label {
        font-size: 0.68rem;
        letter-spacing: 1.8px;
        padding: 4px 10px;
        margin-bottom: 8px;
    }

    .featured-policy-intro {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .featured-policy-item {
        padding: 20px 22px;
        gap: 16px;
    }

    .item-number {
        font-size: 2rem;
        min-width: 42px;
        margin-top: -2px;
    }

    .featured-policy-item h3 {
        font-size: 1.05rem;
    }

    .featured-policy-item p {
        font-size: 0.95rem;
    }
}

/* ===== POLICY STYLES ===== */
.policy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.policy-intro h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 25px;
}

.policy-intro p {
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.policy-card {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.policy-card:hover {
    background: rgba(160, 160, 160, 0.06);
    border-color: rgba(160, 160, 160, 0.25);
    transform: translateY(-5px);
}

.policy-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(160, 160, 160, 0.25);
    line-height: 1;
    min-width: 60px;
    transition: color 0.4s ease;
}

.policy-card:hover .policy-number {
    color: rgba(160, 160, 160, 0.6);
}

.policy-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.policy-content p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== COMMITMENT SECTION ===== */
.commitment-section {
    position: relative;
    padding: 100px 40px;
    background: url('https://images.unsplash.com/photo-1449844908441-8829872d2607?w=1920&q=85') center center / cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.commitment-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.commitment-content {
    position: relative;
    z-index: 2;
}

.commitment-icon {
    font-size: 3.5rem;
    color: #a0a0a0;
    margin-bottom: 25px;
}

.commitment-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 25px;
}

.commitment-section p {
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 40px;
}

.commitment-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #a0a0a0;
}

.badge-item i {
    font-size: 1.3rem;
}

/* ===== PAGE CTA ===== */
.page-cta {
    background: #111111;
    padding: 100px 40px;
}

.page-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.page-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

.page-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    padding: 14px 40px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ===== MINI FOOTER ===== */
.mini-footer {
    background: #000;
    padding: 60px 40px 25px;
}

.mini-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}

.footer-logo img {
    height: 55px;
    width: auto;
    display: block;
}

.footer-logo:hover {
    opacity: 0.8;
}

.mini-footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

.mini-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.mini-footer-links a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.mini-footer-links a:hover {
    color: #a0a0a0;
}

.mini-footer-contact {
    text-align: left;
}

.mini-footer-contact p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.mini-footer .footer-bottom {
    margin-top: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links {
        gap: 30px;
    }

    .page-hero {
        height: auto;
        min-height: 360px;
        padding: 140px 25px 60px;
        background-attachment: scroll;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-grid.reverse {
        direction: rtl;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .policy-grid {
        grid-template-columns: 1fr;
    }

    .mini-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mini-footer-contact {
        text-align: center;
    }

    .commitment-badges {
        gap: 25px;
    }

    .properties-layout-section {
        padding: 30px 20px 70px;
    }

    .properties-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mobile-filter-bar {
        display: flex;
    }

    .properties-header-bar {
        display: none;
    }

    .filter-sidebar {
        position: fixed;
        top: 70px;
        right: 0;
        bottom: 0;
        width: 88%;
        max-width: 420px;
        max-height: calc(100vh - 70px);
        z-index: 999;
        transform: translateX(100%);
        border-radius: 0;
        border: none;
        background: #121212;
        box-shadow: none;
        display: flex;
        flex-direction: column;
    }

    .filter-sidebar.is-open {
        transform: translateX(0);
    }

    .filter-sidebar-header {
        position: static;
    }

    .filter-sidebar-body {
        flex: 1;
        overflow-y: auto;
    }

    .close-filters {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 0;
        padding: 14px 10px;
    }

    .nav-logo img {
        height: 50px;
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 10px 10px;
    }

    .nav-logo img {
        height: 45px;
    }

    .page-hero {
        height: auto;
        min-height: 420px;
        padding: 150px 20px 80px;
        background-attachment: scroll;
    }

    .page-hero-content h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-hero-content p {
        font-size: 1rem;
    }

    .page-section {
        padding: 60px 20px;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .filter-row-toggle {
        padding: 18px 20px;
        gap: 12px;
    }

    .filter-row-label {
        font-size: 0.98rem;
    }

    .filter-row-value {
        font-size: 0.82rem;
        max-width: 130px;
    }

    .filter-row-inner {
        padding: 6px 20px 22px;
    }

    .filter-pill {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .range-field input[type="number"] {
        font-size: 1.1rem;
    }

    .filter-actions-bar {
        justify-content: center;
        flex-direction: column-reverse;
        gap: 16px;
    }

    .no-results {
        padding: 60px 20px;
    }

    .no-results h3 {
        font-size: 1.3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .policy-card {
        flex-direction: column;
        gap: 15px;
        padding: 25px;
    }

    .commitment-section {
        padding: 70px 20px;
        background-attachment: scroll;
    }

    .page-cta {
        padding: 70px 20px;
    }

    .mini-footer {
        padding: 40px 20px 20px;
    }
}

/* ================================================ */
/* ===== PROPERTY DETAILS PAGE ===================== */
/* ================================================ */

/* Breadcrumb */
.breadcrumb-section {
    background: #0a0a0a;
    padding: 110px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb span {
    color: #a0a0a0;
}

/* Gallery */
.property-gallery {
    background: #0a0a0a;
    padding: 100px 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 15px;
    height: 560px;
}

.gallery-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.8s ease;
}

.gallery-main:hover img {
    transform: scale(1.03);
}

.gallery-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 22px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.gallery-expand {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-expand:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: scale(1.1);
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    padding-left: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.gallery-thumbs::-webkit-scrollbar {
    width: 5px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    transition: background 0.25s ease;
}

.gallery-thumbs::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.35);
}

.gallery-thumbs::-webkit-scrollbar-button {
    display: none;
    height: 0;
    width: 0;
}

.gallery-thumb {
    position: relative;
    flex: 1;
    min-height: 130px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb:hover img {
    transform: scale(1.08);
}

.gallery-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 3;
}

.gallery-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.thumb-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    padding-left: 2px;
    transition: transform 0.25s ease, background 0.25s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-thumb-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.25s ease;
    pointer-events: none;
}

.gallery-thumb-video:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.gallery-thumb-video:hover .thumb-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-thumb.active {
    opacity: 1;
    border-color: #ffffff;
}

/* Property Main Layout */
.property-main {
    background: #0a0a0a;
    padding: 50px 40px 100px;
}

.property-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

/* Left Column */
.property-header {
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 35px;
}

.property-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.property-type-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(160, 160, 160, 0.15);
    border: 1px solid rgba(160, 160, 160, 0.3);
    color: #c0c0c0;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 1px;
}

.property-actions {
    display: flex;
    gap: 10px;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.icon-btn.active {
    background: #a0a0a0;
    color: #0a0a0a;
    border-color: #a0a0a0;
}

.property-main-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.property-main-location {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.property-main-location i {
    color: #a0a0a0;
    margin-left: 6px;
}

.property-main-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.price-currency {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #a0a0a0;
    font-weight: 600;
    position: relative;
    top: 5px;
}

.price-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-top: 10px;
    font-weight: 300;
}

/* Specs */
.property-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 45px;
    padding: 30px;
    background: linear-gradient(135deg, #141414, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.spec-item {
    text-align: center;
    padding: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-item:first-child {
    border-right: none;
}

.spec-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(160, 160, 160, 0.1);
    color: #c0c0c0;
    font-size: 1.3rem;
}

.spec-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.spec-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Property Sections */
.property-section {
    margin-bottom: 45px;
}

.property-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-right: 18px;
}

.property-section h2::before {
    content: '';
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: linear-gradient(180deg, #ffffff, #a0a0a0);
    border-radius: 2px;
}

.property-section p {
    font-size: 1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
    text-align: justify;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.feature-item i {
    color: #c0c0c0;
    font-size: 1rem;
    width: 24px;
    text-align: center;
}

.feature-item:hover {
    background: rgba(160, 160, 160, 0.08);
    border-color: rgba(160, 160, 160, 0.3);
    transform: translateY(-2px);
}

/* Details Table */
.details-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
}

.details-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.details-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.04);
}

.details-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
}

.details-value {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
}

/* Location */
.location-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
}

.location-map {
    height: 320px;
    background: #0a0a0a;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.6) invert(0.9) hue-rotate(180deg);
}

.location-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.location-item i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 160, 160, 0.1);
    border-radius: 10px;
    color: #c0c0c0;
    font-size: 1rem;
    flex-shrink: 0;
}

.location-item div {
    display: flex;
    flex-direction: column;
}

.location-item strong {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 2px;
}

.location-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ===== SIDEBAR / AGENT CARD ===== */
.property-sidebar {
    position: sticky;
    top: 100px;
}

.agent-card {
    background: linear-gradient(135deg, #141414, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
}

.agent-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 25px;
}

.agent-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a0a0a0, #c0c0c0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0a0a;
    flex-shrink: 0;
}

.agent-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #ffffff;
}

.agent-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
}

.agent-rating {
    font-size: 0.8rem;
    color: #c0c0c0;
    display: flex;
    align-items: center;
    gap: 3px;
}

.agent-rating span {
    color: rgba(255, 255, 255, 0.5);
    margin-right: 5px;
}

/* Agent CTA */
.agent-cta-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
}

.agent-cta-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 22px;
    text-align: center;
}

/* Direct Contact */
.agent-contact-direct {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.direct-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 18px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.direct-btn i {
    font-size: 1.1rem;
}

.direct-btn.call {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.direct-btn.call:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.direct-btn.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.direct-btn.whatsapp:hover {
    background: #1fb958;
    transform: translateY(-2px);
}

/* Similar Properties */
.similar-properties {
    background: #111;
    padding: 80px 40px 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-heading-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading-wrap h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-top: 10px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 30px;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3rem;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== RESPONSIVE: Property Details ===== */
@media (max-width: 1100px) {
    .property-layout {
        grid-template-columns: 1fr;
    }

    .property-sidebar {
        position: static;
    }
}

@media (max-width: 968px) {
    .breadcrumb-section {
        padding: 100px 25px 15px;
    }

    .property-gallery {
        padding: 100px 25px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 400px auto;
        height: auto;
    }

    .gallery-thumbs {
        flex-direction: row;
        padding-left: 0;
        padding-bottom: 14px;
    }

    .gallery-thumbs::-webkit-scrollbar {
        width: auto;
        height: 5px;
    }

    .gallery-thumb {
        min-height: 80px;
        min-width: 100px;
    }

    .property-main {
        padding: 40px 25px 80px;
    }

    .property-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .spec-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 20px;
    }

    .spec-item:nth-child(3),
    .spec-item:nth-child(4) {
        border-bottom: none;
        padding-bottom: 10px;
    }

    .details-table {
        grid-template-columns: 1fr;
    }

    .location-card {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 260px;
    }

    .similar-properties {
        padding: 60px 25px 80px;
    }
}

@media (max-width: 600px) {
    .breadcrumb {
        font-size: 0.85rem;
        gap: 8px;
    }

    .breadcrumb span {
        display: none;
    }

    .gallery-grid {
        grid-template-rows: 300px auto;
        gap: 10px;
    }

    .gallery-thumb {
        min-height: 70px;
        min-width: 80px;
    }

    .property-header-top {
        flex-wrap: wrap;
        gap: 15px;
    }

    .property-specs {
        padding: 20px 15px;
    }

    .spec-value {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-item {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .agent-card {
        padding: 22px;
    }
}

/* ── Shared Skeleton Loading ── */
.kc-shimmer {
    background: linear-gradient(90deg, #181818 25%, #242424 50%, #181818 75%);
    background-size: 400% 100%;
    animation: kcShimmer 1.4s ease infinite;
}
@keyframes kcShimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Shimmer overlay (covers element with z-indexed ::after) */
.kc-loading {
    position: relative;
    overflow: hidden;
}
.kc-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, #181818 25%, #242424 50%, #181818 75%);
    background-size: 400% 100%;
    animation: kcShimmer 1.4s ease infinite;
    border-radius: inherit;
    pointer-events: none;
}

/* 3D model shimmer: smaller centered block matching the actual model footprint */
.intro-3d-model.kc-loading {
    background: transparent;
}
.intro-3d-model.kc-loading::after {
    inset: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 45%;
    border-radius: 14px;
}
@media (max-width: 768px) {
    .intro-3d-model.kc-loading::after {
        width: 70%;
        height: 50%;
    }
}

/* Property card skeleton (used by properties grid + similar-properties) */
.property-card-skeleton {
    background: #161616;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.property-card-skeleton .ps-image {
    height: 240px;
}
.property-card-skeleton .ps-info {
    padding: 24px;
}
.property-card-skeleton .ps-line {
    height: 16px;
    border-radius: 6px;
    margin-bottom: 12px;
}
.property-card-skeleton .ps-price {
    height: 28px;
    width: 50%;
    margin-bottom: 16px;
}
.property-card-skeleton .ps-title {
    width: 80%;
}
.property-card-skeleton .ps-location {
    width: 60%;
    margin-bottom: 18px;
}
.property-card-skeleton .ps-features {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.property-card-skeleton .ps-feature {
    flex: 1;
    height: 28px;
    border-radius: 6px;
}

/* Filter pill skeleton */
.filter-pill-skeleton {
    display: inline-block;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Stats skeleton */
.kc-skeleton-stat {
    display: inline-block;
    width: 70px;
    height: 56px;
    border-radius: 8px;
    vertical-align: middle;
}
.kc-skeleton-stat-label {
    display: inline-block;
    width: 130px;
    height: 16px;
    border-radius: 6px;
    margin-top: 8px;
}

/* Hide the leading "+" while skeleton is showing */
.stat-item:has(.kc-skeleton-stat) .stat-plus { visibility: hidden; }

/* Background fade transitions for hero / section backgrounds */
.kc-bg-fade {
    transition: background-image 0.6s ease, opacity 0.6s ease;
}

/* Footer contact text skeleton */
.kc-skeleton-text {
    height: 18px;
    border-radius: 6px;
    margin-top: 6px;
    margin-bottom: 6px;
}
.contact-phone.kc-skeleton-text   { width: 180px; }
.contact-email.kc-skeleton-text   { width: 240px; }
.contact-address.kc-skeleton-text { width: 200px; }

/* ================================================ */
/* ===== ARBOON (آلية العربون) PAGE ================ */
/* ================================================ */

/* ===== ARBOON HERO ===== */
.arboon-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

.arboon-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 120px 20px 60px;
    width: 100%;
    animation: fadeInUp 1.2s ease-out;
}

.arboon-hero-logo {
    max-width: 420px;
    width: 80%;
    height: auto;
    margin-bottom: 6px;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.5));
}

.arboon-hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.arboon-hero-house {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.arboon-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.arboon-hero-subtitle {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
}

.arboon-hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
    margin-top: 5px;
}

/* ===== ARBOON SHARED SECTION STYLES ===== */
.arboon-section-title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.4;
}

.arboon-section-title--gold {
    color: #ffffff;
}

/* ===== ARBOON POLICY SECTION ===== */
.arboon-policy-section {
    background: #0a0a0a;
    padding: 110px 40px;
}

.arboon-policy-text {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.arboon-policy-text p {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
    margin-bottom: 25px;
}

.arboon-policy-text p strong {
    color: #ffffff;
    font-weight: 700;
}

.arboon-subsection-title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

/* Steps */
.arboon-steps {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.arboon-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.arboon-step:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateX(-6px);
}

.arboon-step-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.arboon-step:hover .arboon-step-icon {
    transform: scale(1.1);
}

.arboon-step p {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

/* ===== ARBOON CASES SECTION ===== */
.arboon-cases-section {
    background: #111111;
    padding: 110px 40px;
}

.arboon-amount-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.arboon-amount-info p {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 2;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 400;
}

.arboon-amount-info p strong {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.4em;
}

.arboon-cases-heading {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

.arboon-cases-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.arboon-case {
    padding: 35px 40px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    position: relative;
}

.arboon-case::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    border-radius: 0 0 0 4px;
    transition: width 0.4s ease;
}

.arboon-case:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.arboon-case:hover::before {
    width: 6px;
}

.arboon-case-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.arboon-case-number {
    flex-shrink: 0;
    font-family: 'Cairo', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    min-width: 45px;
    transition: color 0.4s ease;
}

.arboon-case:hover .arboon-case-number {
    color: rgba(255, 255, 255, 0.5);
}

.arboon-case-header h4 {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
}

.case-emoji {
    font-size: 1.1em;
    margin-right: 4px;
}

.case-x {
    color: #ef4444;
}

.arboon-case-desc {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    line-height: 2;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
    padding-right: 63px;
}

/* ===== ARBOON TRANSFER SECTION ===== */
.arboon-transfer-section {
    background: #0a0a0a;
    padding: 110px 40px;
}

.arboon-transfer-card {
    max-width: 800px;
    margin: 0 auto 60px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.arboon-transfer-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.6), #ffffff);
}

.transfer-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transfer-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.transfer-label {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    min-width: 120px;
}

.transfer-value {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.transfer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 35px 0;
}

.transfer-extra-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.transfer-extra-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.transfer-extra-item i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.transfer-extra-item p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.transfer-extra-item p strong {
    color: #ffffff;
    font-weight: 700;
}

/* Sanad Section */
.arboon-sanad-section {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.arboon-sanad-title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.arboon-sanad-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease, border-color 0.5s ease;
}

.arboon-sanad-image:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.25);
}

.arboon-sanad-image img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-arboon-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 16px auto 0;
    text-align: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-arboon-download:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-arboon-download i {
    font-size: 0.9rem;
}

.arboon-inline-note {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-top: 20px;
    text-align: center;
}

.arboon-inline-note strong {
    color: #ffffff;
    font-weight: 800;
}

/* Transfer Note */
.arboon-transfer-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

.arboon-transfer-note p {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.arboon-transfer-note p strong {
    color: #ffffff;
    font-weight: 700;
    font-weight: 800;
}

/* ===== ARBOON CONTRACT SECTION ===== */
.arboon-contract-section {
    background: #111111;
    padding: 110px 40px 120px;
}

.arboon-contract-card {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contract-header {
    background: #0a0a0a;
    padding: 35px 45px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 3px solid #ffffff;
}

.contract-logo {
    max-width: 160px;
    height: auto;
}

.contract-header-text h3 {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.contract-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.contract-body {
    padding: 45px;
    color: #1a1a1a;
}

.contract-meta {
    text-align: center;
    margin-bottom: 30px;
}

.contract-meta p {
    font-size: 1rem;
    color: #444;
    line-height: 2;
}

.contract-between {
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 25px;
}

.contract-parties {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
}

.contract-party {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.contract-party h4 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
}

.contract-party ul {
    list-style: none;
    padding: 0;
}

.contract-party ul li {
    font-size: 0.9rem;
    line-height: 2;
    color: #444;
    position: relative;
    padding-right: 14px;
}

.contract-party ul li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: #ffffff;
    font-weight: 700;
}

.contract-clause {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contract-clause:last-of-type {
    border-bottom: none;
}

.contract-clause h4 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contract-clause p {
    font-size: 0.95rem;
    line-height: 2;
    color: #444;
}

.contract-clause p strong {
    color: #1a1a1a;
    font-weight: 700;
}

.contract-clause ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.contract-clause ul li {
    font-size: 0.95rem;
    line-height: 2.2;
    color: #444;
    position: relative;
    padding-right: 18px;
}

.contract-clause ul li::before {
    content: '—';
    position: absolute;
    right: 0;
    color: #c9a84c;
    font-weight: 700;
}

/* Contract Signatures */
.contract-signatures {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e5e5e5;
}

.contract-sign-intro {
    font-size: 0.9rem;
    line-height: 2;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.contract-sign-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contract-sign {
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 12px;
}

.contract-sign h5 {
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contract-sign p {
    font-size: 0.9rem;
    color: #666;
    line-height: 2;
}

/* ===== ARBOON PAGE RESPONSIVE ===== */
@media (max-width: 968px) {
    .arboon-hero-content {
        padding: 100px 20px 50px;
    }

    .arboon-hero-logo {
        max-width: 280px;
    }

    .arboon-policy-section,
    .arboon-cases-section,
    .arboon-transfer-section,
    .arboon-contract-section {
        padding: 80px 25px;
    }

    .arboon-case {
        padding: 28px 30px;
    }

    .arboon-case-desc {
        padding-right: 0;
    }

    .arboon-transfer-card {
        padding: 35px 30px;
    }

    .contract-header {
        padding: 25px 30px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .contract-logo {
        max-width: 120px;
    }

    .contract-body {
        padding: 30px 25px;
    }

    .contract-parties {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contract-sign-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .arboon-hero-content {
        padding: 90px 16px 40px;
        gap: 4px;
    }

    .arboon-hero-logo {
        max-width: 220px;
    }

    .arboon-hero-tagline {
        letter-spacing: 3px;
        font-size: 0.75rem;
    }

    .arboon-section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .arboon-subsection-title {
        font-size: 1.4rem;
    }

    .arboon-step {
        padding: 18px 20px;
        gap: 14px;
    }

    .arboon-step-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .arboon-case {
        padding: 24px 22px;
        border-radius: 16px;
    }

    .arboon-case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .arboon-case-number {
        font-size: 1.8rem;
        min-width: 35px;
    }

    .arboon-cases-heading {
        font-size: 1.6rem;
    }

    .arboon-transfer-card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .transfer-label {
        min-width: auto;
        width: 100%;
    }

    .transfer-value {
        font-size: 1.05rem;
    }

    .arboon-transfer-note {
        padding: 22px;
    }

    .contract-body {
        padding: 25px 18px;
    }

    .contract-party {
        padding: 16px;
    }
}
