
  :root {
    --primaryColor: #c8a97e;
    --helperColor: #8b5e3c;
    --lightHelper: #e8d5c0;
    --dark: #1a1a1a;
    --card-bg: #ffffff;
    --text-dark: #2d2d2d;
    --text-mid: #555;
    --shadow: 0 10px 40px rgba(139,94,60,0.12);
    --shadow-hover: 0 20px 60px rgba(139,94,60,0.22);
  }
 
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
  body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    background: #faf8f5;
    color: var(--text-dark);
    direction: rtl;
  }
 
  /* ===== SECTION TITLE ===== */
  .services-title {
    text-align: center;
    padding: 80px 20px 20px;
  }
  .services-title h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--helperColor);
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
  }
  .services-title h2::after {
    content: "";
    position: absolute;
    right: 0; bottom: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primaryColor), var(--helperColor));
    border-radius: 2px;
  }
 
  /* ===== GRID ===== */
  .services-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 50px auto 80px;
    padding: 0 30px;
  }
 
  /* ===== CARD ===== */
  .service-card {
    background: var(--card-bg);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.4s cubic-bezier(.23,1.02,.58,1), box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: cardIn 0.7s cubic-bezier(.23,1.02,.58,1) forwards;
  }
  .service-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-hover);
  }
 
  /* staggered entrance */
  .service-card:nth-child(1) { animation-delay: 0.05s; }
  .service-card:nth-child(2) { animation-delay: 0.15s; }
  .service-card:nth-child(3) { animation-delay: 0.25s; }
  .service-card:nth-child(4) { animation-delay: 0.35s; }
  .service-card:nth-child(5) { animation-delay: 0.45s; }
  .service-card:nth-child(6) { animation-delay: 0.55s; }
  .service-card:nth-child(7) { animation-delay: 0.65s; }
  .service-card:nth-child(8) { animation-delay: 0.75s; }
 
  @keyframes cardIn {
    to { opacity: 1; transform: translateY(0); }
  }
 
  /* ===== IMAGE ===== */
  .card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .service-card:hover .card-img {
    transform: scale(1.04);
  }
  .img-wrap { overflow: hidden; }
 
  /* ===== CARD BODY ===== */
  .card-body {
    padding: 22px 22px 18px;
  }
  .card-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--helperColor);
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .card-body p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
  }
 
  /* ===== PRICE TOGGLE BUTTON ===== */
  .price-toggle-btn {
    width: 100%;
    padding: 11px 18px;
    background: linear-gradient(135deg, var(--primaryColor), var(--helperColor));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.25s, transform 0.2s;
    letter-spacing: 0.3px;
  }
  .price-toggle-btn:hover { opacity: 0.88; transform: scale(1.02); }
  .price-toggle-btn .arrow {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(.23,1.02,.58,1);
    font-size: 13px;
  }
  .price-toggle-btn.open .arrow { transform: rotate(180deg); }
 
  /* ===== PRICE PANEL ===== */
  .price-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(.23,1.02,.58,1), opacity 0.4s ease;
    opacity: 0;
  }
  .price-panel.open {
    max-height: 1200px;
    opacity: 1;
  }
  .price-list {
    padding: 14px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    border-top: 1px solid #f0ebe4;
    margin-top: 14px;
  }
  .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 14px;
    background: #faf6f1;
    border-radius: 9px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .price-panel.open .price-item {
    transform: translateX(0);
    opacity: 1;
  }
  /* stagger items */
  .price-panel.open .price-item:nth-child(1)  { transition-delay: 0.05s; }
  .price-panel.open .price-item:nth-child(2)  { transition-delay: 0.10s; }
  .price-panel.open .price-item:nth-child(3)  { transition-delay: 0.15s; }
  .price-panel.open .price-item:nth-child(4)  { transition-delay: 0.20s; }
  .price-panel.open .price-item:nth-child(5)  { transition-delay: 0.25s; }
  .price-panel.open .price-item:nth-child(6)  { transition-delay: 0.30s; }
  .price-panel.open .price-item:nth-child(7)  { transition-delay: 0.35s; }
  .price-panel.open .price-item:nth-child(8)  { transition-delay: 0.40s; }
  .price-panel.open .price-item:nth-child(9)  { transition-delay: 0.45s; }
  .price-panel.open .price-item:nth-child(10) { transition-delay: 0.50s; }
 
  .price-item .item-name { color: var(--text-dark); }
  .price-item .item-price {
    font-weight: 800;
    color: var(--helperColor);
    background: var(--lightHelper);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 13.5px;
    white-space: nowrap;
  }
 
  /* ===== RESPONSIVE ===== */
  @media (max-width: 992px) {
    .services-section { grid-template-columns: repeat(2, 1fr); gap: 22px; padding: 0 20px; }
  }
  @media (max-width: 600px) {
    .services-section { grid-template-columns: 1fr; gap: 18px; padding: 0 14px; }
    .services-title h2 { font-size: 30px; }
    .card-img { height: 190px; }
  }
