/* ====================================
   درة الرعاية البيطرية - Stylesheet
   Colors: #0C5927 | #1C8C43 | #FFFFFF
   Font: Noto Kufi Arabic
   ==================================== */

@import url("https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@300;400;500;600;700;800;900&display=swap");

/* === Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Kufi Arabic", sans-serif;
  direction: rtl;
  text-align: right;
  background-color: #fff;
  color: #111;
  overflow-x: hidden;
  opacity: 0;
  animation: pageFadeIn 0.4s ease forwards;
}
ul {
  list-style: none;
}
button {
  font-family: "Noto Kufi Arabic", sans-serif;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* === Scrollbar === */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #1c8c43;
  border-radius: 3px;
}

/* ====================================
   KEYFRAMES
   ==================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounceScroll {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.3;
  }
}
@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(28, 140, 67, 0.4);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(28, 140, 67, 0);
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Scroll-reveal === */
.hidden-initially {
  opacity: 0;
}
.animate-fadeInUp {
  animation: fadeInUp 0.7s ease forwards;
}
.animate-fadeInRight {
  animation: fadeInRight 0.7s ease forwards;
}
.animate-fadeInLeft {
  animation: fadeInLeft 0.7s ease forwards;
}
.animate-scaleIn {
  animation: scaleIn 0.5s ease forwards;
}
.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}

/* ====================================
   NAVBAR
   ==================================== */
#navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 24px rgba(12, 89, 39, 0.1);
  border-bottom-color: rgba(28, 140, 67, 0.12);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: right;
  text-decoration: none;
}
.nav-logo img {
  height: 85px;
  width: 85px;
  object-fit: contain;
}
.nav-logo-name {
  font-weight: 800;
  font-size: 15px;
  color: #0c5927;
  line-height: 1.2;
}
.nav-logo-sub {
  font-weight: 500;
  font-size: 11px;
  color: #1c8c43;
  line-height: 1.2;
}

/* Desktop Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #0c5927;
  padding: 8px 14px;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  text-decoration: none;
  display: inline-block;
  font-family: "Noto Kufi Arabic", sans-serif;
}
.nav-link:hover,
.nav-link.active {
  background: rgba(28, 140, 67, 0.08);
  color: #1c8c43;
}

.nav-cta {
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 8px;
  box-shadow: 0 4px 15px rgba(28, 140, 67, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: "Noto Kufi Arabic", sans-serif;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 140, 67, 0.4);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-toggle .arrow {
  font-size: 10px;
  transition: transform 0.25s ease;
  display: inline-block;
}
.nav-dropdown.open .nav-dropdown-toggle .arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 14px;
  min-width: 180px;
  box-shadow: 0 12px 40px rgba(12, 89, 39, 0.15);
  border: 1px solid rgba(28, 140, 67, 0.12);
  padding: 8px;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
  animation: dropdownFadeIn 0.2s ease forwards;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  padding: 11px 16px;
  font-size: 14px;
  color: #0c5927;
  cursor: pointer;
  border-radius: 8px;
  text-align: right;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-dropdown-item i {
  font-size: 12px;
  color: #1c8c43;
}
.nav-dropdown-item:hover {
  background: rgba(28, 140, 67, 0.08);
  color: #1c8c43;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0c5927;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(28, 140, 67, 0.1);
  padding: 16px 24px 24px;
}
.nav-mobile.open {
  display: block;
}
.nav-mobile-link {
  display: block;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #0c5927;
  padding: 12px 0;
  text-align: right;
  border-bottom: 1px solid rgba(28, 140, 67, 0.08);
  font-family: "Noto Kufi Arabic", sans-serif;
  text-decoration: none;
}
.nav-mobile-sub {
  padding: 8px 0 8px 16px;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-mobile-sub i {
  color: #1c8c43;
  font-size: 10px;
}

/* ====================================
   PAGE HERO (inner pages)
   ==================================== */
.page-hero {
  padding: 140px 24px 80px;
  background: linear-gradient(135deg, #0c5927 0%, #1c8c43 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-blob-1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.page-hero-blob-2 {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.page-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb-sep {
  font-size: 10px;
  opacity: 0.5;
}

.page-hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.8;
}

/* ====================================
   SECTION UTILITIES
   ==================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  justify-content: center;
}
.label-line {
  width: 40px;
  height: 3px;
  background: linear-gradient(to left, #1c8c43, #0c5927);
  border-radius: 2px;
}
.label-line.right {
  background: linear-gradient(to right, #1c8c43, #0c5927);
}
.label-text {
  font-size: 13px;
  font-weight: 600;
  color: #1c8c43;
  letter-spacing: 1px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #0c5927;
}
.section-sub {
  font-size: 17px;
  color: #555;
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.8;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ====================================
   HERO (homepage)
   ==================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1570042225831-d98fa7577f1e?w=1600&auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 89, 39, 0.85) 0%,
    rgba(28, 140, 67, 0.6) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}
.hero-blob-1 {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(28, 140, 67, 0.15);
  filter: blur(60px);
  z-index: 1;
}
.hero-blob-2 {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(12, 89, 39, 0.2);
  filter: blur(60px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 0;
  width: 100%;
}
.hero-inner {
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: heroFadeIn 0.6s ease both;
}
.hero-badge span {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.hero-badge .star {
  color: #1c8c43;
  font-size: 18px;
}

.hero-h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
  animation: heroFadeIn 0.7s ease 0.1s both;
}
.hero-h1 .accent {
  color: #4de885;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 400;
  animation: heroFadeIn 0.7s ease 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeIn 0.7s ease 0.3s both;
}
.hero-btn-primary {
  background: linear-gradient(135deg, #1c8c43, #0c5927);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(28, 140, 67, 0.5);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  font-family: "Noto Kufi Arabic", sans-serif;
  text-decoration: none;
  display: inline-block;
}
.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28, 140, 67, 0.6);
}
.hero-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
  font-family: "Noto Kufi Arabic", sans-serif;
  text-decoration: none;
  display: inline-block;
}
.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
  animation: heroFadeIn 0.7s ease 0.4s both;
}
.hero-stat {
  border-right: 3px solid rgba(28, 140, 67, 0.6);
  padding-right: 20px;
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: #4de885;
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  max-width: 130px;
  line-height: 1.4;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroFadeIn 1s ease 0.8s both;
}
.scroll-indicator-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  /* letter-spacing: 2px; */
}
.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: #1c8c43;
  border-radius: 2px;
  animation: bounceScroll 1.5s ease-in-out infinite;
}

/* ====================================
   ABOUT SECTION (homepage & about page)
   ==================================== */
#about,
.about-section {
  padding: 100px 24px;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-inner {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(12, 89, 39, 0.18);
}
.about-img-inner img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 89, 39, 0.6) 0%,
    transparent 50%
  );
}

.about-float-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(12, 89, 39, 0.15);
  border: 1px solid rgba(28, 140, 67, 0.1);
  min-width: 200px;
}
.about-float-card .big-text {
  font-size: 36px;
  font-weight: 900;
  color: #1c8c43;
}
.about-float-card .small-text {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
  line-height: 1.4;
}
.about-dot-pattern {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(
    circle,
    rgba(28, 140, 67, 0.3) 1.5px,
    transparent 1.5px
  );
  background-size: 16px 16px;
  z-index: -1;
}

.about-label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.about-label-line {
  width: 40px;
  height: 3px;
  background: linear-gradient(to left, #1c8c43, #0c5927);
  border-radius: 2px;
}
.about-label-text {
  font-size: 13px;
  font-weight: 600;
  color: #1c8c43;
  letter-spacing: 1px;
}

.about-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #0c5927;
  line-height: 1.3;
  margin-bottom: 28px;
}
.about-p {
  font-size: 16px;
  line-height: 2;
  color: #444;
  margin-bottom: 24px;
}
.about-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.about-chip {
  background: rgba(28, 140, 67, 0.08);
  border: 1px solid rgba(28, 140, 67, 0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #0c5927;
}

/* About full page second section */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 60px 0;
  border-top: 1px solid rgba(28, 140, 67, 0.1);
  border-bottom: 1px solid rgba(28, 140, 67, 0.1);
  margin-bottom: 80px;
}
.about-stat-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8fdf9, #fff);
  border: 1px solid rgba(28, 140, 67, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.about-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(12, 89, 39, 0.12);
}
.about-stat-num {
  font-size: 40px;
  font-weight: 900;
  color: #1c8c43;
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 14px;
  color: #555;
  font-weight: 500;
  line-height: 1.5;
}

/* ====================================
   PRODUCTS (homepage section)
   ==================================== */
#products {
  padding: 100px 24px;
  background: linear-gradient(180deg, #f8fdf9 0%, #fff 100%);
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.product-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(12, 89, 39, 0.1);
  box-shadow: 0 20px 60px rgba(12, 89, 39, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(12, 89, 39, 0.14);
}
.product-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(to left, #1c8c43, #0c5927);
}
.product-card-accent.rev {
  background: linear-gradient(to right, #1c8c43, #0c5927);
}
.product-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(28, 140, 67, 0.3);
}
.product-icon-wrap i {
  color: #fff;
  font-size: 24px;
}
.product-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #0c5927;
  margin-bottom: 8px;
}
.product-badge {
  display: inline-block;
  font-size: 13px;
  color: #1c8c43;
  font-weight: 600;
  margin-bottom: 24px;
  background: rgba(28, 140, 67, 0.08);
  padding: 4px 14px;
  border-radius: 50px;
}
.product-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}
.check-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.check-icon i {
  color: #fff;
  font-size: 10px;
}
.local-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.local-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(28, 140, 67, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(28, 140, 67, 0.08);
  transition: background 0.2s ease;
}
.local-item:hover {
  background: rgba(28, 140, 67, 0.1);
}
.local-item-icon {
  font-size: 24px;
}
.local-item-text {
  font-size: 15px;
  color: #333;
  font-weight: 500;
}
.product-note {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  border-top: 1px solid rgba(28, 140, 67, 0.1);
  padding-top: 20px;
}
.product-card-blob {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(28, 140, 67, 0.04);
}
.products-banner {
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 200px;
}
.products-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12, 89, 39, 0.85) 0%,
    rgba(12, 89, 39, 0.5) 50%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  padding: 0 48px;
}
.products-banner-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.products-banner-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* ====================================
   PRODUCTS PAGE (full page)
   ==================================== */
.products-page-section {
  padding: 80px 24px 100px;
  background: #fff;
}

/* Filter buttons */
.product-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}
.filter-btn {
  background: #fff;
  border: 2px solid rgba(28, 140, 67, 0.2);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #0c5927;
  cursor: pointer;
  font-family: "Noto Kufi Arabic", sans-serif;
  transition: all 0.25s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(28, 140, 67, 0.3);
}

/* Product page cards grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.product-card-page {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(12, 89, 39, 0.07);
  border: 1px solid rgba(28, 140, 67, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card-page:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(12, 89, 39, 0.15);
}
.product-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card-page:hover .product-img-wrap img {
  transform: scale(1.05);
}
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 89, 39, 0.55) 0%,
    transparent 55%
  );
}
.product-cat-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: #0c5927;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-size: 18px;
  font-weight: 800;
  color: #0c5927;
  margin-bottom: 10px;
}
.product-short-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}
.product-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Noto Kufi Arabic", sans-serif;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
  align-self: flex-start;
}
.product-page-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28, 140, 67, 0.4);
}
.product-page-btn i {
  font-size: 12px;
}

/* ====================================
   PRODUCT DETAIL PAGE
   ==================================== */
.product-detail-section {
  padding: 80px 24px 100px;
  background: #fff;
}
.product-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0c5927;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 48px;
  cursor: pointer;
  border: none;
  background: rgba(28, 140, 67, 0.07);
  padding: 10px 20px;
  border-radius: 10px;
  font-family: "Noto Kufi Arabic", sans-serif;
  transition: background 0.2s ease;
}
.product-back-btn:hover {
  background: rgba(28, 140, 67, 0.13);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-detail-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(12, 89, 39, 0.18);
  position: relative;
}
.product-detail-img img {
  width: 100%;
  height: 500px !important;
  object-fit: cover;
  display: block;
}
.product-detail-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 89, 39, 0.35) 0%,
    transparent 50%
  );
}
.product-detail-category {
  display: inline-block;
  background: rgba(28, 140, 67, 0.1);
  color: #1c8c43;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(28, 140, 67, 0.2);
}
.product-detail-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: #0c5927;
  line-height: 1.3;
  margin-bottom: 20px;
}
.product-detail-desc {
  font-size: 16px;
  line-height: 2;
  color: #444;
  margin-bottom: 32px;
}
.product-features-title {
  font-size: 18px;
  font-weight: 800;
  color: #0c5927;
  margin-bottom: 16px;
}
.product-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.product-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #333;
}
.product-feature-check {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-feature-check i {
  color: #fff;
  font-size: 11px;
}
.product-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Noto Kufi Arabic", sans-serif;
  box-shadow: 0 8px 30px rgba(28, 140, 67, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
}
.product-detail-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(28, 140, 67, 0.5);
}

/* Related products */
.related-section {
  padding: 80px 24px;
  background: #f8fdf9;
}

/* ====================================
   VISION & MISSION
   ==================================== */
#vision,
.vision-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, #0c5927 0%, #1c8c43 100%);
  position: relative;
  overflow: hidden;
}
.vision-blob-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.vision-blob-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.vision-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
.vision-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 0px;
}
.vision-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.vision-divider {
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto;
  border-radius: 2px;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vm-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 48px 40px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.vm-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
}
.vm-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.vm-icon-wrap i {
  color: #fff;
  font-size: 28px;
}
.vm-card-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.vm-card-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
}

/* ====================================
   VALUES
   ==================================== */
#values,
.values-section {
  padding: 100px 24px;
  background: #fff;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.value-card {
  background: #fff;
  border: 1px solid rgba(28, 140, 67, 0.12);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(12, 89, 39, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  cursor: default;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(12, 89, 39, 0.14);
  border-color: rgba(28, 140, 67, 0.3);
  background: linear-gradient(135deg, #f8fdf9, #fff);
}
.value-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(28, 140, 67, 0.25);
}
.value-icon-wrap i {
  color: #fff;
  font-size: 26px;
}
.value-title {
  font-size: 18px;
  font-weight: 800;
  color: #0c5927;
  margin-bottom: 12px;
}
.value-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* ====================================
   WHY US
   ==================================== */
#why-us,
.whyus-section {
  padding: 100px 24px;
  background: #f8fdf9;
}
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.whyus-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(12, 89, 39, 0.07);
  border: 1px solid rgba(28, 140, 67, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.whyus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(12, 89, 39, 0.15);
}
.whyus-img-wrap {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.whyus-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.whyus-card:hover .whyus-img-wrap img {
  transform: scale(1.05);
}
.whyus-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 89, 39, 0.7) 0%,
    transparent 60%
  );
}
.whyus-img-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whyus-img-icon i {
  color: #0c5927;
  font-size: 20px;
}
.whyus-body {
  padding: 24px;
}
.whyus-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #0c5927;
  margin-bottom: 10px;
}
.whyus-card-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* ====================================
   CONTACT
   ==================================== */
#contact,
.contact-section {
  padding: 100px 24px;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #f8fdf9;
  border-radius: 16px;
  border: 1px solid rgba(28, 140, 67, 0.1);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.contact-info-card:hover {
  background: rgba(28, 140, 67, 0.06);
  border-color: rgba(28, 140, 67, 0.25);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i {
  color: #fff;
  font-size: 18px;
}
.contact-info-label {
  font-size: 12px;
  color: #1c8c43;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-info-sub {
  font-size: 12px;
  color: #888;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(28, 140, 67, 0.15);
  height: 220px;
  background: linear-gradient(135deg, #f0faf4, #e8f5ed);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.contact-map-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231C8C43' fill-opacity='0.06' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.contact-map-pin {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(28, 140, 67, 0.1);
  animation: pulse-green 2s ease infinite;
  position: relative;
  z-index: 1;
}
.contact-map-pin i {
  color: #fff;
  font-size: 22px;
}
.contact-map-label {
  font-size: 14px;
  color: #0c5927;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(12, 89, 39, 0.09);
  border: 1px solid rgba(28, 140, 67, 0.1);
}
.contact-form-title {
  font-size: 22px;
  font-weight: 800;
  color: #0c5927;
  margin-bottom: 28px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.form-label .req {
  color: #1c8c43;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(28, 140, 67, 0.2);
  font-size: 15px;
  color: #333;
  font-family: "Noto Kufi Arabic", sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
  background: #fafffe;
  direction: rtl;
}
.form-input:focus,
.form-textarea:focus {
  border-color: #1c8c43;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(28, 140, 67, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-family: "Noto Kufi Arabic", sans-serif;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(28, 140, 67, 0.4);
}
.form-success {
  display: none;
  background: rgba(28, 140, 67, 0.1);
  border: 1px solid rgba(28, 140, 67, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  align-items: center;
  gap: 12px;
  color: #0c5927;
  font-size: 15px;
  font-weight: 600;
}
.form-success.visible {
  display: flex;
}

/* ====================================
   CTA SECTION
   ==================================== */
#cta,
.cta-section {
  padding: 80px 24px;
  background: #fff;
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cta-box {
  background: linear-gradient(135deg, #0c5927 0%, #1c8c43 100%);
  border-radius: 32px;
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(12, 89, 39, 0.25);
}
.cta-blob-1 {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.cta-blob-2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
.cta-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}
.cta-icon-wrap i {
  color: #fff;
  font-size: 32px;
}
.cta-title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}
.cta-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-btn-primary {
  background: #fff;
  color: #0c5927;
  border: none;
  border-radius: 12px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  font-family: "Noto Kufi Arabic", sans-serif;
  text-decoration: none;
  display: inline-block;
}
.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.cta-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
  font-family: "Noto Kufi Arabic", sans-serif;
  text-decoration: none;
  display: inline-block;
}
.cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
}

/* ====================================
   FOOTER
   ==================================== */
footer {
  background: #0c5927;
  color: #fff;
  padding-top: 64px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo-row img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}
.footer-brand-name {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}
.footer-brand-en {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
  max-width: 320px;
}
.footer-badges {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.footer-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.footer-col-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: right;
  text-decoration: none;
  font-family: "Noto Kufi Arabic", sans-serif;
}
.footer-link:hover {
  color: #fff;
}
.footer-link i {
  font-size: 10px;
  opacity: 0.6;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}
.footer-contact-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-sfda,
a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-detail-img img {
    height: 450px !important;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-stats-row {
    grid-template-columns: 1fr;
  }

  .about-float-card {
    left: 0;
    bottom: -20px;
  }
  .hero-stats {
    gap: 24px;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .products-banner-overlay {
    padding: 0 24px;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }
  .about-chips {
    gap: 8px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .product-filters {
    gap: 8px;
  }
}

/* ============================================================
   ADDONS — Navbar White | Hero Image | Why-Us Icons | Slider
   ============================================================ */

/* ── 1. Navbar Always White ──────────────────────────────── */
#navbar.navbar-always-white {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 2px 24px rgba(12, 89, 39, 0.1);
  border-bottom: 1px solid rgba(28, 140, 67, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* إلغاء الأنيميشن الشفاف في الأعلى */
#navbar.navbar-always-white:not(.scrolled) {
  background: rgba(255, 255, 255, 0.97) !important;
}

/* ── 2. Hero Layout مع الصورة الجانبية ──────────────────── */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  gap: 60px;
  width: 100%;
}
.hero-image-side {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFadeIn 0.9s ease 0.35s both;
}
.hero-img-frame {
  position: relative;
  width: 360px;
  height: 440px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(12, 89, 39, 0.45);
  flex-shrink: 0;
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(12, 89, 39, 0.45) 100%
  );
  z-index: 1;
}
.hero-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.hero-img-badge i {
  color: #0c5927;
  font-size: 16px;
}
.hero-img-badge span {
  color: #0c5927;
  font-size: 13px;
  font-weight: 700;
  font-family: "Noto Kufi Arabic", sans-serif;
}
.hero-img-badge-2 {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(12, 89, 39, 0.4);
}
.hero-img-badge-2 span {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  font-family: "Noto Kufi Arabic", sans-serif;
  line-height: 1;
}
.hero-img-badge-2 small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  margin-top: 2px;
  font-family: "Noto Kufi Arabic", sans-serif;
}

/* Responsive: عرض الصورة بشكل متجاوب على الموبايل والتابلت */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-image-side {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  .hero-img-frame {
    width: 100%;
    max-width: 420px;
    height: 320px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .hero-img-frame {
    height: 260px;
    border-radius: 20px;
  }
  .hero-img-badge,
  .hero-img-badge-2 {
    padding: 8px 12px;
  }
  .hero-img-badge span { font-size: 12px; }
  .hero-img-badge-2 span { font-size: 15px; }
  .hero-img-badge-2 small { font-size: 9px; }
}

/* ── 3. Why Us: Icon Cards (بدون صور) ───────────────────── */
.whyus-icon-card {
  background: #fff;
  border-radius: 20px;
  overflow: visible !important;
  box-shadow: 0 8px 30px rgba(12, 89, 39, 0.07);
  border: 1px solid rgba(28, 140, 67, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  text-align: center;
  padding: 0 0 28px;
}
.whyus-icon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(12, 89, 39, 0.15);
  border-color: rgba(28, 140, 67, 0.3);
}
.whyus-icon-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0 20px;
}
.whyus-icon-circle {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(28, 140, 67, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.whyus-icon-card:hover .whyus-icon-circle {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(28, 140, 67, 0.4);
}
.whyus-icon-circle i {
  color: #fff;
  font-size: 32px;
}
.whyus-icon-card .whyus-body {
  padding: 0 28px;
}
.whyus-icon-card .whyus-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #0c5927;
  margin-bottom: 10px;
}
.whyus-icon-card .whyus-card-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* ── 4. Products Slider ──────────────────────────────────── */
.products-slider-wrap {
  position: relative;
  margin-top: 8px;
  padding-bottom: 48px;
}
.ps-viewport {
  overflow: hidden;
  border-radius: 20px;
}
.ps-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
/* كل كارد في الـslider */
.ps-track .product-card-page {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  border-radius: 20px;
  background: #fff;
  border: 1.5px solid rgba(28, 140, 67, 0.12);
  box-shadow: 0 8px 28px rgba(12, 89, 39, 0.07);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  opacity: 1 !important;
  animation: none !important;
}
.ps-track .product-card-page:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(12, 89, 39, 0.15);
  border-color: rgba(28, 140, 67, 0.3);
}
.ps-track .product-img-wrap {
  height: 350px;
  overflow: hidden;
  position: relative;
}
.ps-track .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ps-track .product-card-page:hover .product-img-wrap img {
  transform: scale(1.06);
}
.ps-track .product-img-overlay {
  position: absolute;
  inset: 0;
  background: none;
}
.ps-track .product-cat-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.93);
  color: #0c5927;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: "Noto Kufi Arabic", sans-serif;
}
.ps-track .product-body {
  padding: 20px 20px 22px;
}
.ps-track .product-name {
  font-size: 16px;
  font-weight: 800;
  color: #0c5927;
  margin-bottom: 8px;
  line-height: 1.4;
}
.ps-track .product-short-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ps-track .product-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: "Noto Kufi Arabic", sans-serif;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.ps-track .product-page-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Navigation Buttons */
.ps-nav {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.ps-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(28, 140, 67, 0.25);
  color: #0c5927;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  font-family: "Noto Kufi Arabic", sans-serif;
}
.ps-btn:hover {
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  border-color: transparent;
  color: #fff;
  transform: scale(1.05);
}
.ps-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* Dots */
.ps-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.ps-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(28, 140, 67, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    width 0.3s ease;
}
.ps-dot.active {
  background: #1c8c43;
  width: 24px;
  border-radius: 4px;
  transform: none;
}

/* Responsive Slider */
@media (max-width: 1024px) {
  .ps-track .product-card-page {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 640px) {
  .ps-track .product-card-page {
    flex: 0 0 calc(100%);
  }
  .ps-nav {
    justify-content: center;
  }
}

/* ── 5. Commercial Page Styles ───────────────────────────── */
.commercial-section {
  padding: 80px 0 100px;
  background: #fff;
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.doc-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(28, 140, 67, 0.12);
  box-shadow: 0 6px 24px rgba(12, 89, 39, 0.07);
  cursor: zoom-in;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}
.doc-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(12, 89, 39, 0.17);
  border-color: rgba(28, 140, 67, 0.35);
}
.doc-img-wrap {
  position: relative;
  width: 100%;
  height: 330px;
  overflow: hidden;
  background: #f0faf4;
}
.doc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  display: block;
}
.doc-card:hover .doc-img-wrap img {
  transform: scale(1.07);
}
.doc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 89, 39, 0.55) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}
.doc-card:hover .doc-img-overlay {
  opacity: 1;
}
.doc-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #0c5927;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: "Noto Kufi Arabic", sans-serif;
}
.doc-zoom {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c5927;
  font-size: 14px;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.doc-card:hover .doc-zoom {
  opacity: 1;
  transform: translateY(0);
}
.doc-body {
  padding: 20px 22px 22px;
  flex: 1;
  border-top: 1px solid rgba(28, 140, 67, 0.08);
}
.doc-title {
  font-size: 15px;
  font-weight: 800;
  color: #0c5927;
  margin-bottom: 6px;
  line-height: 1.4;
}
.doc-issuer {
  font-size: 12px;
  color: #1c8c43;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.doc-issuer i {
  font-size: 11px;
  opacity: 0.8;
}

/* Lightbox */
.doc-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 32, 15, 0.93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.doc-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.doc-lightbox-inner {
  position: relative;
  max-width: min(90vw, 860px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  animation: scaleIn 0.28s ease forwards;
}
.doc-lightbox-close {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  color: #0c5927;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.doc-lightbox-close:hover {
  transform: rotate(90deg) scale(1.1);
}

@media (max-width: 768px) {
  .docs-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
  }
  .doc-img-wrap {
    height: 270px;
  }
}
@media (max-width: 480px) {
  .docs-grid {
    grid-template-columns: 1fr;
  }
  .doc-img-wrap {
    height: 300px;
  }
}

/* ====================================
   PRODUCT INFO BLOCKS (PDF content)
   ==================================== */
.product-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.product-info-block {
  background: #f8fdf9;
  border: 1px solid rgba(28, 140, 67, 0.15);
  border-radius: 20px;
  padding: 28px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.product-info-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(12, 89, 39, 0.1);
  border-color: rgba(28, 140, 67, 0.3);
}
.product-info-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(28, 140, 67, 0.12);
}
.product-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(28, 140, 67, 0.25);
}
.product-info-icon i {
  color: #fff;
  font-size: 18px;
}
.product-info-title {
  font-size: 19px;
  font-weight: 800;
  color: #0c5927;
  margin: 0;
}
.product-info-text {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin: 0;
}
.product-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
.product-info-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  flex-shrink: 0;
  margin-top: 9px;
}

@media (max-width: 900px) {
  .product-info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }
  .product-info-block {
    padding: 22px;
  }
  .product-info-title {
    font-size: 17px;
  }
  .product-info-icon {
    width: 40px;
    height: 40px;
  }
  .product-info-icon i {
    font-size: 16px;
  }
}

/* ============================================================
   MOBILE RESPONSIVE FIXES + FLOATING CONTACT BUTTONS
   Added without changing the original content/design structure
   ============================================================ */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body * {
  min-width: 0;
}
.container,
.nav-inner,
.footer-inner,
.hero-content,
.page-hero-inner,
.vision-inner,
.cta-inner {
  width: 100%;
}

/* Floating WhatsApp / Call buttons */
.floating-contact {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  pointer-events: none;
}
.floating-contact-btn {
  pointer-events: auto;
  min-width: 58px;
  height: 58px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff !important;
  background: linear-gradient(135deg, #0c5927, #1c8c43);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(12, 89, 39, 0.32);
  font-size: 15px !important;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}
.floating-contact-btn i {
  font-size: 22px;
  color: inherit;
}
.floating-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(12, 89, 39, 0.42);
}
.floating-call {
  display: none;
  background: #fff;
  color: #0c5927 !important;
  border: 1.5px solid rgba(28, 140, 67, 0.28);
}

@media (max-width: 1100px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-inner {
    height: 68px;
  }
  .nav-mobile {
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
  }
}

@media (max-width: 1024px) {
  #hero {
    min-height: auto;
  }
  .hero-content {
    padding: 122px 20px 78px;
  }
  .hero-inner {
    max-width: 100%;
  }
  .scroll-indicator {
    display: none;
  }
  .about-grid,
  .products-grid,
  .vm-grid,
  .contact-grid,
  .product-detail-grid,
  .product-info-grid {
    grid-template-columns: 1fr !important;
    gap: 34px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-grid,
  .docs-grid,
  .whyus-grid,
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 18px;
  }
  .nav-logo img {
    width: 62px;
    height: 62px;
  }
  .nav-logo-name {
    font-size: 13px;
  }
  .nav-logo-sub {
    font-size: 10px;
  }
  .nav-mobile {
    padding: 10px 18px 18px;
    box-shadow: 0 20px 42px rgba(12, 89, 39, 0.1);
  }
  .nav-mobile-link {
    font-size: 14px;
    padding: 13px 0;
  }

  .page-hero {
    padding: 112px 16px 56px;
  }
  .breadcrumb {
    flex-wrap: wrap;
    row-gap: 6px;
  }
  .page-hero-title {
    font-size: clamp(26px, 9vw, 38px);
  }
  .page-hero-sub {
    font-size: 14.5px;
    line-height: 1.9;
  }

  #about,
  .about-section,
  #products,
  .products-page-section,
  #vision,
  .vision-section,
  #values,
  .values-section,
  #why-us,
  .whyus-section,
  #contact,
  .contact-section,
  .product-detail-section,
  .related-section,
  .commercial-section,
  #cta,
  .cta-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  #about,
  .about-section,
  #products,
  .products-page-section,
  #vision,
  .vision-section,
  #values,
  .values-section,
  #why-us,
  .whyus-section,
  #contact,
  .contact-section,
  .product-detail-section,
  .related-section,
  .commercial-section {
    padding-top: 64px;
    padding-bottom: 70px;
  }
  .section-header {
    margin-bottom: 38px;
  }
  .section-title,
  .about-title,
  .vision-title {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.35;
  }
  .section-sub,
  .about-p,
  .vm-card-text,
  .product-detail-desc {
    font-size: 14.5px;
    line-height: 1.9;
  }

  .hero-content {
    padding: 112px 16px 62px;
  }
  .hero-badge {
    padding: 7px 14px;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero-badge span {
    font-size: 12px;
  }
  .hero-h1 {
    font-size: clamp(30px, 10vw, 44px);
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 26px;
  }
  .hero-btns,
  .cta-btns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
  .hero-btn-primary,
  .hero-btn-outline,
  .cta-btn-primary,
  .cta-btn-outline,
  .product-detail-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 34px;
    width: 100%;
  }
  .hero-stat {
    border-right: 0;
    padding: 14px 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
  }
  .hero-stat-num {
    font-size: 21px;
  }
  .hero-stat-label {
    font-size: 10.5px;
    max-width: none;
  }

  .about-img-inner img {
    height: 320px;
  }
  .about-float-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -42px 16px 0;
    min-width: auto;
    z-index: 3;
    display: none;
  }
  .about-stats-row {
    padding: 36px 0;
    margin-bottom: 52px;
  }

  .product-card,
  .vm-card,
  .value-card,
  .contact-form-wrap,
  .product-info-block {
    padding: 22px;
  }
  .product-grid,
  .docs-grid,
  .whyus-grid,
  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .product-img-wrap {
    height: 245px;
  }
  .ps-track .product-img-wrap {
    height: 300px;
  }
  .products-banner {
    height: 240px;
  }
  .products-banner-overlay {
    padding: 0 20px;
    background: linear-gradient(
      to top,
      rgba(12, 89, 39, 0.88) 0%,
      rgba(12, 89, 39, 0.58) 68%,
      rgba(12, 89, 39, 0.18) 100%
    );
  }
  .products-banner-title {
    font-size: 19px;
  }
  .docs-grid {
    margin-top: 36px;
  }
  .doc-img-wrap {
    height: 310px;
  }
  .product-detail-img img {
    height: 340px !important;
  }
  .product-info-head {
    align-items: flex-start;
  }

  .contact-info-card,
  .local-item,
  .product-feature-item,
  .product-info-item,
  .footer-contact-item {
    align-items: flex-start;
  }
  .contact-map {
    height: 190px;
  }
  .form-input,
  .form-textarea {
    font-size: 14px;
    padding: 13px 15px;
  }

  .cta-box {
    border-radius: 24px;
    padding: 42px 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-desc {
    max-width: 100%;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .footer-contact-text,
  .contact-info-value,
  .contact-info-sub {
    overflow-wrap: anywhere;
  }

  .floating-contact {
    left: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    gap: 10px;
  }
  .floating-contact-btn {
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    font-size: 0 !important;
  }
  .floating-contact-btn i {
    font-size: 21px;
  }
  .floating-contact-btn span {
    display: none;
  }
  .floating-call {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    height: 64px;
    padding: 0 14px;
  }
  .nav-logo {
    gap: 8px;
  }
  .nav-logo img {
    width: 54px;
    height: 54px;
  }
  .nav-logo-name {
    font-size: 12px;
  }
  .nav-logo-sub {
    font-size: 9px;
  }
  .page-hero {
    padding-top: 100px;
  }
  .hero-content {
    padding-top: 104px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-stat-label {
    font-size: 11px;
  }
  .about-img-inner img,
  .product-detail-img img {
    height: 280px !important;
  }
  .product-img-wrap,
  .ps-track .product-img-wrap {
    height: 260px;
  }
  .doc-img-wrap {
    height: 285px;
  }
  .contact-info-card {
    padding: 16px;
    gap: 12px;
  }
  .contact-info-icon,
  .product-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }
  .product-card,
  .vm-card,
  .value-card,
  .contact-form-wrap,
  .product-info-block {
    padding: 18px;
  }
  .product-card-title,
  .contact-form-title {
    font-size: 19px;
  }
  .product-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .filter-btn {
    flex: 0 0 auto;
    padding: 9px 18px;
    font-size: 13px;
  }
  .footer-inner {
    padding: 0 18px;
  }
  .floating-contact-btn {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }
}

@media (max-width: 360px) {
  .nav-logo-sub {
    display: none;
  }
  .hero-badge {
    border-radius: 18px;
  }
  .hero-h1 {
    font-size: 28px;
  }
  .floating-contact {
    left: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
  }
  .floating-contact-btn {
    width: 46px;
    min-width: 46px;
    height: 46px;
  }
}
