:root {
      --gold: #C9A96E;
      --gold-light: #E8D5A3;
      --gold-dark: #8B6914;
      --dark: #0E0C0A;
      --dark-2: #1A1612;
      --dark-3: #241F18;
      --cream: #F5EFE3;
      --cream-2: #EDE4D0;
      --text-light: #D4C5A9;
      --text-muted: #7A6E5F;
      --white: #FDFAF4;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
    font-family: 'Cairo', sans-serif;
      background-color: var(--dark);
      color: var(--cream);
      overflow-x: hidden;
      direction: rtl;
    }
    button, input, textarea {
      font-family: 'Cairo', sans-serif;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.6;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 14px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(to bottom, rgba(14,12,10,0.95) 0%, transparent 100%);
      backdrop-filter: blur(2px);
    }

    .nav-logo {
      font-size: 1rem;
      color: var(--gold);
      text-transform: uppercase;
    }

    .nav-logo span {
      font-size: 1rem;
      color: var(--text-muted);
      display: block;
      text-align: center;
      margin-top: -4px;
      font-weight: bold;
    }

    .nav-cta {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
      padding: 10px 28px;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .nav-cta:hover {
      background: var(--gold);
      color: var(--dark);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,169,110,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 85% 20%, rgba(201,169,110,0.05) 0%, transparent 60%),
        linear-gradient(160deg, #0E0C0A 0%, #1A1612 50%, #0E0C0A 100%);
    }

    /* Decorative geometric lines */
    .hero-lines {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .hero-lines svg {
      position: absolute;
      width: 100%; height: 100%;
      opacity: 0.12;
    }

    .hero-content {
      position: relative;
      text-align: center;
      z-index: 2;
      padding: 0 20px;
      max-width: 900px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(201,169,110,0.3);
      padding: 8px 24px;
      font-size: 0.75rem;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s ease forwards;
    }

    .hero-badge::before, .hero-badge::after {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--gold);
      opacity: 0.5;
    }

    .hero-title {
      font-size: clamp(3rem, 8vw, 7rem);
      font-weight: 900;
      line-height: 1.6;
      color: var(--white);
      margin-bottom: 12px;
      opacity: 0;

      animation: fadeUp 0.9s 0.4s ease forwards;
    }

    .hero-title .gold { color: var(--gold); }

    .hero-subtitle-ar {
      font-size: clamp(1.6rem, 4vw, 3rem);
      font-weight: 300;
      color: var(--gold-light);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.9s 0.55s ease forwards;
    }

    .hero-divider {
      width: 80px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 0 auto 32px;
      opacity: 0;
      animation: fadeIn 1s 0.7s ease forwards;
    }

    .hero-desc {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto 48px;
      font-weight: 300;
      opacity: 0;
      animation: fadeUp 0.9s 0.75s ease forwards;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.9s 0.9s ease forwards;
      margin-bottom: 20px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
      color: var(--dark);
      padding: 18px 48px;
      font-size: 1rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 60px rgba(201,169,110,0.35);
    }

    .btn-secondary {
      background: transparent;
      color: var(--gold);
      padding: 18px 40px;
      font-size: 1rem;
      font-weight: 500;
      border: 1px solid rgba(201,169,110,0.5);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      border-color: var(--gold);
      background: rgba(201,169,110,0.05);
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--text-muted);
      font-size: 0.7rem;
      opacity: 0;
      animation: fadeIn 1s 1.5s ease forwards;
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollDown 2s ease-in-out infinite;
    }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--dark-3);
      border-top: 1px solid rgba(201,169,110,0.15);
      border-bottom: 1px solid rgba(201,169,110,0.15);
      padding: 32px 60px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .stat-item {
      text-align: center;
      padding: 16px;
      position: relative;
    }

    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: rgba(201,169,110,0.15);
    }

    .stat-number {
      font-size: 2.8rem;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* ── SECTION SHARED ── */
    .section {
      padding: 120px 60px;
    }

    .section-tag {
      font-size: 0.7rem;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-tag::after {
      content: '';
      height: 1px;
      width: 40px;
      background: var(--gold);
      opacity: 0.4;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1.2;
      color: var(--white);
      margin-bottom: 20px;
    }

    .section-title .gold { color: var(--gold); }

    /* ── PRODUCTS ── */
    .products {
      background: var(--dark-2);
    }

    .products-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 80px;
    }

    .products-header .section-tag {
      justify-content: center;
    }

    .products-header .section-tag::after { display: none; }

    /* ── GALLERY ── */
    .gallery-section { background: var(--dark-2); }

    .gallery-tabs {
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 60px;
    }

    .gtab {
      padding: 10px 22px;
      border: 1px solid rgba(201,169,110,0.2);
      background: transparent;
      color: var(--text-muted);
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .gtab { border-color: rgba(201,169,110,0.5); color: var(--gold); }
    .gtab.active {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--dark);
      font-weight: 700;
    }

    /* Masonry-style gallery */
    .gallery-grid {
      columns: 3;
      column-gap: 3px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .gcard {
      break-inside: avoid;
      position: relative;
      overflow: hidden;
      margin-bottom: 3px;
      cursor: pointer;
      display: block;
    }

    .gcard img {
      width: 100%;
      display: block;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      object-fit: cover;
    }

    .gcard:hover img { transform: scale(1.06); }

    .gcard-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(14,12,10,0.92) 0%, rgba(14,12,10,0.1) 50%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
    }

    .gcard .gcard-overlay { opacity: 1; }

    .gcard-tag {
      font-size: 2rem;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .gcard-title {
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--white);
    }

    /* Gold corner accent */
    .gcard::before {
      content: '';
      position: absolute;
      top: 16px; right: 16px;
      width: 24px; height: 24px;
      border-top: 2px solid var(--gold);
      border-right: 2px solid var(--gold);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 2;
    }
    .gcard:hover::before { opacity: 1; }

    /* Lightbox */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.96);
      z-index: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .lightbox.open { opacity: 1; pointer-events: all; }

    .lightbox img {
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      border: 1px solid rgba(201,169,110,0.15);
      transform: scale(0.95);
      transition: transform 0.4s ease;
    }

    .lightbox.open img { transform: scale(1); }

    .lb-close {
      position: absolute;
      top: 24px; left: 24px;
      color: var(--text-muted);
      font-size: 2rem;
      background: none;
      border: none;
      cursor: pointer;
      transition: color 0.3s;
      line-height: 1;
    }
    .lb-close:hover { color: var(--gold); }

    .lb-caption {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.85rem;
      color: var(--gold);
      text-align: center;
    }

    .lb-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(201,169,110,0.1);
      border: 1px solid rgba(201,169,110,0.2);
      color: var(--gold);
      font-size: 1.5rem;
      width: 52px; height: 52px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    .lb-arrow:hover { background: rgba(201,169,110,0.2); }
    .lb-prev { left: 24px; }
    .lb-next { right: 24px; }

    /* hidden gcard items (for filter) */
    .gcard.hidden { display: none; }

    /* ── WHY US ── */
    .why {
      background: var(--dark);
      padding: 120px 60px;
    }

    .why-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .features-list {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-top: 48px;
    }

    .feature-item {
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }

    .feature-number {
      font-size: 3rem;
      color: rgba(201,169,110,0.15);
      line-height: 1;
      min-width: 60px;
    }

    .feature-content h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
    }

    .feature-content p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    .why-visual {
      position: relative;
    }

    .ornament-box {
      position: relative;
      width: 100%;
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ornament-ring {
      position: absolute;
      border: 1px solid rgba(201,169,110,0.15);
      border-radius: 50%;
      animation: spin 20s linear infinite;
    }

    .ornament-ring:nth-child(1) { inset: 0; }
    .ornament-ring:nth-child(2) { inset: 15%; border-color: rgba(201,169,110,0.1); animation-duration: 30s; animation-direction: reverse; }
    .ornament-ring:nth-child(3) { inset: 30%; border-color: rgba(201,169,110,0.2); animation-duration: 15s; }

    .ornament-center {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .ornament-year {
      font-size: 5rem;
      color: var(--gold);
      opacity: 0.2;
      display: block;
      line-height: 1;
    }

    .ornament-since {
      font-size: 0.7rem;
      color: var(--gold);
      text-transform: uppercase;
    }

    .ornament-label {
      font-size: 1.2rem;
      color: var(--text-light);
      margin-top: 8px;
    }

    /* Geometric accent dots */
    .geo-dot {
      position: absolute;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.4;
    }

    /* ── TESTIMONIAL ── */
    .testimonial {
      background: var(--dark-3);
      padding: 100px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .testimonial::before {
      content: '"';
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 20rem;
      color: rgba(201,169,110,0.04);
      line-height: 1;
      pointer-events: none;
    }

    .testimonial-text {
      font-size: clamp(1.2rem, 2.5vw, 2rem);
      color: var(--cream);
      max-width: 800px;
      margin: 0 auto 40px;
      line-height: 1.7;
      font-style: italic;
    }

    .testimonial-author {
      font-size: 0.85rem;
      color: var(--gold);
    }

    /* ── CTA SECTION ── */
    .cta-section {
      background: linear-gradient(135deg, #0E0C0A 0%, #1e1912 40%, #0E0C0A 100%);
      padding: 120px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      z-index: 2;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-section .section-title {
      font-size: clamp(2rem, 5vw, 4rem);
      margin-bottom: 20px;
    }

    .cta-section p {
      font-size: 1.05rem;
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 48px;
    }

    .cta-form {
      margin: 20px auto ;
    }

    .cta-input {
      flex: 1;
      padding: 18px 24px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,169,110,0.3);
      border-left: none;
      color: var(--white);
      font-size: 1rem;
      outline: none;
      text-align: right;
    }

    .cta-input::placeholder { color: var(--text-muted); }

    .cta-input:focus {
      border-color: rgba(201,169,110,0.6);
      background: rgba(201,169,110,0.03);
    }

    .cta-submit {
      background: var(--gold);
      color: var(--dark);
      border: none;
      padding: 18px 32px;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.3s ease;
    }

    .cta-submit:hover {
      background: var(--gold-light);
    }

    .cta-note {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(201,169,110,0.1);
      padding: 48px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-logo {
      font-size: 1.4rem;
      color: var(--gold);
    }

    .footer-copy {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.3s;
    }

    .footer-links a:hover { color: var(--gold); }

    /* ── TRUST BADGES ── */
    .trust-row {
      display: flex;
      justify-content: center;
      gap: 48px;
      padding: 48px 60px;
      background: var(--dark-2);
      border-top: 1px solid rgba(201,169,110,0.08);
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-muted);
      font-size: 1.1rem;
    }

    .trust-icon {
      width: 36px; height: 36px;
      border: 1px solid rgba(201,169,110,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes scrollDown {
      0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
      50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    }

    /* ── MODAL ── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      backdrop-filter: blur(8px);
    }

    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .modal {
      background: var(--dark-2);
      border: 1px solid rgba(201,169,110,0.2);
      padding: 15px;
      max-width: 540px;
      width: 90%;
      text-align: center;
      transform: translateY(20px);
      transition: transform 0.4s ease;
    }

    .modal-overlay.open .modal { transform: translateY(0); }

    .modal h2 {
      font-size: 2rem;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .modal p {
      color: var(--text-muted);
      margin-bottom: 32px;
      line-height: 1.8;
    }

    .modal-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .modal-input {
      padding: 16px 20px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,169,110,0.2);
      color: var(--white);
      font-size: 1rem;
      outline: none;
      text-align: right;
    }

    .modal-input:focus { border-color: var(--gold); }

    .modal-submit {
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      color: var(--dark);
      border: none;
      padding: 18px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: opacity 0.3s;
      margin-top: 8px;
    }

    .modal-submit:hover { opacity: 0.9; }

    .modal-close {
      position: absolute;
      top: 20px;
      left: 20px;
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 1.5rem;
      cursor: pointer;
      transition: color 0.3s;
    }

    .modal-close:hover { color: var(--gold); }

    .modal { position: relative; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 20px 24px; }
      .section, .why, .cta-section { padding: 80px 24px; }
      .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 24px; }
      .stat-item:nth-child(2)::after { display: none; }
      .gallery-grid { columns: 2; }
      .why-inner { grid-template-columns: 1fr; gap: 60px; }
      .ornament-box { display: none; }
      .cta-form { flex-direction: column; }
      .cta-input { border-left: 1px solid rgba(201,169,110,0.3); }
      footer { flex-direction: column; gap: 24px; text-align: center; }
      .trust-row { gap: 24px; padding: 36px 24px; }
      .lb-arrow { display: none; }
    }
    @media (max-width: 600px) {
      .hero-title { font-size: 3rem; }
      .gallery-grid { columns: 1; }
      .stats-bar { grid-template-columns: repeat(2, 1fr); }
      .gtab { padding: 8px 14px; font-size: 0.8rem; }
      .gcard { margin-top: 15px;border: 0.1px solid #c5a56d; }
    }
    .testimonial-text {
      font-size: 015px !important;
    }
   /* ── TESTIMONIALS SLICK (Luxury Theme) ── */

.testimonials-slider {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
  overflow: hidden;
}

/* كل كرت */
.testimonial {
  background: linear-gradient(145deg, var(--dark-2), var(--dark-3));
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 18px;
  text-align: center;
  padding: 5px 8px !important;
  position: relative;
  overflow: hidden;
  margin: 5px;
  transition: all 0.4s ease;
}

/* لمسة ذهبية خفيفة */
.testimonial::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(201,169,110,0.15), transparent 70%);
  filter: blur(2px);
}

/* علامة اقتباس فخمة */
.testimonial::after {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(201,169,110,0.08);
  font-family: serif;
}

/* النص */
.testimonial-text {
  font-size: 1rem;
  line-height: 2;
  color: var(--cream);
  max-width: 750px;
  margin: 0 auto 30px;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* الاسم */
.testimonial-author {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

/* المدينة */
.testimonial-author::after {
  content: " - عميل موثوق";
  color: var(--text-muted);
  margin-right: 6px;
  font-size: 0.75rem;
}

/* ── SLICK DOTS ── */

.slick-dots {
  bottom: -35px;
}

.slick-dots li button:before {
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.5;
}

.slick-dots li.slick-active button:before {
  color: var(--gold);
  opacity: 1;
}

/* ── ARROWS ── */

.slick-prev,
.slick-next {
  width: 45px;
  height: 45px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
  background: rgba(201,169,110,0.15);
  border-color: var(--gold);
}

.slick-prev:before,
.slick-next:before {
  color: var(--gold);
  font-size: 18px;
}

/* رفع السلايدر */
.slick-slide {
  opacity: 0.6;
  transform: scale(0.95);
  transition: all 0.4s ease;
}

.slick-center {
  opacity: 1;
  transform: scale(1);
}
.soc-wrap {
  direction: rtl;
  text-align: center;
  padding: 48px 24px 40px;
  background: linear-gradient(160deg, #0E0C0A 0%, #1a1510 60%, #0E0C0A 100%);
  position: relative;
  overflow: hidden;
}
.soc-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.soc-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 5px;
  color: #C9A96E;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.7;
}
.soc-title {
  font-size: 1.5rem;
  color: #FDFAF4;
  margin-bottom: 4px;
  font-weight: 700;
}
.soc-title span { color: #C9A96E; }
.soc-divider {
  width: 48px; height: 1px;
  background: linear-gradient(to right, transparent, #C9A96E, transparent);
  margin: 14px auto 28px;
}
.soc-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 440px;
  margin: 0 auto;
}
.soc-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.soc-btn:hover { transform: translateY(-4px); }
.soc-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,169,110,0.25);
  background: rgba(201,169,110,0.04);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.soc-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.soc-btn:hover .soc-icon {
  border-color: rgba(201,169,110,0.7);
  background: rgba(201,169,110,0.08);
  box-shadow: 0 0 20px rgba(201,169,110,0.12);
}
.soc-btn:hover .soc-icon::before { opacity: 1; }
.soc-icon svg {
  width: 20px; height: 20px;
  fill: #C9A96E;
  opacity: 0.8;
  transition: opacity 0.3s;
  position: relative; z-index: 1;
}
.soc-btn:hover .soc-icon svg { opacity: 1; }
.soc-label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: #7A6E5F;
  text-transform: uppercase;
  transition: color 0.3s;
}
.soc-btn:hover .soc-label { color: #C9A96E; }
.soc-footer {
  margin-top: 28px;
  font-size: 0.75rem;
  color: #4a4035;
  letter-spacing: 2px;
  text-transform: uppercase;
}