:root {
  --gold: #d4af37;
  --bg: #f4f4f4;
  --card: #ffffff;
  --muted: #666;
  --dark: #222;
  --accent: #111;
  --radius: 12px;
  --touch: 44px;
  --container-padding: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--dark);
  direction: rtl;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  background: #000;
  color: #fff;
  padding: .5rem .75rem;
  border-radius: 6px;
  z-index: 4000;
  transform: translateY(-120%);
  transition: transform .18s;
}
.skip-link:focus {
  transform: translateY(0);
}

.top-banner {
  width: 100%;
  background: var(--gold);
  color: #000;
  text-align: center;
  font-weight: 700;
  padding: 8px 10px;
  font-size: 0.95rem;
}

.site-header {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1200;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px var(--container-padding);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.15rem;
}
.logo img {
  width: 48px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}
.cart {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  position: relative;
  cursor: pointer;
}
.cart-count {
  background: var(--gold);
  color: #000;
  border-radius: 999px;
  padding: 3px 8px;
  font-weight: 700;
  font-size: 0.8rem;
  position: absolute;
  top: -8px;
  left: -10px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  border: none;
  background: none;
  z-index: 1400;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #111;
  border-radius: 3px;
  transition: transform .25s, opacity .25s;
}

.menu-close {
  display: none;
  position: absolute;
  top: 14px;
  resize: 18px;
  width: 42px;
  height: 42px;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1600;
  align-items: center;
  justify-content: center;
}
.main-nav.active .menu-close {
  display: block;
}

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80vw;
  height: 100vh;
  background: linear-gradient(160deg, #0b0b0b 60%, #c4a44f 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 20px 30px;
  gap: 20px;
  transition: right .35s ease, opacity .35s ease;
  opacity: 0;
  z-index: 1500;
}
.main-nav.active {
  right: 0;
  opacity: 1;
}
.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: right;
}
.main-nav ul li a {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
  display: block;
  padding: 8px 0;
  transition: color .2s;
}
.main-nav ul li a:hover {
  color: var(--gold);
}
.main-nav .social-menu {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

body.menu-open {
  overflow: hidden;
}
body.menu-open main,
body.menu-open footer,
body.menu-open .top-banner {
  filter: blur(4px);
  transition: filter .2s ease;
}

.hero {
  position: relative;
  padding: 36px var(--container-padding) 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,0.35),rgba(0,0,0,0.35));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  width: 100%;
  max-width: 720px;
}
.hero-content h1 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  line-height: 1.15;
}
.hero-content h1 span {
  color: var(--gold);
}
.hero-content p {
  color: #eee;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.hero-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
.btn.primary {
  background: var(--gold);
  color: #111;
}
.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}

.section {
  padding: 20px var(--container-padding);
}
h2 {
  color: var(--gold);
  margin-bottom: 12px;
  text-align: center;
  font-size: 1.05rem;
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card {
  background: var(--card);
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: right;
  display: flex;
  gap: 12px;
  align-items: center;
}
.service-card img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.portfolio-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}
.portfolio-track {
  display: flex;
  gap: 12px;
  padding-left: 4px;
}
.portfolio-item {
  min-width: 240px;
  flex: 0 0 auto;
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: right;
}
.portfolio-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.portfolio-item h4 {
  padding: 10px;
}

.pricing-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}
.pricing-card .price {
  font-weight: 700;
  color: var(--accent);
}
.btn.add-to-cart {
  background: linear-gradient(135deg,#000,#bfa145);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  min-height: var(--touch);
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonial {
  background: linear-gradient(135deg,#fff,#fbfbfb);
  border-left: 5px solid var(--gold);
  padding: 12px;
  border-radius: 10px;
  font-style: italic;
}

.site-footer {
  background: linear-gradient(135deg,#111,#1a1a1a);
  color: #f5f5f5;
  text-align: center;
  padding: 20px var(--container-padding);
  border-top: 4px solid var(--gold);
}
#contact-form {
  max-width: 520px;
  margin: 0 auto 10px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #222;
  color: #fff;
  font-size: 0.95rem;
}
.send-btn {
  background: linear-gradient(135deg,var(--gold),#b8860b);
  color: #111;
  border: none;
  padding: 10px;
  border-radius: 999px;
  min-height: var(--touch);
  font-weight: 700;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -380px;
  width: 340px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 12px rgba(0,0,0,0.15);
  transition: right .35s ease;
  z-index: 1700;
  padding: 20px;
  overflow: auto;
}
.cart-panel.open {
  right: 0;
}
.cart-close {
  position: absolute;
  top: 12px;
  left: 12px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

html, body {
  overflow-x: hidden;
}

@media (min-width: 1024px) {

  .site-header {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 60px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto; 
    align-items: center;
    padding: 0 40px; 
    height: 60px; 
  }

  .menu-toggle,
  .menu-close {
    display: none !important;
  }

  .main-nav {
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    justify-content: center; 
  height: 0px;
  }

  .main-nav ul li a {
  color: var(--dark);
  font-size: 1rem;
  font-weight: 600;
  padding: 0 8px;
  line-height: 20px; 
  align-items: center;
  height: 80px; 
  transition: color 0.25s;
}

  .main-nav ul li a:hover {
    color: var(--gold);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 700;
  }

  .logo img {
    width: 80px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    gap: 10px;
  }

  .cart {
    justify-self: end; 
    font-size: 1.4rem;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
  }

  .cart i {
    font-size: 1.5rem;
  }

  .social-menu {
    display: none !important;
  }
}

@media (min-width: 768px) {

  .pricing-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: nowrap;
    margin-top: 2rem;
  }

  .pricing-card {
    flex: 1;
    max-width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }

  .pricing-card:hover {
    transform: translateY(-6px);
  }

  #about {
    max-width: 900px;
    margin: 4rem auto;
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

  #about h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  #about p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
  }

  .testimonials-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .testimonial {
    flex: 1;
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    text-align: center;
    line-height: 1.8;
  }

  .testimonial p {
    font-size: 1rem;
    color: #333;
  }

  .testimonial footer {
    margin-top: 1rem;
    font-weight: 600;
    color: #777;
  }
}

@media (min-width: 1024px) {

  .services-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: nowrap;
    margin-top: 2rem;
  }

  .service-card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  }

  .service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

   .pricing-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem; 
    justify-items: center;
    align-items: stretch;
  }

  .pricing-card {
    width: 100%;
    max-width: 280px;
  }

  .pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  }

  .pricing-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .pricing-card .price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #c4a44f;
  }

  #about {
    max-width: 900px;
    margin: 4rem auto;
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

  #about h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  #about p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
  }

  .testimonials-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .testimonial {
    flex: 1;
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    text-align: center;
    line-height: 1.8;
  }

  .testimonial p {
    font-size: 1rem;
    color: #333;
  }

  .testimonial footer {
    margin-top: 1rem;
    font-weight: 600;
    color: #777;
  }
  .services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
    justify-items: center;
    align-items: stretch;
  }

  .service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }

  .service-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
}




