    @font-face { font-family: 'Heebo'; src: url('fonts/heebo-300.ttf'); font-weight: 300; }
    @font-face { font-family: 'Heebo'; src: url('fonts/heebo-400.ttf'); font-weight: 400; }
    @font-face { font-family: 'Heebo'; src: url('fonts/heebo-500.ttf'); font-weight: 500; }
    @font-face { font-family: 'Heebo'; src: url('fonts/heebo-600.ttf'); font-weight: 600; }
    @font-face { font-family: 'Heebo'; src: url('fonts/heebo-700.ttf'); font-weight: 700; }
    @font-face { font-family: 'Heebo'; src: url('fonts/heebo-800.ttf'); font-weight: 800; }
    @font-face { font-family: 'Heebo'; src: url('fonts/heebo-900.ttf'); font-weight: 900; }
  

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --gold: #c9a84c;
      --gold-light: #e2c97e;
      --gold-dark: #a07830;
      --black: #0a0a0a;
      --black-mid: #141414;
      --black-light: #1e1e1e;
      --gray: #2a2a2a;
      --gray-text: #888;
      --white: #f5f0e8;
      --white-pure: #ffffff;
      --radius: 8px;
      --transition: 0.3s ease;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Heebo', sans-serif;
      background: var(--black);
      color: var(--white);
      line-height: 1.7;
      direction: rtl;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-dark); padding: 4px 14px; border-radius: 20px; margin-bottom: 16px; }
    .section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--white-pure); line-height: 1.3; margin-bottom: 16px; }
    .section-title span { color: var(--gold); }
    .section-sub { font-size: 1.05rem; color: var(--gray-text); max-width: 640px; line-height: 1.8; }
    .gold-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 24px; border-radius: 2px; }
    .reveal { transition: opacity 0.7s ease, transform 0.7s ease; }
    .js-animations .reveal { opacity: 0; transform: translateY(32px); }
    .reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }
    .navbar { position: fixed; top: 0; right: 0; left: 0; z-index: 1000; padding: 16px 0; transition: background var(--transition), padding var(--transition), box-shadow var(--transition); }
    .navbar.scrolled { background: rgba(10, 10, 10, 0.97); padding: 10px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.6); }
    .navbar .container { display: flex; align-items: center; justify-content: space-between; }
    .navbar-logo { max-height: 50px; width: auto;  height: 160px; width: auto; }
    .navbar-links { display: flex; gap: 32px; align-items: center; }
    .navbar-links a { font-size: 0.92rem; font-weight: 500; color: var(--white); opacity: 0.85; transition: color var(--transition), opacity var(--transition); position: relative; }
    .navbar-links a::after { content: ''; position: absolute; bottom: -4px; right: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--transition); }
    .navbar-links a:hover { opacity: 1; color: var(--gold); }
    .navbar-links a:hover::after { width: 100%; }
    .navbar-cta { background: var(--gold); color: var(--black) !important; opacity: 1 !important; padding: 9px 22px; border-radius: var(--radius); font-weight: 700 !important; transition: background var(--transition), transform var(--transition) !important; }
    .navbar-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
    .navbar-cta::after { display: none !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--transition); }
    .mobile-menu { display: none; position: fixed; top: 0; right: 0; left: 0; bottom: 0; background: rgba(10,10,10,0.98); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 36px; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 1.5rem; font-weight: 700; color: var(--white); transition: color var(--transition); }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-close { position: absolute; top: 20px; left: 24px; font-size: 2rem; color: var(--gold); cursor: pointer; background: none; border: none; line-height: 1; }
    .hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
    .hero-bg { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 100%), url('hero-bg.jpg') center/cover no-repeat; }
    .hero-texture { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%); }
    .hero-content { position: relative; z-index: 2; padding: 140px 24px 80px; max-width: 820px; }
    .hero-logo { max-width: 180px; height: auto;  width: 440px; height: 440px; object-fit: contain; margin: 0 auto 36px; filter: drop-shadow(0 8px 32px rgba(201,168,76,0.25)); animation: floatLogo 4s ease-in-out infinite; }
    @keyframes floatLogo { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
    .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); border-radius: 20px; padding: 6px 18px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 24px; }
    .hero-badge::before { content: '✦'; font-size: 0.65rem; }
    .hero-title { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900; line-height: 1.15; color: var(--white-pure); margin-bottom: 12px; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
    .hero-title .gold { color: var(--gold); }
    .hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(245, 240, 232, 0.75); margin-bottom: 16px; font-weight: 400; letter-spacing: 0.03em; }
    .hero-divider { width: 80px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 24px auto; }
    .hero-tagline { font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: var(--white); font-weight: 300; margin-bottom: 48px; opacity: 0.9; }
    .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-gold { background: var(--gold); color: var(--black); font-weight: 800; font-size: 1rem; padding: 14px 36px; border-radius: var(--radius); border: none; cursor: pointer; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); box-shadow: 0 4px 20px rgba(201,168,76,0.3); }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.4); }
    .btn-outline { background: transparent; color: var(--white); font-weight: 600; font-size: 1rem; padding: 14px 36px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.3); cursor: pointer; transition: border-color var(--transition), color var(--transition), transform var(--transition); }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
    .hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.75rem; animation: bounce 2s infinite; }
    .hero-scroll svg { width: 20px; height: 20px; }
    @keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
    .stats-bar { background: var(--black-mid); border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); padding: 36px 0; }
    .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; text-align: center; }
    .stat-number { font-size: 2.4rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px; }
    .stat-label { font-size: 0.9rem; color: var(--gray-text); font-weight: 400; }
    .about { padding: 100px 0; background: var(--black); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-img-wrap { position: relative; }
    .about-img { width: 100%; height: 480px; object-fit: cover; object-position: center 15%; border-radius: 12px; filter: brightness(0.85); }
    .about-img-badge { position: absolute; bottom: -24px; left: -24px; background: var(--gold); color: var(--black); padding: 24px; border-radius: 12px; font-weight: 800; font-size: 1rem; line-height: 1.4; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
    .about-img-badge strong { font-size: 2rem; display: block; }
    .about-points { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
    .about-point { display: flex; align-items: flex-start; gap: 16px; }
    .about-point-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
    .about-point-text h4 { font-weight: 700; color: var(--white-pure); margin-bottom: 4px; }
    .about-point-text p { font-size: 0.9rem; color: var(--gray-text); }
    .services { padding: 100px 0; background: var(--black-mid); }
    .services-header { text-align: center; margin-bottom: 60px; }
    .services-header .section-sub { margin: 0 auto; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .service-card { background: var(--black-light); border: 1px solid rgba(201,168,76,0.1); border-radius: 16px; padding: 40px 32px; transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); position: relative; overflow: hidden; }
    .service-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); opacity: 0; transition: opacity var(--transition); }
    .service-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
    .service-card:hover::before { opacity: 1; }
    .service-icon { width: 60px; height: 60px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 24px; }
    .service-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--white-pure); margin-bottom: 12px; }
    .service-card p { font-size: 0.92rem; color: var(--gray-text); line-height: 1.75; }
    .service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; font-size: 0.88rem; font-weight: 700; color: var(--gold); transition: gap var(--transition); }
    .service-link:hover { gap: 10px; }
    .process { padding: 100px 0; background: var(--black); }
    .process-header { text-align: center; margin-bottom: 72px; }
    .process-header .section-sub { margin: 0 auto; }
    .process-phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(201,168,76,0.08); border-radius: 12px; overflow: hidden; margin-bottom: 60px; border: 1px solid rgba(201,168,76,0.15); }
    .phase-label { padding: 14px; text-align: center; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); background: rgba(201,168,76,0.06); }
    .steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
    .step-card { background: var(--black-light); border: 1px solid rgba(201,168,76,0.08); border-radius: 12px; padding: 28px; display: flex; gap: 20px; align-items: flex-start; transition: border-color var(--transition), transform var(--transition); }
    .step-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
    .step-num { width: 48px; height: 48px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 900; color: var(--black); flex-shrink: 0; }
    .step-body h4 { font-weight: 700; color: var(--white-pure); margin-bottom: 6px; font-size: 0.97rem; }
    .step-body p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.65; }
    .projects { padding: 100px 0; background: var(--black-mid); }
    .projects-header { text-align: center; margin-bottom: 60px; }
    .projects-header .section-sub { margin: 0 auto; }
    .projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
    .project-card { background: var(--black-light); border: 1px solid rgba(201,168,76,0.1); border-radius: 12px; overflow: hidden; transition: transform var(--transition), border-color var(--transition); }
    .project-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }
    .project-header { background: linear-gradient(135deg, var(--gray), var(--black-light)); padding: 28px 24px 20px; border-bottom: 1px solid rgba(201,168,76,0.1); display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
    .project-type { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; background: rgba(201,168,76,0.12); color: var(--gold); border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; padding: 3px 10px; white-space: nowrap; }
    .project-header h3 { font-size: 1rem; font-weight: 700; color: var(--white-pure); line-height: 1.4; }
    .project-body { padding: 20px 24px; display: flex; gap: 24px; }
    .project-stat { text-align: center; }
    .project-stat-num { font-size: 1.5rem; font-weight: 900; color: var(--gold); }
    .project-stat-label { font-size: 0.75rem; color: var(--gray-text); }
    .project-status { padding: 12px 24px; background: rgba(201,168,76,0.04); border-top: 1px solid rgba(201,168,76,0.08); font-size: 0.8rem; color: var(--gray-text); display: flex; align-items: center; gap: 8px; }
    .project-status::before { content: ''; display: block; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
    .elderly { padding: 100px 0; background: var(--black); }
    .elderly-inner { background: linear-gradient(135deg, var(--black-light) 0%, rgba(201,168,76,0.05) 100%); border: 1px solid rgba(201,168,76,0.2); border-radius: 20px; padding: 64px; position: relative; overflow: hidden; }
    .elderly-inner::before { content: '70+'; position: absolute; left: -10px; top: 50%; transform: translateY(-50%); font-size: 14rem; font-weight: 900; color: rgba(201,168,76,0.04); line-height: 1; pointer-events: none; }
    .elderly-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; position: relative; }
    .elderly-rights { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
    .elderly-right { display: flex; align-items: flex-start; gap: 14px; background: rgba(201,168,76,0.05); border: 1px solid rgba(201,168,76,0.12); border-radius: 10px; padding: 16px 18px; }
    .elderly-right-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
    .elderly-right p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.65; }
    .elderly-right p strong { color: var(--white); }
    .elderly-who { background: rgba(201,168,76,0.08); border-right: 4px solid var(--gold); border-radius: 8px; padding: 20px 24px; margin-top: 24px; }
    .elderly-who h4 { color: var(--gold); font-weight: 700; margin-bottom: 10px; }
    .elderly-who p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.7; }
    .whyus { padding: 100px 0; background: var(--black-mid); }
    .whyus-header { text-align: center; margin-bottom: 60px; }
    .whyus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
    .why-card { text-align: center; padding: 40px 24px; background: var(--black-light); border: 1px solid rgba(201,168,76,0.08); border-radius: 16px; transition: border-color var(--transition), transform var(--transition); }
    .why-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
    .why-icon { font-size: 2.4rem; margin-bottom: 20px; }
    .why-card h3 { font-weight: 800; color: var(--white-pure); margin-bottom: 10px; }
    .why-card p { font-size: 0.88rem; color: var(--gray-text); line-height: 1.7; }
    .contact { padding: 100px 0; background: var(--black); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    .contact-info { padding-top: 16px; }
    .contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--white-pure); margin-bottom: 16px; }
    .contact-info p { color: var(--gray-text); line-height: 1.8; margin-bottom: 40px; }
    .contact-items { display: flex; flex-direction: column; gap: 20px; }
    .contact-item { display: flex; align-items: center; gap: 16px; }
    .contact-item-icon { width: 50px; height: 50px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
    .contact-item-text a { color: var(--white); font-weight: 600; font-size: 1.05rem; display: block; }
    .contact-item-text a:hover { color: var(--gold); }
    .contact-item-text span { font-size: 0.8rem; color: var(--gray-text); }
    .contact-form { background: var(--black-light); border: 1px solid rgba(201,168,76,0.12); border-radius: 20px; padding: 48px 40px; }
    .contact-form h3 { font-size: 1.4rem; font-weight: 800; color: var(--white-pure); margin-bottom: 32px; }
    .form-group { margin-bottom: 20px; }
    .form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-text); margin-bottom: 8px; }
    .form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 13px 16px; font-size: 0.95rem; color: var(--white); font-family: 'Heebo', sans-serif; direction: rtl; transition: border-color var(--transition), background var(--transition); outline: none; }
    .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: rgba(201,168,76,0.04); }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .btn-submit { width: 100%; background: var(--gold); color: var(--black); border: none; border-radius: var(--radius); padding: 15px; font-size: 1rem; font-weight: 800; font-family: 'Heebo', sans-serif; cursor: pointer; transition: background var(--transition), transform var(--transition); margin-top: 8px; }
    .btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
    footer { background: var(--black-mid); border-top: 1px solid rgba(201,168,76,0.1); padding: 60px 0 32px; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
    .footer-brand img { height: 200px; margin-bottom: 20px; }
    .footer-brand p { font-size: 0.88rem; color: var(--gray-text); line-height: 1.75; max-width: 280px; }
    .footer-col h4 { font-weight: 700; color: var(--white-pure); margin-bottom: 20px; font-size: 0.95rem; }
    .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-col ul li a { font-size: 0.88rem; color: var(--gray-text); transition: color var(--transition); }
    .footer-col ul li a:hover { color: var(--gold); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { font-size: 0.8rem; color: rgba(136,136,136,0.6); }
    .footer-bottom .gold-text { color: var(--gold); }
    .whatsapp-btn { position: fixed; bottom: 28px; left: 28px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); z-index: 900; transition: transform var(--transition), box-shadow var(--transition); }
    .whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }
    .whatsapp-btn svg { width: 30px; height: 30px; fill: white; }
    @media (max-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr; } .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
    @media (max-width: 768px) {
      .navbar-links { display: none; } .hamburger { display: flex; }
      .about-grid, .elderly-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-img-wrap { order: -1; } .about-img { height: 300px; } .about-img-badge { bottom: -16px; left: 16px; }
      .services-grid { grid-template-columns: 1fr; } .process-phases { grid-template-columns: 1fr; }
      .elderly-inner { padding: 40px 28px; } .elderly-inner::before { font-size: 8rem; }
      .contact-form { padding: 32px 24px; } .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 36px; } .footer-bottom { flex-direction: column; text-align: center; }
      .hero-logo { max-width: 180px; height: auto;  width: 340px; height: 340px; }
    }
    @media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } .projects-grid { grid-template-columns: 1fr; } }