:root { --primary: #ffcc00; --dark: #1a1a1a; --white: #fff; --grey: #f4f4f4; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: sans-serif; margin: 0; background: var(--white); }
[dir="rtl"] { direction: rtl; text-align: right; }
[dir="ltr"] { direction: ltr; text-align: left; }

.navbar { display: flex; justify-content: space-between; align-items: center; background: var(--dark); color: white; padding: 15px 5%; position: fixed; width: 100%; top: 0; z-index: 1000; }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: white; text-decoration: none; font-weight: bold; }
.logo span { color: var(--primary); }
.lang-btn { background: var(--primary); color: var(--dark) !important; padding: 5px 10px; border-radius: 4px; }

.hero, .contact-hero { height: 60vh; background: #333; color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; margin-top: 50px; padding: 20px; }
.btn { background: var(--primary); color: var(--dark); padding: 12px 25px; text-decoration: none; font-weight: bold; border-radius: 5px; border: none; cursor: pointer; display: inline-block; }

.container { padding: 60px 10%; text-align: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.thumb { width: 100%; height: 200px; object-fit: cover; cursor: pointer; border-radius: 8px; transition: 0.3s; }
.thumb:hover { transform: scale(1.05); }

.contact-container { max-width: 600px; margin: 50px auto; padding: 20px; background: var(--grey); border-radius: 10px; }
#contactForm { display: flex; flex-direction: column; gap: 15px; }
#contactForm input, #contactForm select, #contactForm textarea { padding: 12px; border: 1px solid #ccc; border-radius: 5px; width: 100%; }

.services-list { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; justify-content: center; }
.service-item { background: var(--primary); color: var(--dark); padding: 10px 20px; border-radius: 50px; font-weight: bold; }

.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 2000; justify-content: center; align-items: center; }
.lightbox-img { max-width: 80%; max-height: 80%; border: 3px solid var(--primary); }
.close-btn { position: absolute; top: 20px; right: 30px; color: white; font-size: 40px; cursor: pointer; }

footer { background: var(--dark); color: white; padding: 20px; text-align: center; }