/* prjolat.css — مستخرج من page-prjolat-jaddeh.php */

/* --- Core Variables --- */
    :root {
        --gold-primary: #C5A059;
        --gold-light: #F3E2B3;
        --gold-dark: #8E6D2F;
        --bg-dark: #050505;
        --bg-card: rgba(255, 255, 255, 0.03);
    }

    /* --- Base Styles --- */
    body {
        font-family: 'Noto Kufi Arabic', sans-serif;
        background-color: var(--bg-dark);
        color: #ffffff;
        overflow-x: hidden;
    }

    /* --- Typography & Gradients --- */
    .gold-gradient-text {
        background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

    .btn-gold {
        background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
        color: #000;
        font-weight: 800;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .btn-gold::before {
        content: '';
        position: absolute;
        top: 0; left: -100%; width: 100%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: 0.5s;
    }
    
    .btn-gold:hover::before { left: 100%; }
    .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3); }

    /* --- Glassmorphism Cards --- */
    .glass-card {
        background: var(--bg-card);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 1.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .glass-card:hover {
        border-color: var(--gold-primary);
        background: rgba(197, 160, 89, 0.05);
        transform: translateY(-5px);
    }

    /* --- Swiper Animation --- */
    .swiper-slide .slide-content { opacity: 0; transform: translateY(30px); transition: all 1s ease-out; }
    .swiper-slide-active .slide-content { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
    
    .slide-bg {
        transform: scale(1);
        transition: transform 8s ease-out;
    }
    .swiper-slide-active .slide-bg { transform: scale(1.1); }

    /* --- Animations --- */
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    .animate-float { animation: float 6s ease-in-out infinite; }

    /* --- Scroll Bar --- */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--bg-dark); }
    ::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

    /* --- Mobile Nav --- */
    .mobile-nav {
        background: rgba(5, 5, 5, 0.9);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    START NEW CSS

/* ============================================================
   NEW SECTIONS — Missing CSS for rz-* components
   RTL Arabic | Mobile-first | Luxury Dark Theme
   ============================================================ */

/* --- Shared Layout Utilities --- */
.rz-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.rz-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rz-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.rz-heading {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.rz-subheading {
  font-size: 1rem;
  color: #9ca3af;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ============================================================
   TYPES SECTION — أنواع البرجولات
   ============================================================ */
.rz-types-section {
  padding-block: 5rem;
  background-color: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rz-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .rz-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rz-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rz-type-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease;
  overflow: hidden;
}

.rz-type-card:hover {
  border-color: rgba(197, 160, 89, 0.4);
  background: rgba(197, 160, 89, 0.04);
  transform: translateY(-4px);
}

.rz-type-featured {
  border-color: rgba(197, 160, 89, 0.35);
  background: rgba(197, 160, 89, 0.06);
}

.rz-type-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 0.6rem 0;
}

.rz-type-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.rz-type-icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.rz-type-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.rz-type-desc {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.rz-type-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rz-type-specs li {
  font-size: 0.8125rem;
  color: #6b7280;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.rz-spec-icon {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.rz-type-use {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}

/* ============================================================
   PRICES SECTION — أسعار البرجولات
   ============================================================ */
.rz-prices-section {
  padding-block: 5rem;
  background-color: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rz-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.5rem;
}

.rz-price-table,
.rz-compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.rz-price-table thead tr,
.rz-compare-table thead tr {
  background: rgba(197, 160, 89, 0.1);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.rz-price-table th,
.rz-compare-table th {
  padding: 0.875rem 1rem;
  text-align: right;
  font-weight: 700;
  color: var(--gold-primary);
  white-space: nowrap;
}

.rz-price-table td,
.rz-compare-table td {
  padding: 0.8rem 1rem;
  color: #d1d5db;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

.rz-price-table tbody tr:last-child td,
.rz-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.rz-price-table tbody tr:hover,
.rz-compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.rz-row-featured {
  background: rgba(197, 160, 89, 0.05);
}

.rz-row-featured td {
  color: #ffffff;
}

/* Price tags */
.rz-price-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.rz-price-low {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.rz-price-mid {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.rz-price-high {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.rz-price-premium {
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-primary);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.rz-price-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(197, 160, 89, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 0.875rem;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}

.rz-price-note svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.rz-price-note p {
  font-size: 0.8125rem;
  color: #9ca3af;
  line-height: 1.65;
  margin: 0;
}

.rz-price-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.rz-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 0.875rem;
  font-size: 1rem;
  font-weight: 800;
  transition: all 0.3s ease;
  text-decoration: none;
}

.rz-cta-wa {
  background: #25d366;
  color: #000;
}

.rz-cta-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.rz-cta-wa svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

/* Mobile-first responsive tables */
@media (max-width: 639px) {
  .rz-price-table,
  .rz-compare-table {
    min-width: unset;
    font-size: 0.8rem;
  }

  .rz-price-table thead,
  .rz-compare-table thead {
    display: none;
  }

  .rz-price-table tbody tr,
  .rz-compare-table tbody tr {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
  }

  .rz-price-table tbody tr:last-child,
  .rz-compare-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .rz-price-table td,
  .rz-compare-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-align: right;
  }

  .rz-price-table td:last-child,
  .rz-compare-table td:last-child {
    border-bottom: none;
  }

  .rz-price-table td::before,
  .rz-compare-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-left: 0.5rem;
  }

  .rz-table-wrapper {
    overflow-x: unset;
    border: none;
    border-radius: 0;
  }
}

/* ============================================================
   COMPARE SECTION — مقارنة البرجولات
   ============================================================ */
.rz-compare-section {
  padding-block: 5rem;
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rz-col-featured {
  background: rgba(197, 160, 89, 0.06);
  border-inline: 1px solid rgba(197, 160, 89, 0.15);
}

.rz-compare-criterion {
  font-weight: 700;
  color: #e5e7eb;
}

.rz-rating {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}

.rz-rating-excel {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}

.rz-rating-good {
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
}

.rz-rating-avg {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}

.rz-rating-low {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

/* ============================================================
   PROJECTS SECTION — مشاريع منفذة
   ============================================================ */
.rz-projects-section {
  padding-block: 5rem;
  background-color: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rz-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .rz-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rz-projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rz-project-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.rz-project-card:hover {
  border-color: rgba(197, 160, 89, 0.3);
  transform: translateY(-3px);
}

.rz-project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.rz-project-type {
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
}

.rz-project-location {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 600;
}

.rz-project-title {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.rz-project-desc {
  font-size: 0.8125rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.rz-project-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.875rem;
}

.rz-project-specs li {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.4;
}

.rz-project-specs li strong {
  color: var(--gold-primary);
  font-weight: 700;
  display: block;
  margin-bottom: 0.1rem;
}

.rz-projects-cta {
  text-align: center;
  margin-top: 3rem;
}

.rz-projects-cta p {
  color: #6b7280;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* ============================================================
   WHY SECTION — لماذا رؤية الظل
   ============================================================ */
.rz-why-section {
  padding-block: 5rem;
  background-color: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rz-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .rz-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rz-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rz-why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.rz-why-card:hover {
  border-color: rgba(197, 160, 89, 0.25);
  background: rgba(197, 160, 89, 0.04);
}

.rz-why-number {
  font-size: 2.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.rz-why-content h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.rz-why-content p {
  font-size: 0.8125rem;
  color: #9ca3af;
  line-height: 1.75;
  margin: 0;
}

/* Trust Badges */
.rz-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

.rz-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #d1d5db;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.rz-badge:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.rz-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* ============================================================
   NEIGHBORHOODS SECTION — أحياء جدة
   ============================================================ */
.rz-neighborhoods-section {
  padding-block: 5rem;
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rz-neigh-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .rz-neigh-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rz-neigh-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rz-neigh-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.1rem;
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.rz-neigh-card:hover {
  border-color: rgba(197, 160, 89, 0.3);
  transform: translateY(-3px);
}

.rz-neigh-other {
  border-color: rgba(197, 160, 89, 0.15);
  background: rgba(197, 160, 89, 0.04);
}

.rz-neigh-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
}

.rz-neigh-title svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.rz-neigh-card p {
  font-size: 0.8125rem;
  color: #9ca3af;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.rz-neigh-cta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.65rem;
  margin-top: auto;
  transition: color 0.3s ease;
}

.rz-neigh-cta:hover {
  color: var(--gold-light);
}

/* ============================================================
   FAQ SECTION — أسئلة شائعة
   ============================================================ */
.rz-faq-section {
  padding-block: 5rem;
  background-color: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rz-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 960px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .rz-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

.rz-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.rz-faq-item[open] {
  border-color: rgba(197, 160, 89, 0.3);
  background: rgba(197, 160, 89, 0.04);
}

.rz-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  line-height: 1.5;
  user-select: none;
  gap: 0.75rem;
}

.rz-faq-question::-webkit-details-marker {
  display: none;
}

.rz-faq-question::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.rz-faq-item[open] .rz-faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.rz-faq-question:hover {
  color: var(--gold-light);
}

.rz-faq-answer {
  padding: 0 1.25rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rz-faq-answer p {
  font-size: 0.8125rem;
  color: #9ca3af;
  line-height: 1.8;
  margin: 0.75rem 0 0;
}

/* ============================================================
   RESPONSIVE TYPOGRAPHY REFINEMENTS
   ============================================================ */
@media (max-width: 639px) {
  .rz-types-section,
  .rz-prices-section,
  .rz-compare-section,
  .rz-projects-section,
  .rz-why-section,
  .rz-neighborhoods-section,
  .rz-faq-section {
    padding-block: 3.5rem;
  }

  .rz-section-header {
    margin-bottom: 2rem;
  }

  .rz-trust-badges {
    gap: 0.6rem;
  }

  .rz-badge {
    font-size: 0.75rem;
    padding: 0.45rem 0.875rem;
  }

  .rz-price-cta {
    flex-direction: column;
    align-items: center;
  }

  .rz-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .rz-project-specs {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.rz-faq-question:focus-visible,
.rz-neigh-cta:focus-visible,
.rz-cta-btn:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .rz-type-card,
  .rz-project-card,
  .rz-why-card,
  .rz-neigh-card,
  .rz-badge,
  .rz-faq-item {
    transition: none;
  }
}

