*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  direction: rtl;
  background: #ffffff;
  color: #000000;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

canvas#linzo-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* NAV */

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 7vw;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #f0f0f0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav__logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav__logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.nav__title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__name {
  font-weight: 700;
  font-size: 0.9rem;
}

.nav__tagline {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.7rem;
  color: #777777;
}

.nav__links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.9rem;
}

.nav__links a {
  position: relative;
  padding-bottom: 0.1rem;
  color: #444444;
  transition: color 0.2s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #e5004f;
  border-radius: 999px;
  transition: width 0.25s ease;
}

.nav__links a:hover {
  color: #000000;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Poppins", system-ui, sans-serif;
  position: relative;
  overflow: hidden;
}

.nav__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0)
  );
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.nav__cta:hover::after {
  transform: translateX(100%);
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 4rem;
  padding: 4.5rem 7vw 4rem;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 0.7rem;
}

.hero__title {
  font-size: clamp(2.2rem, 3.2vw + 1rem, 3.4rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.hero__title span {
  display: block;
  color: #e5004f;
}

.hero__subtitle {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 1.9rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}

.btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: #e5004f;
  color: #ffffff;
}

.btn--outline {
  background: #ffffff;
  color: #000000;
  border: 1px solid #c7c7c7;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0)
  );
  transform: translateX(-110%);
  transition: transform 0.45s ease;
}

.btn:hover::after {
  transform: translateX(110%);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  font-size: 0.9rem;
}

.hero__metric {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

.hero__label {
  color: #777777;
}

.hero__visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #c7c7c7;
}

.hero__ring--outer {
  width: 260px;
  height: 260px;
  border-color: #000000;
  animation: heroOrbit 22s linear infinite;
}

.hero__ring--inner {
  width: 170px;
  height: 170px;
  border-color: #c7c7c7;
  animation: heroOrbit 16s linear infinite reverse;
}

.hero__core {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #e5004f 0, #000000 70%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.hero__orbit {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #000000;
}

.hero__orbit--one {
  animation: dotOrbit 10s linear infinite;
}

.hero__orbit--two {
  animation: dotOrbit 14s linear infinite reverse;
}

.hero__badge {
  position: absolute;
  inset-inline-start: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: 0.75rem;
  display: flex;
  gap: 0.7rem;
  font-family: "Poppins", system-ui, sans-serif;
}

.hero__badge span + span {
  position: relative;
}

.hero__badge span + span::before {
  content: "";
  position: absolute;
  inset-inline-start: -0.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e5004f;
}

/* SECTIONS */

.section {
  padding: 4.2rem 7vw;
}

.section--soft {
  background: #fafafa;
}

.section--contact {
  background: #000000;
  color: #ffffff;
}

.section__header {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section__header--split {
  max-width: 100%;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 2.6rem;
  align-items: flex-end;
  justify-content: space-between;
  text-align: start;
}

.section__eyebrow {
  font-size: 0.8rem;
  color: #e5004f;
  margin-bottom: 0.6rem;
}

.section__title {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.section__subtitle {
  font-size: 0.95rem;
  color: #555555;
}

.section--contact .section__subtitle {
  color: #c7c7c7;
}

.grid {
  display: grid;
  gap: 1.8rem;
}

.grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--studios {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--portfolio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 1.3rem;
  padding: 1.8rem 1.7rem;
  border: 1px solid #ececec;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.card p {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 1.1rem;
}

.card__list {
  list-style: none;
  font-size: 0.9rem;
  color: #333333;
}

.card__list li + li {
  margin-top: 0.3rem;
}

.studio-card {
  background: #ffffff;
  border-radius: 1.3rem;
  padding: 1.7rem 1.6rem;
  border: 1px solid #ececec;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.studio-card::before {
  content: "";
  position: absolute;
  inset-inline-end: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #e5004f;
  opacity: 0.12;
}

.studio-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.studio-card p {
  font-size: 0.92rem;
  color: #555555;
  margin-bottom: 1rem;
}

.studio-card__tag {
  display: inline-flex;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e5004f;
  color: #e5004f;
  font-size: 0.8rem;
  font-family: "Poppins", system-ui, sans-serif;
}

.shot-card {
  background: #ffffff;
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}
.shot-card__image {
  width: 100%;        /* عرض كامل الكرت */
  height: 260px;      /* الارتفاع اللي تريده */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Card 1 */
.shot-card__image--one {
  background-image:
    linear-gradient(135deg, rgba(0,0,0,0.55), rgba(229,0,79,0.55)),
    url("images/portfolio-1.jpg");
}

/* Card 2 */
.shot-card__image--two {

  background-image:
    url("images/portfolio-2.jpg");
}

/* Card 3 */
.shot-card__image--three {
  background-image:
    radial-gradient(circle at 30% 10%, rgba(255,255,255,0.35), rgba(229,0,79,0.6)),
    url("images/portfolio-3.jpg");
}


.shot-card__info {
  padding: 1.2rem 1.4rem 1.5rem;
}

.shot-card__info span {
  font-size: 0.85rem;
  color: #777777;
}

.shot-card__info h3 {
  font-size: 1rem;
  margin-top: 0.4rem;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.3rem;
}

.form {
  background: #111111;
  border-radius: 1.4rem;
  padding: 1.9rem 1.7rem;
  border: 1px solid #333333;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form label {
  font-size: 0.85rem;
  color: #ffffff;
}

.form input,
.form select,
.form textarea {
  background: #000000;
  border-radius: 0.7rem;
  border: 1px solid #333333;
  padding: 0.8rem 0.8rem;
  font-size: 0.95rem;
  color: #ffffff;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #777777;
}

.form textarea {
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: #e5004f;
  box-shadow: 0 0 0 1px #e5004f;
}

.btn--form {
  margin-top: 0.2rem;
}

.btn__spark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
  animation: sparkBlink 1.4s ease-in-out infinite;
}

.form__note {
  font-size: 0.8rem;
  color: #c7c7c7;
  margin-top: 0.8rem;
}

.contact-meta h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-meta__list {
  list-style: none;
  font-size: 0.9rem;
  color: #c7c7c7;
}

.contact-meta__list li + li {
  margin-top: 0.4rem;
}

.contact-meta__list span {
  color: #ffffff;
  margin-inline-end: 0.3rem;
}

/* FOOTER */

.footer {
  padding: 1.6rem 7vw 1.8rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  background: #ffffff;
}

.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__name {
  font-weight: 600;
}

.footer__tagline {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.75rem;
  color: #777777;
}

.footer__copy {
  color: #777777;
}

.footer__dots {
  display: flex;
  gap: 0.16rem;
}

.footer__dots span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e5004f;
  animation: dotsPulse 1.5s ease-in-out infinite;
}

.footer__dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.footer__dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* REVEAL ANIMATIONS */

.reveal-up,
.reveal-fade,
.reveal-slide,
.reveal-zoom {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-fade {
  transform: translateY(0);
}

.reveal-slide {
  transform: translateX(26px);
}

.reveal-zoom {
  transform: scale(0.94);
}

.reveal-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* KEYFRAMES */

@keyframes heroOrbit {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

@keyframes dotOrbit {
  from {
    transform: rotate(0turn) translateX(130px);
  }
  to {
    transform: rotate(1turn) translateX(130px);
  }
}

@keyframes sparkBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(0.8);
  }
}

@keyframes dotsPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 3.2rem;
  }

  .hero__visual {
    order: -1;
    margin-bottom: 2rem;
  }

  .grid--services,
  .grid--studios,
  .grid--portfolio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section__header--split {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    padding-inline: 5vw;
  }

  .nav__links {
    display: none;
  }

  .hero {
    padding-inline: 5vw;
  }

  .section {
    padding-inline: 5vw;
  }

  .grid--services,
  .grid--studios,
  .grid--portfolio {
    grid-template-columns: minmax(0, 1fr);
  }

  .form__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }
}


