:root {
  --primary: #ff8a00;
  --primary-dark: #e06b00;
  --primary-soft: #fff1df;
  --secondary: #ffca85;
  --dark: #1a1d24;
  --dark-2: #2c3038;
  --text: #24262d;
  --muted: #6d7280;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(27, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 184, 96, 0.15), transparent 30%),
    linear-gradient(180deg, #fffaf4 0%, #fff 100%);
  color: var(--text);
  line-height: 1.8;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-tag {
  display: inline-block;
  background: rgba(255, 138, 0, 0.12);
  color: var(--primary-dark);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 18px;
  margin-bottom: 18px;
}

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.section-heading h2,
.about-copy h2,
.contact-info h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(26, 29, 36, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  padding: 4px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  width: 36px;
  height: 32px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 8px 18px rgba(255, 138, 0, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 72px;
  height: auto;
  object-fit: contain;
  filter: none;
  background: transparent;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}

.brand-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--dark);
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--dark-2);
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.nav-cta,
.primary-btn,
.secondary-btn,
.contact-form button,
.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta,
.primary-btn,
.contact-form button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 14px 24px rgba(255, 138, 0, 0.25);
}

.nav-cta {
  padding: 12px 22px;
}

.primary-btn,
.secondary-btn {
  padding: 15px 28px;
}

.secondary-btn {
  background: rgba(255, 138, 0, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(255, 138, 0, 0.15);
}

.nav-cta:hover,
.primary-btn:hover,
.secondary-btn:hover,
.contact-form button:hover,
.whatsapp-float:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  margin: 6px 0;
  border-radius: 999px;
}

.hero {
  padding: 70px 0 80px;
  background:
    radial-gradient(circle at top right, rgba(255, 177, 77, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 241, 223, 0.88));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 42px;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 138, 0, 0.12);
  color: var(--primary-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 18px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0 20px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(26, 29, 36, 0.06);
  color: var(--dark-2);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-metrics {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 18px;
  padding-top: 12px;
}

.hero-metrics li {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(29, 29, 31, 0.05);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 18px 35px rgba(33, 36, 48, 0.04);
}

.hero-metrics strong {
  display: block;
  font-size: 1.72rem;
  color: var(--dark);
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-card {
  position: absolute;
  inset: 0 0 0 12%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-badge {
  position: absolute;
  right: 24px;
  bottom: 22px;
  background: rgba(26, 29, 36, 0.7);
  color: var(--white);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.overlay-badge span {
  font-size: 0.78rem;
  opacity: 0.85;
}

.overlay-badge strong {
  font-size: 1.2rem;
}

.mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(29, 29, 31, 0.04);
  border-radius: 18px;
  box-shadow: 0 20px 35px rgba(38, 36, 34, 0.09);
}

.mini-card-top {
  left: 0;
  top: 40px;
}

.mini-card-bottom {
  left: 8px;
  bottom: 30px;
}

.mini-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #fff0d8, #ffd39b);
  font-size: 1.7rem;
}

.mini-card strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
}

.mini-card small {
  color: var(--muted);
}

.partners-strip {
  background: linear-gradient(135deg, #171a20, #1e242d);
  color: rgba(255, 255, 255, 0.8);
  padding: 24px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 16px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.trust-strip {
  padding: 10px 0 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 29, 36, 0.06);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 16px 26px rgba(25, 25, 25, 0.05);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #fff0d9, #ffd9a5);
}

.trust-card strong {
  display: block;
  font-size: 1.06rem;
  color: var(--dark);
}

.trust-card small {
  color: var(--muted);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 42px;
}

.about-image img {
  border-radius: 32px;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.about-points div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 29, 31, 0.05);
  border-radius: 18px;
  padding: 15px 16px;
}

.about-points span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.15);
  color: var(--primary-dark);
  font-weight: 800;
}

.showcase-banner {
  padding: 20px 0 0;
}

.banner-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 34px;
  background: linear-gradient(135deg, #17202a, #273446 55%, #f4a43b 160%);
  border-radius: 28px;
  box-shadow: 0 26px 48px rgba(23, 32, 42, 0.18);
  color: #fff;
}

.banner-copy {
  max-width: 620px;
}

.banner-copy h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  line-height: 1.35;
  margin: 14px 0 12px;
}

.banner-copy p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.category-grid,
.product-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 24px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 28px;
}

.category-card,
.product-card,
.feature-box {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 29, 36, 0.06);
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(26, 26, 26, 0.06);
}

.category-card {
  padding: 28px 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,247,238,0.96));
  border: 1px solid rgba(255, 181, 95, 0.18);
  box-shadow: 0 18px 34px rgba(35, 31, 27, 0.06), 0 8px 16px rgba(255, 138, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(35, 31, 27, 0.09), 0 12px 18px rgba(255, 138, 0, 0.08);
}

.icon,
.feature-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff0d9, #ffd8a8);
  font-size: 2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 165, 60, 0.12);
}

.category-card h3,
.product-info h3,
.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.category-card p,
.product-info p,
.feature-box p,
.info-list p {
  color: var(--muted);
}

.accent-section {
  background: linear-gradient(180deg, rgba(255, 246, 235, 0.92), rgba(255, 255, 255, 0.96));
  position: relative;
}

.accent-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 184, 96, 0.18), transparent 30%);
  pointer-events: none;
}

.product-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,248,240,0.96));
  border: 1px solid rgba(255, 149, 0, 0.08);
  box-shadow: 0 22px 40px rgba(35, 31, 27, 0.08), 0 8px 18px rgba(255, 138, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 52px rgba(35, 31, 27, 0.12), 0 12px 22px rgba(255, 138, 0, 0.12);
}

.product-card img {
  width: 100%;
  height: 292px;
  object-fit: cover;
  border-bottom: 1px solid rgba(26, 29, 36, 0.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 24px;
}

.gallery-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 179, 83, 0.2);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(35, 31, 27, 0.07), 0 10px 18px rgba(255, 138, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(17,18,22,0.44));
  z-index: 1;
  pointer-events: none;
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 52px rgba(35, 31, 27, 0.12), 0 14px 24px rgba(255, 138, 0, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(1.15) contrast(1.03);
  transform: scale(1.02);
}

.gallery-info {
  display: none;
}

.product-info {
  padding: 22px 20px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,245,232,0.8));
}

.product-info h3 {
  margin-bottom: 10px;
}

.product-info p {
  font-size: 0.96rem;
  line-height: 1.8;
}

.stats-band {
  padding: 12px 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 18px;
  background: var(--dark);
  border-radius: 28px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
}

.stats-grid div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  gap: 8px;
}

.stats-grid strong {
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  color: #ffd398;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.76);
}

.features-grid {
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 22px;
  position: relative;
  z-index: 1;
}

.feature-box {
  padding: 28px 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,249,242,0.96));
  border: 1px solid rgba(255, 179, 83, 0.25);
  box-shadow: 0 18px 34px rgba(35, 31, 27, 0.07), 0 10px 18px rgba(255, 138, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(35, 31, 27, 0.12), 0 14px 22px rgba(255, 138, 0, 0.12);
}

.feature-icon {
  background: linear-gradient(135deg, #fff0d9, #ffd8a8);
  box-shadow: inset 0 0 0 1px rgba(255, 163, 61, 0.18);
}

.contact-info {
  padding-left: 10px;
}

.info-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.info-list div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,245,232,0.98));
  border: 1px solid rgba(255, 184, 96, 0.35);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 16px 28px rgba(29, 29, 31, 0.04);
}

.info-list strong {
  display: block;
  color: var(--dark);
  font-size: 1.04rem;
}

.info-list a,
.info-list p {
  color: var(--muted);
  font-size: 1rem;
}

.info-list a {
  text-decoration: none;
}

.contact-form {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,248,240,0.97));
  border-radius: 32px;
  border: 1px solid rgba(255, 184, 96, 0.22);
  box-shadow: 0 28px 48px rgba(20, 20, 20, 0.08), 0 14px 28px rgba(255, 138, 0, 0.12);
  padding: 30px 26px 26px;
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 184, 96, 0.18), transparent 70%);
  pointer-events: none;
}

.contact-form input,
.contact-form textarea {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: linear-gradient(180deg, #fffdfb 0%, #fff7f0 100%);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--dark);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(36, 38, 45, 0.52);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 138, 0, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.1);
  transform: translateY(-1px);
}

.contact-form textarea {
  min-height: 140px;
}

.contact-form button {
  position: relative;
  z-index: 1;
  border: 0;
  padding: 16px 18px;
  cursor: pointer;
  border-radius: 16px;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 18px 30px rgba(255, 138, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(255, 138, 0, 0.26);
}

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 24px;
  background: linear-gradient(135deg, #25d366, #1fbf60);
  color: var(--white);
  padding: 14px 18px;
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.28);
  z-index: 999;
}

.site-footer {
  background: #171719;
  color: rgba(255, 255, 255, 0.8);
  padding: 26px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .category-grid,
  .product-grid,
  .features-grid,
  .stats-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(29, 29, 31, 0.06);
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 18px 20px;
  }

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

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero,
  .section {
    padding: 72px 0;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .category-grid,
  .product-grid,
  .features-grid,
  .partners-grid,
  .stats-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-card {
    inset: 0 0 0 0;
  }

  .mini-card-top {
    top: 12px;
    left: 12px;
  }

  .mini-card-bottom {
    left: 12px;
    bottom: 18px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .footer-wrap {
    justify-content: center;
    text-align: center;
  }

  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    padding: 12px 14px;
  }
}
