:root {
  --primary: #f08003;
  --primary-dark: #c96a02;
  --dark: #101c2c;
  --dark-2: #16283e;
  --text: #3b4654;
  --muted: #7b8694;
  --bg-light: #f5f6f8;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(16, 28, 44, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.ltr {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.section {
  padding: 90px 0;
}

.section-tag {
  display: inline-block;
  background: rgba(240, 128, 3, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 4px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--primary);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 20px;
}

.section-title.light {
  color: var(--white);
}

.section-title.center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(240, 128, 3, 0.35);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.topbar {
  background: var(--dark);
  color: #cbd5e1;
  font-size: 0.88rem;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
}

.topbar-item a {
  color: var(--white);
  font-weight: 600;
  transition: color 0.2s;
}

.topbar-item a:hover {
  color: var(--primary);
}

.sep {
  color: var(--muted);
  margin-inline: 4px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.brand-text strong {
  color: var(--dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--dark);
  font-weight: 700;
  font-size: 0.98rem;
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.menu-btn span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  background: url('images/pexels-3.jpg') center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(16, 28, 44, 0.92) 30%, rgba(16, 28, 44, 0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.hero-tag {
  display: inline-block;
  color: var(--primary);
  border: 1px solid rgba(240, 128, 3, 0.6);
  padding: 5px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary);
  display: inline-block;
  font-size: 0.62em;
  font-weight: 800;
}

.hero p {
  color: #d7dee7;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.info-strip {
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-card > div:last-child {
  display: flex;
  flex-direction: column;
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(240, 128, 3, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--primary);
}

.info-card h4 {
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.info-card p {
  color: var(--text);
  font-size: 0.95rem;
}

.info-card p a {
  font-weight: 700;
  color: var(--dark);
}

.info-card p a:hover {
  color: var(--primary);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 4px solid var(--primary);
  border-radius: var(--radius);
  z-index: -1;
}

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

.check-list {
  margin: 22px 0 30px;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--dark);
}

.check-list svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
  flex-shrink: 0;
}

.products {
  background: var(--dark);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 128, 3, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(240, 128, 3, 0.14);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
}

.card h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.card p {
  color: #aab6c4;
  font-size: 0.98rem;
}

.whyus {
  background: var(--bg-light);
}

.whyus-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-6px);
}

.feature-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: rgba(240, 128, 3, 0.25);
  line-height: 1;
  margin-bottom: 10px;
}

.feature h4 {
  color: var(--dark);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.feature p {
  font-size: 0.92rem;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.gallery-grid figure {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
}

.gallery-grid figcaption {
  padding: 14px 18px;
  font-weight: 700;
  color: var(--dark);
}

.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 70px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.contact-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.phones {
  display: grid;
  gap: 6px;
}

.phones a {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
  transition: color 0.2s;
}

.phones a:hover {
  color: var(--primary);
}

.contact-form-wrap {
  margin-top: 50px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 44px;
}

.contact-form-wrap h3 {
  color: var(--dark);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.u-form-control-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.u-inner-form .u-form-group {
  margin-bottom: 18px;
}

.u-inner-form .u-input {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  border: 2px solid #e2e7ee;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.u-inner-form .u-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(240, 128, 3, 0.12);
}

.u-inner-form textarea.u-input {
  resize: vertical;
  min-height: 110px;
}

.u-form-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 40px !important;
  border-radius: 50px !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.u-form-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(240, 128, 3, 0.35);
}

#recaptcha-v2-container {
  margin-top: 16px;
}

.u-form-send-message {
  display: none;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
}

.u-form-send-success {
  background: #e8f7ee;
  color: #1d7a43;
}

.u-form-send-error {
  background: #fdecec;
  color: #b3261e;
}

.footer {
  background: var(--dark);
  color: #aab6c4;
  padding: 56px 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-text strong {
  color: var(--white);
}

.footer-brand .brand-text small {
  color: #8b97a6;
}

.footer-nav {
  gap: 22px;
}

.footer-nav a {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--primary);
}

.copyright {
  width: 100%;
  text-align: center;
  padding: 20px 0 24px;
  font-size: 0.88rem;
  color: #8b97a6;
  margin: 0;
}

.call-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  display: none;
  place-items: center;
  box-shadow: 0 10px 25px rgba(240, 128, 3, 0.45);
  z-index: 90;
  animation: pulse 2s infinite;
}

.call-fab svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(240, 128, 3, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(240, 128, 3, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 128, 3, 0); }
}

@media (max-width: 992px) {
  .nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 100px 30px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.3s;
    z-index: 99;
  }

  .nav.open {
    right: 0;
  }

  .menu-btn {
    display: flex;
    z-index: 101;
  }

  .info-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-inner,
  .whyus-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .call-fab {
    display: grid;
  }
}

@media (max-width: 576px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
  }

  .contact-form-wrap {
    padding: 26px 20px;
  }

  .topbar-item {
    flex-wrap: wrap;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    justify-content: center;
    text-align: center;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .call-fab {
    left: 16px;
    bottom: 16px;
  }
}
