﻿@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&family=Rajdhani:wght@500;600;700&display=swap");

:root {
  --brand-orange: #f45b22;
  --brand-navy: #071a33;
  --brand-black: #05070d;
  --surface-dark: #0c1221;
  --surface-mid: #111a30;
  --surface-light: #f8f8fa;
  --ink: #121827;
  --muted: #93a0ba;
  --line: #1f2a42;
  --white: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow: 0 22px 60px rgba(3, 8, 20, 0.36);
  --header-offset: 88px;
  --led-orange: rgba(244, 91, 34, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(1000px 500px at 85% -18%, rgba(244, 91, 34, 0.22), transparent 55%),
    radial-gradient(900px 500px at 8% 115%, rgba(34, 90, 244, 0.1), transparent 58%),
    linear-gradient(140deg, #04060b 0%, #0a1224 58%, #0d1325 100%);
  line-height: 1.65;
}

html[lang="ar"] body {
  font-family: "Cairo", "Segoe UI", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.site-shell {
  position: relative;
  overflow-x: clip;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: auto -5% 8% auto;
  width: 42vw;
  min-width: 260px;
  height: 40px;
  background: url("../img/pattern-official.svg") center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: rgba(6, 9, 16, 0.86);
  border-bottom: 1px solid rgba(147, 160, 186, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(2, 5, 12, 0.35);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: clamp(220px, 26vw, 320px);
  height: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.nav-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.35rem 0.4rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand-orange);
}

.nav-links .primary-link {
  padding: 0.4rem 0.95rem;
  border: 1px solid rgba(244, 91, 34, 0.8);
  border-radius: 999px;
}

.nav-links .facebook-link {
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.22rem;
  border-radius: 999px;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.32rem 0.66rem;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
}

.lang-switch button.is-active {
  background: var(--brand-orange);
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  border-radius: 10px;
  width: 44px;
  height: 38px;
  cursor: pointer;
  font-size: 1.1rem;
}

main {
  padding-top: calc(var(--header-offset) + 0.7rem);
  padding-bottom: 4rem;
}

.hero {
  padding: 2.6rem 0 3.2rem;
  scroll-margin-top: calc(var(--header-offset) + 12px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.hero-content,
.hero-panel {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(11, 21, 40, 0.9), rgba(6, 12, 22, 0.94));
  border: 1px solid rgba(146, 160, 188, 0.18);
  box-shadow: var(--shadow);
}

.hero-content {
  padding: clamp(1.35rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  line-height: 1.2;
}

.hero h1 span {
  color: var(--brand-orange);
}

.hero p {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.64rem 1.18rem;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand-orange);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(244, 91, 34, 0.35);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  border-color: rgba(10, 20, 35, 0.25);
  color: var(--brand-navy);
  background: var(--surface-light);
}

.hero-metrics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-metrics li {
  padding: 0.75rem;
  border-radius: 11px;
  border: 1px solid rgba(146, 160, 188, 0.24);
  background: rgba(255, 255, 255, 0.03);
}

.metric-number {
  display: block;
  color: var(--brand-orange);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-panel {
  padding: clamp(1.2rem, 2.5vw, 1.65rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.hero-panel h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
}

.hero-panel ul {
  margin: 0;
  padding-inline-start: 1.15rem;
  display: grid;
  gap: 0.42rem;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 2rem 0;
  scroll-margin-top: calc(var(--header-offset) + 12px);
}

.section-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
}

.section-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.glass-block {
  margin-top: 1rem;
  padding: clamp(1rem, 2.5vw, 1.55rem);
  border-radius: var(--radius-md);
  background: linear-gradient(170deg, rgba(13, 24, 45, 0.86), rgba(8, 15, 28, 0.94));
  border: 1px solid rgba(146, 160, 188, 0.18);
}

.products-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.product-card,
.sector-card,
.step-card,
.contact-card,
.info-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(146, 160, 188, 0.2);
  background: linear-gradient(168deg, rgba(16, 29, 51, 0.84), rgba(8, 14, 26, 0.95));
  padding: 1rem;
}

.hero-content,
.hero-panel,
.glass-block,
.product-card,
.sector-card,
.step-card,
.contact-card,
.info-card,
.page-hero-card,
.quote-form-card,
.quote-side,
.hero-metrics li {
  position: relative;
  transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
  box-shadow:
    0 0 0 1px rgba(244, 91, 34, 0.12),
    0 0 20px var(--led-orange),
    var(--shadow);
}

.hero-content:hover,
.hero-panel:hover,
.glass-block:hover,
.product-card:hover,
.sector-card:hover,
.step-card:hover,
.contact-card:hover,
.info-card:hover,
.page-hero-card:hover,
.quote-form-card:hover,
.quote-side:hover,
.hero-metrics li:hover {
  border-color: rgba(244, 91, 34, 0.52);
  box-shadow:
    0 0 0 1px rgba(244, 91, 34, 0.28),
    0 0 30px rgba(244, 91, 34, 0.27),
    0 22px 60px rgba(3, 8, 20, 0.4);
}

.product-card h3,
.sector-card h3,
.step-card h3,
.contact-card h3,
.info-card h3 {
  margin: 0 0 0.45rem;
  color: var(--brand-orange);
  font-size: 1.18rem;
}

.product-card ul,
.sector-grid,
.step-grid {
  margin: 0;
  padding: 0;
}

.product-card ul {
  padding-inline-start: 1.1rem;
  display: grid;
  gap: 0.28rem;
}

.sector-grid,
.step-grid,
.contact-grid,
.info-grid {
  display: grid;
  gap: 0.85rem;
}

.sector-grid {
  margin-top: 1.12rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sector-card {
  text-align: center;
  padding: 1rem 0.65rem;
}

.sector-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.step-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-index {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 91, 34, 0.2);
  border: 1px solid rgba(244, 91, 34, 0.58);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.contact-grid {
  margin-top: 1rem;
  grid-template-columns: 1.2fr 1fr;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 0.72rem;
}

.contact-line {
  margin: 0.44rem 0;
  color: rgba(255, 255, 255, 0.86);
}

.contact-line strong {
  color: var(--brand-orange);
}

.footer {
  border-top: 1px solid rgba(146, 160, 188, 0.22);
  padding: 1.2rem 0 2rem;
  background: linear-gradient(180deg, rgba(8, 14, 26, 0), rgba(8, 14, 26, 0.7));
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 220px;
}

.request-hero,
.facebook-hero {
  padding: 2.4rem 0 2rem;
  scroll-margin-top: calc(var(--header-offset) + 12px);
}

.page-hero-card {
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 2.8vw, 1.95rem);
  border: 1px solid rgba(146, 160, 188, 0.2);
  background: linear-gradient(162deg, rgba(13, 24, 45, 0.9), rgba(8, 15, 28, 0.96));
  box-shadow: var(--shadow);
}

.page-hero-card h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
}

.page-hero-card p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  margin-top: 1rem;
}

.quote-form-card,
.quote-side {
  border-radius: var(--radius-md);
  border: 1px solid rgba(146, 160, 188, 0.2);
  background: linear-gradient(165deg, rgba(14, 26, 48, 0.88), rgba(8, 14, 26, 0.95));
  padding: 1.1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(146, 160, 188, 0.33);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0.7rem 0.75rem;
  font: inherit;
}

.form-group select option {
  color: #111;
}

.form-group textarea {
  resize: vertical;
  min-height: 112px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(244, 91, 34, 0.84);
  box-shadow: 0 0 0 3px rgba(244, 91, 34, 0.2);
}

.is-hidden {
  display: none !important;
}

.form-submit {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.form-status {
  margin: 0;
  padding: 0.72rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(146, 160, 188, 0.38);
  background: rgba(146, 160, 188, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.form-status.is-success {
  border-color: rgba(52, 211, 153, 0.7);
  background: rgba(52, 211, 153, 0.16);
  color: #b7ffe3;
}

.form-status.is-error {
  border-color: rgba(248, 113, 113, 0.75);
  background: rgba(248, 113, 113, 0.14);
  color: #ffd5d5;
}

.form-status.is-info {
  border-color: rgba(244, 91, 34, 0.72);
  background: rgba(244, 91, 34, 0.14);
  color: #ffd8ca;
}

.form-submit .btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.quote-side ul {
  margin: 0;
  padding-inline-start: 1.2rem;
  display: grid;
  gap: 0.36rem;
}

.facebook-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.thank-you-main {
  padding-bottom: 2rem;
}

.thank-you-page {
  padding: 0.3rem 0 0.9rem;
}

.thank-you-container {
  display: flex;
  justify-content: center;
}

.thank-you-card {
  width: min(920px, 100%);
  margin-inline: auto;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(146, 160, 188, 0.2);
  background: linear-gradient(162deg, rgba(13, 24, 45, 0.9), rgba(8, 15, 28, 0.96));
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.85rem;
}

.thank-you-top {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.success-badge {
  width: 54px;
  height: 54px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #8ff0cb;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.45);
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.14);
}

.success-badge svg {
  width: 26px;
  height: 26px;
}

.thank-you-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  align-items: start;
}

.thank-you-copy-block {
  padding: 0;
  text-align: start;
  background: none;
  border: 0;
}

.thank-you-copy-block + .thank-you-copy-block {
  border-inline-start: 1px solid rgba(146, 160, 188, 0.18);
  padding-inline-start: 1rem;
}

.thank-you-copy-block h1,
.thank-you-copy-block h2 {
  margin: 0 0 0.35rem;
  color: var(--brand-orange);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.16;
}

.thank-you-copy-block p,
.thank-you-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
}

.thank-you-note {
  border-radius: var(--radius-md);
  border: 1px solid rgba(146, 160, 188, 0.18);
  background: rgba(255, 255, 255, 0.04);
  margin-top: 0;
  padding: 0.72rem 0.9rem;
  display: grid;
  gap: 0.32rem;
  text-align: start;
}

.thank-you-actions {
  justify-content: flex-start;
  margin-top: 0;
  gap: 0.6rem;
}

.thank-you-actions .btn {
  min-width: 178px;
  padding: 0.58rem 1rem;
}

@media (max-width: 900px) {
  .thank-you-main {
    padding-bottom: 1.5rem;
  }

  .thank-you-card {
    padding: 1rem;
  }

  .thank-you-top {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    justify-items: center;
  }

  .thank-you-copy {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    width: 100%;
  }

  .thank-you-copy-block + .thank-you-copy-block {
    border-inline-start: 0;
    padding-inline-start: 0;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(146, 160, 188, 0.18);
  }

  .thank-you-actions {
    justify-content: center;
  }

  .thank-you-actions .btn {
    min-width: 0;
    width: 100%;
  }
}

.facebook-embed {
  width: 100%;
  min-height: 680px;
  border: 0;
  border-radius: var(--radius-md);
  background: #fff;
}

.floating-social {
  position: fixed;
  bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  z-index: 140;
}

html[dir="rtl"] .floating-social {
  left: 1rem;
}

html[dir="ltr"] .floating-social {
  right: 1rem;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.whatsapp-float {
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.48), 0 8px 24px rgba(3, 8, 20, 0.5);
}

.facebook-float {
  box-shadow: 0 0 24px rgba(24, 119, 242, 0.42), 0 8px 24px rgba(3, 8, 20, 0.5);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:focus-visible {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.facebook-float:hover,
.facebook-float:focus-visible {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.reveal[data-delay="1"].is-visible {
  transition-delay: 0.08s;
}

.reveal[data-delay="2"].is-visible {
  transition-delay: 0.16s;
}

.reveal[data-delay="3"].is-visible {
  transition-delay: 0.24s;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1050px) {
  .hero-grid,
  .contact-grid,
  .quote-layout,
  .facebook-layout {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .step-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .header-row {
    gap: 0.55rem;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: clamp(160px, 44vw, 210px);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 34px;
    font-size: 1rem;
  }

  .nav-wrap {
    gap: 0.4rem;
    flex-shrink: 0;
  }

  .lang-switch {
    gap: 0.2rem;
    padding: 0.16rem;
    white-space: nowrap;
  }

  .lang-switch button {
    padding: 0.28rem 0.5rem;
    font-size: 0.82rem;
    line-height: 1.05;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    inset-inline: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(6, 9, 16, 0.98);
    border-bottom: 1px solid rgba(147, 160, 186, 0.2);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 4vw;
    border-top: 1px solid rgba(147, 160, 186, 0.14);
  }

  .nav-links .primary-link,
  .nav-links .facebook-link {
    border-radius: 0;
    border: 0;
    background: transparent;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 2rem;
  }

  .hero-metrics,
  .products-grid,
  .step-grid,
  .sector-grid,
  .form-grid,
  .thank-you-copy {
    grid-template-columns: 1fr;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand img {
    width: 190px;
  }

  .facebook-embed {
    min-height: 620px;
  }
}










@media (max-width: 700px) {
  .floating-social {
    bottom: 0.85rem;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }
}










@media (max-width: 430px) {
  .site-header .container {
    width: 96vw;
  }

  .header-row {
    gap: 0.4rem;
  }

  .brand img {
    width: min(50vw, 182px);
  }

  .nav-wrap {
    gap: 0.3rem;
  }

  .lang-switch button {
    padding: 0.24rem 0.42rem;
    font-size: 0.76rem;
  }
}






