*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bx: #7d1e2e;
  --bxd: #5c1520;
  --bxl: #9e2a3d;
  --go: #b8923a;
  --gol: #d4ab58;
  --gop: #f5edcf;
  --cr: #faf6ee;
  --crd: #f0e8d5;
  --dk: #120a04;
  --tx: #1e1008;
  --mu: #7a6040;
  --wh: #fff;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--cr);
  color: var(--tx);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 68px;
  background: rgba(250, 246, 238, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 146, 58, 0.18);
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-footer ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-footer .social img {
  filter: brightness(0) invert(1);
}

.nav-footer .social img {
  filter: invert(88%) sepia(9%) saturate(2767%) hue-rotate(600deg)
    brightness(87%) contrast(90%);
}
nav ul a {
  text-decoration: none;
  color: var(--mu);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.5s;
}
nav ul a:hover {
  color: var(--bx);
}
.nav-cta {
  background: var(--bx) !important;
  color: #fff !important;
  padding: 0.45rem 1.3rem;
  font-size: 0.78rem;
}
.nav-cta:hover {
  background: var(--bxl) !important;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 68px;
  overflow: hidden;
}
.hero-l {
  background: var(--bx);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-l::after {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(184, 146, 58, 0.07);
}
.hero-l::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.htag {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gol);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.htag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--go);
}
.hero-l h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.4rem;
}
.hero-l h1 em {
  font-style: italic;
  color: var(--gol);
  display: block;
}
.hdesc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hbtns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-g {
  background: var(--go);
  color: var(--dk);
  padding: 0.85rem 2rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-g:hover {
  background: var(--gol);
  transform: translateY(-2px);
}
.btn-o {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-o:hover {
  border-color: var(--go);
  color: var(--go);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffd700; /* أصفر */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* 📱 Media Query للموبايل */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-footer ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-radius: 8px;

    /* مخبي بالديفو */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  /* كي يكون active */
  .nav-footer.active ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-footer .social img {
    width: 32px;
    height: 32px;
  }
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.hero-r {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--bxd);
}
.hero-img {
  overflow: hidden;
  position: relative;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.hero-img:hover img {
  transform: scale(1.05);
}
.hero-img.big {
  grid-row: span 2;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bxd);
}
.stat {
  padding: 2.2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.stat:last-child {
  border-right: none;
}
.snum {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gol);
  display: block;
  line-height: 1;
}

.social img {
  height: 20px;
  fill: rgb(136, 230, 13); /* تغيير لون التعبئة */
}
.social svg {
  fill: red; /* تغيير لون التعبئة */
  width: 30px;
  height: 30px;
}
.slb {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.4rem;
}

/* SECTION */
section {
  padding: 5.5rem 5rem;
}
.slabel {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--go);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.slabel::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--go);
}
.stitle {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--tx);
  margin-bottom: 0.8rem;
}
.sdesc {
  font-size: 0.9rem;
  color: var(--mu);
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
}

/* CATALOGUE */
.cat {
  background: var(--cr);
}
.cat-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.cat-head .slabel {
  justify-content: center;
}
.cat-head .slabel::before {
  display: none;
}
.cat-head .sdesc {
  margin: 0 auto;
}

/* Sizes tag */
.sizes-banner {
  background: var(--bx);
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.sizes-banner strong {
  color: var(--gol);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--crd);
}
.pcard {
  background: #fff;
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s;
}
.pcard::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--bx);
  transition: height 0.4s;
}
.pcard:hover {
  background: var(--cr);
}
.pcard:hover::after {
  height: 100%;
}
.pcard-ico {
  width: 46px;
  height: 46px;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bx);
  margin-bottom: 0.65rem;
}
.pcard p {
  font-size: 0.84rem;
  color: var(--mu);
  line-height: 1.65;
  font-weight: 300;
}
.pbadge {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--go);
  border: 1px solid rgba(184, 146, 58, 0.35);
  padding: 0.22rem 0.65rem;
}

/* SPECIALITE */
.spec {
  background: var(--bx);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  overflow: hidden;
}
.spec-content {
  padding: 5.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spec-content .slabel {
  color: var(--gol);
}
.spec-content .slabel::before {
  background: var(--go);
}
.spec-content .stitle {
  color: #fff;
}
.spec-content .sdesc {
  color: rgba(255, 255, 255, 0.6);
}
.spec-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sitem {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--go);
}
.sitem-ico {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.sitem h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}
.sitem p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.55;
}

.spec-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--bxd);
}
.spec-photo {
  overflow: hidden;
}
.spec-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.spec-photo:hover img {
  transform: scale(1.04);
}

/* GALERIE */
.galerie {
  background: var(--crd);
  padding: 5.5rem 5rem;
}
.gal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 250px 250px;
  gap: 3px;
}
.gitem {
  overflow: hidden;
  position: relative;
  cursor: default;
}
.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gitem:hover img {
  transform: scale(1.07);
}
.gitem.tall {
  grid-row: span 2;
}
.gitem-lbl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(92, 21, 32, 0.88);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gitem:hover .gitem-lbl {
  opacity: 1;
}

/* PROCESSUS */
.proc {
  background: #fff;
}
.proc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.steps {
  display: flex;
  flex-direction: column;
}
.step {
  display: flex;
  gap: 1.4rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(125, 30, 46, 0.1);
  transition: padding-left 0.3s;
}
.step:first-child {
  border-top: 1px solid rgba(125, 30, 46, 0.1);
}
.step:hover {
  padding-left: 0.5rem;
}
.stepn {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(125, 30, 46, 0.12);
  flex-shrink: 0;
  line-height: 1;
  min-width: 2.4rem;
}
.step h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bx);
  margin-bottom: 0.3rem;
}
.step p {
  font-size: 0.83rem;
  color: var(--mu);
  line-height: 1.6;
  font-weight: 300;
}

.proc-img {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.proc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(125, 30, 46, 0.15) 0%,
    transparent 60%
  );
}

/* CONTACT */
.contact {
  background: var(--bxd);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  overflow: hidden;
}
.ct-left {
  background: var(--bx);
  padding: 5.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.ct-left::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(184, 146, 58, 0.07);
}
.ct-left .stitle {
  color: #fff;
  font-size: 2rem;
}
.ct-left .sdesc {
  color: rgba(255, 255, 255, 0.58);
  margin-top: 0.7rem;
}
.cinfos {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.ci {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.85rem;
}
.ci-ico {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.ci strong {
  display: block;
  color: var(--gol);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.18rem;
}
.ci span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.ct-right {
  padding: 5.5rem 4rem;
  background: var(--crd);
}
.ct-right .slabel {
  color: var(--bx);
}
.ct-right .slabel::before {
  background: var(--bx);
}
.ct-right .stitle {
  color: var(--bx);
  font-size: 1.8rem;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.8rem;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.fg label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mu);
  font-weight: 500;
}
.fg input,
.fg select,
.fg textarea {
  background: #fff;
  border: 1px solid rgba(125, 30, 46, 0.14);
  color: var(--tx);
  padding: 0.7rem 0.9rem;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  font-weight: 300;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--bx);
}
.btn-submit {
  background: var(--bx);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  width: 100%;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-submit:hover {
  background: var(--bxl);
  transform: translateY(-1px);
}

/* FOOTER */
footer {
  background: var(--dk);
  padding: 3.5rem 5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.fb img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.9rem;
}
.fb p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  font-weight: 300;
}
.fc h5 {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--go);
  margin-bottom: 1.1rem;
}
.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.fc ul a {
  text-decoration: none;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.2s;
  font-weight: 300;
}
.fc ul a:hover {
  color: var(--gol);
}
.footer-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bot p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.28);
}
.footer-bot span {
  font-size: 0.72rem;
  color: var(--go);
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  nav {
    padding: 0 1.5rem;
  }
  nav ul {
    display: none;
  }
  .hero,
  .spec,
  .contact {
    grid-template-columns: 1fr;
  }
  .hero-r {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px;
  }
  .hero-img.big {
    grid-row: span 1;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  section {
    padding: 4rem 1.5rem;
  }
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .proc-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gitem.tall {
    grid-row: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .frow {
    grid-template-columns: 1fr;
  }
}
