:root {
  --red: #D32F2F;
  --red-dark: #B71C1C;
  --red-light: #FFEBEE;
  --white: #FFFFFF;
  --gray-50: #F9F9F9;
  --gray-100: #F1F1F1;
  --gray-300: #CCCCCC;
  --gray-600: #666666;
  --gray-900: #111111;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, .12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .16);
  --radius: 12px;
  --transition: .25s ease;
  --font: 'Cairo', sans-serif;
  --max-w: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  direction: rtl;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---- Utility ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.red {
  color: var(--red);
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(211, 47, 47, .35);
}

.btn--red:hover {
  background: var(--red-dark);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .7);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, .15);
}

.btn--wa {
  background: #25D366;
  color: var(--white);
}

.btn--wa:hover {
  background: #1EBE5A;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}


.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 900;
}

.logo__icon {
  font-size: 1.8rem;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  font-weight: 600;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--red);
  transition: left var(--transition), right var(--transition);
}

.nav a:hover {
  color: var(--red);
}

.nav a:hover::after {
  left: 0;
  right: 0;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__call {
  padding: 10px 22px;
  font-size: .95rem;
}

.btn--lang {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .5px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn--lang:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}


.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .78) 0%, rgba(183, 28, 28, .55) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
  animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__badge {
  display: inline-block;
  background: var(--red);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: .5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(211, 47, 47, .6);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(211, 47, 47, 0);
  }
}

.hero__title {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: .9;
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 20px;
  position: relative;
  margin: 0 auto;
}

.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 4px;
  animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
  0% {
    top: 6px;
    opacity: 1;
  }

  100% {
    top: 22px;
    opacity: 0;
  }
}


.statsbar {
  background: var(--red);
  padding: 28px 0;
}

.statsbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat__num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.stat__label {
  font-size: .9rem;
  color: rgba(255, 255, 255, .82);
  font-weight: 600;
}


.section {
  padding: 90px 0;
}

.section--gray {
  background: var(--gray-50);
}

.section__head {
  text-align: center;
  margin-bottom: 56px;
}

.section__tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  border-radius: 50px;
  padding: 4px 18px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.section__sub {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}


.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card__icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray-600);
  font-size: .95rem;
}


.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery__item--wide {
  grid-column: 1 / 3;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
  color: var(--white);
  padding: 20px 16px 12px;
  font-weight: 700;
  font-size: .95rem;
  transform: translateY(100%);
  transition: transform .3s ease;
}

.gallery__item:hover .gallery__caption {
  transform: translateY(0);
}


.order__wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.order-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--red);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form__group label {
  font-weight: 700;
  font-size: .95rem;
  color: var(--gray-900);
}

.form__group input,
.form__group select {
  padding: 14px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--gray-900);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form__group input:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, .15);
}

.form__group input[readonly] {
  background: var(--gray-50);
  color: var(--gray-600);
  cursor: default;
}

.location__wrapper {
  display: flex;
  gap: 10px;
}

.location__wrapper input {
  flex: 1;
}

.location__wrapper .btn {
  white-space: nowrap;
  padding: 12px 18px;
  font-size: .9rem;
  border-radius: var(--radius);
}

.form__feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  display: none;
}

.form__feedback.success {
  display: block;
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}

.form__feedback.error {
  display: block;
  background: var(--red-light);
  color: var(--red-dark);
  border: 1px solid #EF9A9A;
}

.order__side img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  height: 280px;
  margin-bottom: 24px;
}

.order__side-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.order__side-text li {
  margin-bottom: 8px;
  color: var(--gray-600);
  font-size: .95rem;
}


.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq__item {
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item[open] {
  border-color: var(--red);
}

.faq__item summary {
  padding: 20px 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  background: var(--white);
  transition: background var(--transition);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '▼';
  font-size: .75rem;
  color: var(--red);
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  transform: rotate(180deg);
}

.faq__item[open] summary {
  background: var(--red-light);
  color: var(--red);
}

.faq__item p {
  padding: 16px 24px 20px;
  color: var(--gray-600);
  background: var(--white);
}


.contact {
  background: linear-gradient(135deg, #1a1a1a 0%, #3b0000 100%);
  color: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact__text h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact__text p {
  opacity: .8;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.contact__phone {
  margin-bottom: 16px;
  font-size: 1.2rem;
  display: flex;
}

.contact__img img {
  border-radius: var(--radius);
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}


.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer .logo__text {
  color: var(--white);
}

.footer__copy {
  font-size: .9rem;
  opacity: .6;
}

.footer__admin {
  font-size: .85rem;
  opacity: .4;
  transition: opacity var(--transition);
}

.footer__admin:hover {
  opacity: .9;
}


.back-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 999;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}


@media (max-width: 1024px) {
  .order__wrapper {
    grid-template-columns: 1fr;
  }

  .order__side {
    display: none;
  }
}

@media (max-width: 800px) {
  .statsbar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__item--wide {
    grid-column: 1 / 3;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }

  .contact__img {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav {
    display: none;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item--wide {
    grid-column: auto;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
}