html.dark {
  color-scheme: dark;
}

html:not(.dark) {
  color-scheme: light;
}

:root {
  --fd-green: #7ac143;
  --fd-navy: #1b2147;
  --fd-dark: #22262b;
  --fd-gray: #7c847c;
  --fd-taupe: #a78c52;
  --fd-offwhite: #f4f6f3;
  --fd-white: #ffffff;

  --background: #fafafa;
  --surface: #ffffff;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --card-bg: #ffffff;
  --card-shadow: rgba(0, 0, 0, 0.1);
  --focus-ring: 0 0 0 3px rgba(122, 193, 67, 0.35);
}

.dark {
  --background: #0f172a;
  --surface: #1e293b;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --border: #334155;
  --border-light: #475569;
  --card-bg: #1e293b;
  --card-shadow: rgba(0, 0, 0, 0.3);

  --fd-green: #7ac143;
  --fd-navy: #e2e8f0;
  --fd-dark: #f8fafc;
  --fd-gray: #94a3b8;
  --fd-taupe: #d4a574;
  --fd-offwhite: #1e293b;
  --fd-white: #f8fafc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition:
    background-color 0.25s,
    color 0.25s,
    border-color 0.25s,
    opacity 0.25s;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: "Cairo", "Changa", system-ui, sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  overflow-x: clip;
  line-height: 1.7;
  font-size: 17px;
  margin: 0;
  padding: 0;
}

html[lang="en"] .i {
  display: none;
}

html[lang="en"] .j {
  display: block;
}

[dir="c"] {
  direction: c;
  text-align: left;
  font-family: "Cairo", system-ui, sans-serif;
}

[dir="b"] {
  direction: b;
  text-align: right;
  font-family: "Changa", "Cairo", system-ui, sans-serif;
}

.c {
  direction: c !important;
  text-align: left !important;
}

.b {
  direction: b !important;
  text-align: right !important;
}

.d {
  font-family: "Changa", "Cairo", system-ui, sans-serif !important;
}

.e {
  font-family: "Cairo", system-ui, sans-serif !important;
}

.c-content {
  direction: c !important;
  text-align: left !important;
  display: inline-block;
  unicode-bidi: isolate;
}

.b .c-content {
  direction: c !important;
  text-align: left !important;
}

.g,
.h {
  direction: c !important;
  text-align: left !important;
  unicode-bidi: embed;
}

[dir="b"] .g,
[dir="b"] .h {
  direction: c !important;
  text-align: left !important;
}

.i {
  display: none;
}

.a .j {
  display: none;
}

.a .i {
  display: block;
}

body:not(.a) .j {
  display: block;
}

body:not(.a) .i {
  display: none;
}

.k {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.l {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .l {
    max-width: 100%;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .l {
    max-width: 768px;
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .l {
    max-width: 1024px;
    padding: 0 2rem;
  }
}

@media (min-width: 1280px) {
  .l {
    max-width: 1280px;
    padding: 0 2rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(122, 193, 67, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(122, 193, 67, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(122, 193, 67, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes p {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(122, 193, 67, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(122, 193, 67, 0);
  }
}

@keyframes bounce-horizontal {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: var(--progress-width);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-subscribe {
  0% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.1);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}

.m {
  animation: fadeIn 0.8s ease-in-out;
}

.n {
  animation: slideUp 0.8s ease-in-out 0.2s both;
}

.o {
  animation: float 6s ease-in-out infinite;
}

.p {
  animation: pulse 2s infinite;
}

.q {
  animation: slideIn 0.6s ease-out;
}

.r {
  color: var(--fd-green);
}

.s {
  background-color: var(--fd-green);
}

.t {
  color: var(--fd-navy);
}

.u {
  background-color: var(--fd-navy);
}

.v {
  color: var(--fd-taupe);
}

.w {
  background-color: var(--fd-taupe);
}

.x {
  color: var(--fd-dark);
}

.y {
  background-color: var(--fd-dark);
}

.z {
  color: var(--fd-gray);
}

.aa {
  background-color: var(--fd-gray);
}

.ab {
  color: var(--fd-offwhite);
}

.ac {
  background-color: var(--fd-offwhite);
}

.ad {
  color: var(--fd-white);
}

.ae {
  background-color: var(--fd-white);
}

header {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 1px solid rgba(124, 132, 124, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  height: 80px;
}

[dir="c"] header {
  left: 0;
  right: 0;
}

[dir="b"] header {
  right: 0;
  left: 0;
}

.dark header {
  background: rgba(31, 41, 55, 0.98) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

body {
  padding-top: 80px !important;
}

.af {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
  transition: 0.25s;
}

.ag {
  width: 220px;
  height: 90px;
  transition: 0.25s;
}

.af:hover .ag {
  transform: scale(1.06) translateY(-4px);
  opacity: 0.95;
}

.ah {
  position: relative;
  padding: 10px 0;
  font-weight: 600;
  color: var(--fd-gray);
  font-size: 16px;
  background: linear-gradient(to right, var(--fd-green), var(--fd-green))
    no-repeat;
  background-size: 0% 2px;
  background-position: left bottom;
}

[dir="b"] .ah {
  background-position: right bottom;
}

.ah:hover,
.ah.active {
  background-size: 100% 2px;
  color: var(--fd-green);
}

.ai {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(122, 193, 67, 0.2) 0%);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.dark .ai {
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.15),
    rgba(42, 47, 58, 0.15)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(122, 193, 67, 0.25);
  border-color: var(--fd-green);
}

.ai:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.aj {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
}

.ak {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(124, 132, 124, 0.1);
  position: relative !important;
  display: block !important;
}

.dark .ak {
  background: rgba(31, 41, 55, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ak.active {
  max-height: 100vh;
}

.ak:not(.active) {
  max-height: 0 !important;
  overflow: hidden !important;
}

.ak .ah {
  margin: 0.25rem 0;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ak .ah:hover {
  background: rgba(122, 193, 67, 0.1);
  transform: translateX(8px);
}

[dir="b"] .ak .ah:hover {
  transform: translateX(-8px);
}

.ak .ah.active {
  background: var(--fd-green);
  color: #fff;
  transform: translateX(8px);
}

[dir="b"] .ak .ah.active {
  transform: translateX(-8px);
}

.al,
.has-am .am {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid rgba(124, 132, 124, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: 1.25rem;
}

.dark .al,
.dark .has-am .am {
  background: rgba(31, 41, 55, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.al.active,
.has-am:hover .am {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

#home {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
}

.an {
  background: linear-gradient(
    135deg,
    rgba(42, 47, 58, 0.95) 0%,
    rgba(34, 38, 43, 0.85) 100%
  );
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ao > div:first-child {
  padding-top: 3rem !important;
  padding-bottom: 0.5rem !important;
}

.dark .an {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(30, 41, 59, 0.85) 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.1) 0%,
    rgba(42, 47, 58, 0.2) 100%
  );
  z-index: 1;
}

.ao {
  padding: 2rem 1rem !important;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
}

.ap {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: white;
  text-align: center;
}

.aq {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ao .grid.grid-cols-2.gap-4.mb-8 {
  gap: 1.25rem !important;
  margin-bottom: 2.5rem !important;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ar {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.ar:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ao .grid.grid-cols-2.gap-4.mb-8 .stats-counter {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #7ac143, #84cc16);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ao .grid.grid-cols-2.gap-4.mb-8 p.text-sm {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.ao .flex.flex-wrap.gap-4 {
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.as {
  display: none;
}

.as.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.as img {
  aspect-ratio: 16/9;
  background-color: #f3f4f6;
}

.dark .as img {
  background-color: #374151;
}

.at {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.35);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.at:hover {
  background-color: rgba(255, 255, 255, 0.55);
  transform: scale(1.2);
}

.at.active {
  background-color: var(--fd-green);
  border-color: white;
  width: 34px;
  border-radius: 8px;
}

.au {
  position: absolute;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fd-green), #76bc43);
  transition: width 5s linear;
  z-index: 3;
  border-radius: 0 0 1rem 1rem;
}

[dir="c"] .au {
  left: 0;
  border-radius: 0 0 1rem 1rem;
}

[dir="b"] .au {
  right: 0;
  border-radius: 0 0 1rem 1rem;
}

.main-image-slide.active .au {
  width: 100%;
}

#home .k {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.av {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 65vh;
  min-height: 300px;
  max-height: 750px;
  margin: 0;
  padding: 0;
}

.store-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.ax {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(122, 193, 67, 0.08) 0%,
    rgba(244, 246, 243, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.ay {
  position: absolute;
  width: 120px;
  height: 120px;
  z-index: 2;
}

.az {
  top: 0;
  left: 0;
  border-top: 4px solid var(--fd-offwhite);
  border-left: 4px solid var(--fd-offwhite);
}

.ba {
  bottom: 0;
  right: 0;
  border-bottom: 4px solid var(--fd-offwhite);
  border-right: 4px solid var(--fd-offwhite);
}

[dir="b"] .az {
  left: auto;
  right: 0;
  border-left: none;
  border-right: 4px solid var(--fd-offwhite);
}

[dir="b"] .ba {
  right: auto;
  left: 0;
  border-right: none;
  border-left: 4px solid var(--fd-offwhite);
}

.bb > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.bc {
  opacity: 1;
  transform: translateY(0);
}

.bd {
  transition-delay: 100ms;
}

.be {
  transition-delay: 200ms;
}

.bf {
  transition-delay: 300ms;
}

.bg {
  transition-delay: 400ms;
}

.bh {
  transition-delay: 500ms;
}

.dark .flex.items-center.gap-2:last-child .w-3.h-3.u.rounded-full {
  background-color: #fff !important;
}

.dark #about .inline-flex.items-center.gap-3 .d.t {
  color: #fff !important;
}

.dark #about .grid.grid-cols-3.gap-4 > div:nth-child(2) .t {
  color: #fff !important;
}

.dark
  #about
  .bg-white.dark\:bg-dark-surface.rounded-xl.p-6.shadow-lg:last-child
  .t {
  color: #fff !important;
}

.bi {
  background: linear-gradient(135deg, var(--fd-navy) 0%, var(--fd-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
}

.dark .bi {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

.bj {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 220px;
}

.dark .bj {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bj:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bj .w-16 {
  width: 3.5rem;
  height: 3.5rem;
}

.bj h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.bj p {
  opacity: 0.9;
  line-height: 1.6;
  font-size: 0.95rem;
}

#goals {
  scroll-margin-top: 80px;
  padding: 3.5rem 0;
  background: var(--background);
}

.bk {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .bk {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bk {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bl {
  background: var(--surface);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--fd-green), var(--fd-taupe));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bl:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: var(--fd-green);
}

.bl:hover::before {
  opacity: 1;
}

.dark .bl {
  background: var(--surface);
  border-color: var(--border);
}

.dark .bl:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.bm {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.1) 0%,
    rgba(27, 33, 71, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--fd-green);
  transition: all 0.3s ease;
}

.bl:hover .bm {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.2) 0%,
    rgba(27, 33, 71, 0.2) 100%
  );
}

.bn {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--fd-navy);
  line-height: 1.3;
}

.dark .bn {
  color: var(--text-primary);
}

.bo {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  flex-grow: 1;
}

.bp {
  position: absolute;
  top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  background: rgba(122, 193, 67, 0.1);
  color: var(--fd-green);
}

[dir="c"] .bp {
  right: 1rem;
}

[dir="b"] .bp {
  left: 1rem;
}

.dark .bp {
  background: rgba(122, 193, 67, 0.15);
}

.bq {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.bq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--fd-green), var(--fd-taupe));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.bq:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bq:hover::before {
  transform: scaleX(1);
}

.dark .bq:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

@keyframes scaleIn {
  from {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  #mainHeader .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #mainHeader .flex {
    flex-wrap: nowrap;
  }

  #mainHeader .af {
    flex-shrink: 0;
  }

  #mainHeader .aj {
    flex-shrink: 0;
    gap: 0.5rem;
  }

  .ak {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .dark .ak {
    background: rgba(31, 41, 55, 0.98);
  }

  .ak .container {
    padding: 0;
  }
}

@media (max-width: 640px) {
  #mainHeader .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  #mainHeader .aj {
    gap: 0.25rem;
  }

  .ai {
    width: 40px !important;
    height: 40px !important;
  }

  .ag {
    width: 140px !important;
    height: 60px !important;
  }

  .ak {
    max-height: 70vh;
    overflow-y: auto;
  }

  .ak .py-6 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .ak .ah {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 1025px) {
  .ap {
    font-size: 2.25rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
  }

  .aq {
    font-size: 1rem !important;
    max-width: 600px !important;
    margin-bottom: 2rem !important;
  }

  .ao {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

@media (min-width: 640px) and (max-width: 768px) {
  .an {
    min-height: 40vh !important;
    max-height: 350px !important;
  }
}

@media (max-width: 480px) {
}

@media (min-width: 480px) and (max-width: 640px) {
}

@media (prefers-contrast: high) {
  .br,
  .bs {
    border-width: 3px;
  }

  .bt {
    border-width: 3px;
  }

  .bu {
    border-width: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .br,
  .bs,
  .bt,
  .bu,
  .bq {
    transition: none;
  }

  .shake {
    animation: none;
  }
}

.br:focus-visible,
.bs:focus-visible,
.form-radio:focus-visible + .radio-custom {
  outline: 2px solid var(--fd-green);
  outline-offset: 2px;
}

#leafletMap {
  width: 100%;
  height: 450px;
  background: var(--surface);
  border-radius: 0.9rem;
  overflow: hidden;
  z-index: 10;
}

#mobileMap {
  width: 100%;
  height: 100%;
  min-height: 350px;
  background: var(--surface);
  z-index: 1;
}

.bv {
  cursor: pointer;
  transition: all 0.25s ease;
}

.bv:hover {
  background-color: rgba(122, 193, 67, 0.08);
  transform: translateX(-5px);
  border-right: 3px solid #7ac143;
}

[dir="b"] .bv:hover {
  transform: translateX(5px);
  border-right: none;
  border-left: 3px solid #7ac143;
}

.bv.active {
  background-color: rgba(122, 193, 67, 0.12);
  border-right: 4px solid #7ac143;
}

[dir="b"] .bv.active {
  border-right: none;
  border-left: 4px solid #7ac143;
}

.dark .bv .t.dark\:t {
  color: #7ac143 !important;
  font-weight: 700;
}

.dark .leaflet-tile {
  filter: brightness(0.6) invert(1) contrast(3) hue-rotate(200deg) saturate(0.3)
    brightness(0.7);
}

.dark .leaflet-container {
  background: #2d3748;
}

.bw {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.bw:hover {
  transform: scale(1.15);
}

.bx {
  background: #7ac143;
}

.by {
  background: #1b2147;
}

.dark .t,
.dark i.t,
.dark .u {
  position: relative;
}

.dark .u {
  background-color: #0b122b !important;
  outline: 2px solid #ffffff22;
}

.dark i.t {
  color: #e2e8f0 !important;
  background: #1f2937;
  border-radius: 0.4rem;
  padding: 0.25rem;
  box-shadow: 0 0 0 2px #ffffff;
}

.dark .bw.by {
  background: white !important;
  border: 3px solid white !important;
}

.dark .bw.by i {
  color: #1b2147 !important;
}

.dark .bw.bx {
  background: #7ac143 !important;
  border: 3px solid white !important;
}

.bz {
  background: var(--surface) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px var(--card-shadow) !important;
}

.dark .leaflet-popup-content-wrapper {
  background-color: var(--surface) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.dark .leaflet-popup-tip {
  background-color: var(--surface) !important;
  border: 1px solid var(--border) !important;
}

.bz .s {
  background-color: var(--fd-green) !important;
  color: #fff !important;
  border: none !important;
}

.bz .bg-gray-100 {
  background-color: var(--border-light) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border) !important;
}

.dark .bz .bg-gray-100 {
  background-color: var(--surface) !important;
}

.bz .s:hover {
  background-color: #6ab23a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(122, 193, 67, 0.3) !important;
}

.bz .bg-gray-100:hover {
  background-color: var(--border) !important;
  transform: translateY(-2px) !important;
}

#mobileMapDialog .bg-white.dark\:bg-gray-800 {
  border-radius: 1.5rem 1.5rem 0 0;
  max-height: 85vh;
  animation: slideUp 0.3s ease-out;
}

#mobileMapContainer {
  min-height: 280px;
}

#mobileMapDialog {
  backdrop-filter: blur(5px);
}

#mobileMapDialog.hidden {
  opacity: 0;
  pointer-events: none;
}

#mobileMapDialog:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

#mobileDialogBranchInfo {
  background: var(--surface) !important;
  color: var(--text-primary) !important;
  border-top: 1px solid var(--border) !important;
}

#mobileDialogDirectionsBtn {
  background-color: var(--border-light) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border) !important;
}

.dark #mobileDialogDirectionsBtn {
  background-color: var(--surface) !important;
}

#mobileDialogDirectionsBtn:hover {
  background-color: var(--border) !important;
  transform: translateY(-2px);
}

#mobileMapDialogClose {
  background-color: var(--border-light) !important;
  color: var(--text-primary) !important;
  transition: all 0.25s ease !important;
}

.dark #mobileMapDialogClose {
  background-color: var(--surface) !important;
}

#mobileMapDialogClose:hover {
  background-color: var(--border) !important;
  transform: rotate(90deg);
}

.product-categories-section {
  background: var(--background);
  position: relative;
  padding: 3.5rem 0;
}

.mobile-category-slider {
  position: relative;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0.5rem;
  margin: 0 -0.5rem 1.5rem;
  background: transparent;
}

.mobile-category-slider::-webkit-scrollbar {
  display: none;
}

.mobile-category-slider-track {
  display: inline-flex;
  gap: 0.75rem;
  padding: 0 0.5rem;
}

[dir="b"] .mobile-category-slider-track {
  flex-direction: row-reverse;
}

.mobile-category-item {
  flex: 0 0 auto;
  width: 135px;
  background: var(--surface);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 2px 8px var(--card-shadow);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  min-height: 140px;
}

.mobile-category-item.active {
  border-color: var(--fd-green);
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.1) 0%,
    transparent 100%
  );
  box-shadow: 0 8px 20px rgba(122, 193, 67, 0.15);
  transform: translateY(-4px);
}

.mobile-category-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.1) 0%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--fd-green);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.mobile-category-item.active .mobile-category-icon {
  background: linear-gradient(135deg, var(--fd-green) 0%, #9db839 100%);
  color: white;
  transform: scale(1.1);
}

.mobile-category-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  min-height: 2.2em;
  font-family: "Changa", sans-serif;
}

.mobile-category-count {
  font-size: 0.75rem;
  color: var(--fd-gray);
  background: rgba(0, 0, 0, 0.04);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  display: inline-block;
  font-weight: 500;
}

.dark .mobile-category-count {
  background: rgba(255, 255, 255, 0.1);
  color: var(--fd-gray);
}

.mobile-category-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
  padding: 0 1rem;
}

.mobile-category-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.dark .mobile-category-dot {
  background: #475569;
}

.mobile-category-dot.active {
  background: var(--fd-green);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(122, 193, 67, 0.4);
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 25px var(--card-shadow);
  background: var(--surface);
  transition: all 0.5s ease;
}

#categoryImageContainer {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

@media (max-width: 640px) {
  #categoryImageContainer {
    height: 200px;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  #categoryImageContainer {
    height: 260px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #categoryImageContainer {
    height: 350px;
  }
}

@media (min-width: 1025px) {
  #categoryImageContainer {
    height: 420px;
  }
}

#categoryMainImage,
.category-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.75rem;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#categoryMainImage.loading,
.category-main-image.loading {
  opacity: 0.7;
  filter: blur(1px) brightness(0.95);
}

#categoryMainImage.loaded,
.category-main-image.loaded {
  opacity: 1;
  filter: blur(0) brightness(1);
}

.image-container:hover #categoryMainImage,
.image-container:hover .category-main-image {
  filter: brightness(1.05) contrast(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.dark #categoryMainImage,
.dark .category-main-image {
  background: #1e293b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dark .image-container:hover #categoryMainImage,
.dark .image-container:hover .category-main-image {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

#categoryMainImage.image-cover {
  object-fit: cover;
}

#categoryMainImage.image-contain {
  object-fit: contain;
}

#imageLoadingOverlay {
  position: absolute;
  inset: 0;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 2;
}

#imageLoadingOverlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.category-stats {
  position: absolute;
  bottom: 1rem;
  background: rgba(0, 0, 0, 0.75);
  padding: 0.75rem;
  border-radius: 0.75rem;
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 80%;
}

[dir="c"] .category-stats {
  left: 1rem;
}

[dir="b"] .category-stats {
  right: 1rem;
}

.desktop-category-list .space-y-2 > div {
  padding: 0.75rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.desktop-category-list .space-y-2 > div:hover {
  background: var(--border-light);
}

.dark .desktop-category-list .space-y-2 > div:hover {
  background: var(--border);
}

.desktop-category-list .space-y-2 > div.active {
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.1) 0%,
    transparent 100%
  );
  border-right: 3px solid var(--fd-green);
}

[dir="b"] .desktop-category-list .space-y-2 > div.active {
  border-right: none;
  border-left: 3px solid var(--fd-green);
}

.loading-skeleton {
  background: linear-gradient(
    90deg,
    var(--border-light) 25%,
    var(--border) 50%,
    var(--border-light) 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

.mobile-stats-panel {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-top: 2rem;
  box-shadow: 0 4px 12px var(--card-shadow);
  border: 1px solid var(--border);
}

.mobile-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mobile-stat-item {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.05) 0%,
    transparent 100%
  );
  border: 1px solid rgba(122, 193, 67, 0.1);
}

.dark .mobile-stat-item {
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.1) 0%,
    transparent 100%
  );
  border: 1px solid rgba(122, 193, 67, 0.2);
}

.mobile-stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fd-green);
  margin-bottom: 0.25rem;
  font-family: "Changa", sans-serif;
}

.mobile-stat-label {
  font-size: 0.75rem;
  color: var(--fd-gray);
  font-weight: 600;
  font-family: "Cairo", sans-serif;
}

.desktop-timeline-split {
  position: relative;
  z-index: 1;
}

.timeline-dot {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--surface);
  border: 4px solid var(--fd-green);
  box-shadow:
    0 0 0 3px rgba(122, 193, 67, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  margin-top: -14px;

  transform-origin: center center;
  transform: translateX(-50%) !important;
}

[dir="c"] .timeline-dot {
  left: 50% !important;
  transform: translateX(-50%) !important;
}

[dir="b"] .timeline-dot {
  right: 50% !important;
  transform: translateX(50%) !important;
}

.timeline-dot[data-year="2017"] {
  top: 1%;
  border-color: var(--fd-green);
  background-color: var(--fd-green);
  box-shadow:
    0 0 0 3px rgba(122, 193, 67, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.2);
}

.timeline-dot[data-year="2019"] {
  top: 28%;
  border-color: var(--fd-taupe);
  background-color: var(--fd-taupe);
  box-shadow:
    0 0 0 3px rgba(167, 140, 82, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.2);
}

.timeline-dot[data-year="2020"] {
  top: 50%;
  border-color: var(--fd-navy);
  background-color: var(--fd-navy);
  box-shadow:
    0 0 0 3px rgba(27, 33, 71, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.2);
}

.timeline-dot[data-year="2021"] {
  top: 70%;
  border-color: var(--fd-green);
  background-color: var(--fd-green);
  box-shadow:
    0 0 0 3px rgba(122, 193, 67, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.2);
}

.timeline-dot[data-year="2025"] {
  top: 100%;
  border-color: var(--fd-green);
  background-color: var(--fd-green);
  box-shadow:
    0 0 0 3px rgba(122, 193, 67, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.2);
  margin-top: -14px;
}

.timeline-dot:hover {
  transform: translateX(-50%) scale(1.25) !important;
  z-index: 101;
  box-shadow:
    0 0 0 8px rgba(122, 193, 67, 0.3),
    0 6px 16px rgba(0, 0, 0, 0.3);
  border-width: 4px;
}

[dir="b"] .timeline-dot:hover {
  transform: translateX(50%) scale(1.25) !important;
}

.desktop-timeline-line {
  position: absolute;
  width: 4px;
  height: calc(100% - 6rem);
  background: linear-gradient(
    to bottom,
    var(--fd-green),
    var(--fd-taupe),
    var(--fd-navy),
    var(--fd-green)
  );
  top: 3rem;
  z-index: 50;

  left: 50%;
  transform: translateX(-50%);
}

[dir="b"] .desktop-timeline-line {
  right: 50%;
  left: auto;
  transform: translateX(50%);
}

.timeline-image {
  position: relative;
  height: 350px;
  width: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
  z-index: 10;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px var(--card-shadow);
}

.timeline-split-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
  min-height: 350px;
  z-index: 5;
}

.timeline-content {
  padding: 1.75rem;
  background: var(--surface);
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px var(--card-shadow);
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
}

.timeline-dots-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
}

.timeline-dot {
  pointer-events: auto;
}

.timeline-content .year-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.timeline-content .year-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.timeline-content .year-number {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: monospace;
}

.year-2017 .year-icon {
  background-color: rgba(122, 193, 67, 0.1);
  color: var(--fd-green);
}
.year-2019 .year-icon {
  background-color: rgba(167, 140, 82, 0.1);
  color: var(--fd-taupe);
}
.year-2020 .year-icon {
  background-color: rgba(27, 33, 71, 0.1);
  color: var(--fd-navy);
}
.year-2021 .year-icon {
  background-color: rgba(122, 193, 67, 0.1);
  color: var(--fd-green);
}
.year-2026 .year-icon {
  background-color: rgba(122, 193, 67, 0.1);
  color: var(--fd-green);
}

.year-2017 .year-number {
  color: var(--fd-green);
}
.year-2019 .year-number {
  color: var(--fd-taupe);
}
.year-2020 .year-number {
  color: var(--fd-navy);
}
.year-2021 .year-number {
  color: var(--fd-green);
}
.year-2026 .year-number {
  color: var(--fd-green);
}

.timeline-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--fd-navy);
  line-height: 1.3;
}

.dark .timeline-content h3 {
  color: var(--text-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.75rem 0;
}

.stat-item {
  background: var(--surface);
  border-radius: 0.75rem;
  padding: 1.15rem 0.5rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.2;
}

.content-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  margin-top: 1rem;
}

.current-year {
  position: relative;
}

.current-year-badge {
  position: absolute;
  top: -1rem;
  background: var(--fd-green);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(122, 193, 67, 0.3);
}

[dir="c"] .current-year-badge {
  right: 2rem;
}

[dir="b"] .current-year-badge {
  left: 2rem;
}

.mobile-timeline-container {
  position: relative;
  padding: 1.25rem 0 2rem;
  margin-top: 1rem;
}

.mobile-year-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  background: var(--surface);
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px var(--card-shadow);
  overflow-x: auto;
  gap: 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-year-navigation::-webkit-scrollbar {
  display: none;
}

.year-nav-btn {
  flex: 1;
  min-width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  border-radius: 0.75rem;
  border: 2px solid transparent;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Changa", sans-serif;
  gap: 0.5rem;
}

.year-nav-btn:hover {
  background: rgba(122, 193, 67, 0.05);
  transform: translateY(-2px);
}

.year-nav-btn.active {
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.1) 0%,
    rgba(27, 33, 71, 0.1) 100%
  );
  border-color: var(--fd-green);
  color: var(--fd-green);
  box-shadow: 0 4px 12px rgba(122, 193, 67, 0.15);
  transform: translateY(-2px);
}

.year-nav-icon {
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.year-nav-btn.active .year-nav-icon {
  transform: scale(1.1);
}

.year-nav-text {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: monospace;
  line-height: 1.1;
}

.year-nav-btn[data-year="2017"]:hover,
.year-nav-btn[data-year="2017"].active {
  color: #7ac143;
  border-color: #7ac143;
}

.year-nav-btn[data-year="2019"]:hover,
.year-nav-btn[data-year="2019"].active {
  color: #a78c52;
  border-color: #a78c52;
}

.year-nav-btn[data-year="2021"]:hover,
.year-nav-btn[data-year="2021"].active {
  color: #1b2147;
  border-color: #1b2147;
}

.year-nav-btn[data-year="2026"]:hover,
.year-nav-btn[data-year="2026"].active {
  color: #7ac143;
  border-color: #7ac143;
}

.mobile-timeline-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 1rem 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-timeline-scroll::-webkit-scrollbar {
  display: none;
}

.mobile-timeline-slide {
  flex: 0 0 calc(90vw - 2rem);
  scroll-snap-align: start;
  position: relative;
}

.mobile-card {
  background: var(--surface);
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 24px var(--card-shadow);
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.mobile-card.current-card {
  border: 2px solid var(--fd-green);
  box-shadow: 0 10px 30px rgba(122, 193, 67, 0.15);
}

.mobile-card-image {
  height: 140px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.mobile-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-card-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 0.75rem;
}

.mobile-card-year {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: monospace;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--fd-green);
}

.mobile-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.mobile-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--fd-navy);
  flex: 1;
  margin: 0;
  padding: 0;
}

.dark .mobile-card-title {
  color: var(--text-primary);
}

.mobile-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0.75rem 0;
}

.mobile-stat-item {
  background: rgba(122, 193, 67, 0.05);
  border-radius: 0.75rem;
  padding: 0.9rem 0.5rem;
  text-align: center;
  border: 1px solid rgba(122, 193, 67, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70px;
}

.dark .mobile-stat-item {
  background: rgba(122, 193, 67, 0.1);
  border: 1px solid rgba(122, 193, 67, 0.2);
}

.mobile-stat-item:hover {
  transform: translateY(-2px);
}

.mobile-stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  line-height: 1.1;
  color: var(--fd-green);
}

.mobile-stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.mobile-card .content-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  flex: 1;
}

.mobile-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.5rem;
}

.mobile-pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e7eb;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dark .mobile-pagination-dot {
  background: #475569;
}

.mobile-pagination-dot.active {
  background: var(--fd-green);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(122, 193, 67, 0.4);
}

.scroll-hint {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.scroll-hint i {
  color: var(--fd-green);
  animation: bounce-horizontal 2s infinite;
}

.growth-summary {
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.1) 0%,
    rgba(27, 33, 71, 0.1) 100%
  );
  border-radius: 1.25rem;
  padding: 1.75rem 1.25rem;
  border: 1px solid rgba(122, 193, 67, 0.2);
  margin-top: 2.5rem;
  overflow: visible;
}

.dark .growth-summary {
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.15) 0%,
    rgba(27, 33, 71, 0.15) 100%
  );
  border: 1px solid rgba(122, 193, 67, 0.3);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: center;
}

.summary-item {
  padding: 1.15rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 130px;
}

.summary-value {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  line-height: 1;
  color: var(--fd-green);
  font-family: monospace;
}

.summary-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--fd-navy);
  line-height: 1.2;
}

.dark .summary-title {
  color: var(--text-primary);
}

.summary-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
  max-width: 100%;
  padding: 0 0.5rem;
}

#stats {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
}

#stats .text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

#chartLoading {
  transition: opacity 0.3s ease;
}

.group-hover\:scale-150 {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark #growthChart {
  filter: brightness(0.9);
}

.group.relative.overflow-hidden::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.group:hover::before {
  opacity: 1;
}

.stats-counter {
  font-variant-numeric: tabular-nums;
}

.timeline-item {
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(-8px);
}

[dir="b"] .timeline-item:hover {
  transform: translateX(8px);
}

#brands {
  scroll-margin-top: 80px;
  padding: 3.5rem 0;
}

.brands-swiper {
  padding: 10px 5px 30px;
  overflow: hidden;
  position: relative;
}

.brand-slide {
  height: auto;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.7;
  transform: scale(0.95);
}

.brand-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.brand-slide.swiper-slide-prev,
.brand-slide.swiper-slide-next {
  opacity: 0.85;
  transform: scale(0.98);
}

.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.brand-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fd-green), var(--fd-navy));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
  border-color: var(--fd-green);
  box-shadow: 0 10px 25px var(--card-shadow);
}

.brand-card:hover::before {
  opacity: 1;
}

.dark .brand-card {
  background: var(--surface);
  border-color: var(--border);
}

.dark .brand-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.brand-af {
  width: 75px;
  height: 75px;
  margin: 0 auto 1rem;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.05) 0%,
    rgba(27, 33, 71, 0.05) 100%
  );
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.brand-card:hover .brand-af {
  transform: scale(1.08);
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.1) 0%,
    rgba(27, 33, 71, 0.1) 100%
  );
}

.dark .brand-af {
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.08) 0%,
    rgba(27, 33, 71, 0.08) 100%
  );
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.9);
  transition: filter 0.5s ease;
}

.brand-card:hover .brand-logo {
  filter: grayscale(0%) opacity(1);
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--fd-navy);
  line-height: 1.2;
}

.dark .brand-name {
  color: var(--text-primary);
}

.brand-description {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  background: rgba(122, 193, 67, 0.1);
  color: var(--fd-green);
  margin-top: auto;
}

.dark .brand-tag {
  background: rgba(122, 193, 67, 0.15);
  color: var(--fd-green);
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  height: 100%;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.brand-logo-wrapper {
  height: 130px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.brand-logo {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
  max-height: 90px;
  max-width: 240px;
}

.dark .brand-card {
  background: #1f2937;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.swiper-slide {
  height: auto;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.dark .brand-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

.brands-slider-prev,
.brands-slider-next {
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.brands-slider-pagination {
  font-size: 0.75rem;
  color: var(--text-secondary);
  min-width: 60px;
  text-align: center;
}

.brands-slider-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--border);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.brands-slider-pagination .swiper-pagination-bullet-active {
  width: 24px;
  height: 6px;
  border-radius: 3px;
  background: var(--fd-green);
  opacity: 1;
}

#contact {
  scroll-margin-top: 100px;
  padding: 3.5rem 0;
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.03) 0%,
    rgba(27, 33, 71, 0.03) 100%
  );
}

.dark #contact {
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.05) 0%,
    rgba(27, 33, 71, 0.05) 100%
  );
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-card {
  background: var(--surface);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 25px var(--card-shadow);
  height: fit-content;
}

.dark .contact-info-card {
  background: var(--surface);
  border-color: var(--border);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--background);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.dark .contact-info-item {
  background: rgba(255, 255, 255, 0.03);
}

.contact-info-item:hover {
  transform: translateY(-3px);
  border-color: var(--fd-green);
  box-shadow: 0 6px 15px rgba(122, 193, 67, 0.1);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.1) 0%,
    rgba(27, 33, 71, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fd-green);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--fd-navy);
}

.dark .contact-info-content h4 {
  color: var(--text-primary);
}

.contact-info-content p,
.contact-info-content a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: var(--fd-green);
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  font-family: "Cairo", sans-serif;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 0.75rem;
  font-size: 1rem;
}

[dir="b"] .form-group input,
[dir="b"] .form-group textarea,
[dir="b"] .form-group select {
  padding: 1rem 3rem 1rem 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group .form-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
}

[dir="c"] .form-group .form-icon {
  left: 1rem;
}

[dir="b"] .form-group .form-icon {
  right: 1rem;
}

.form-group textarea + .form-icon {
  top: 1.5rem;
  transform: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--fd-green);
  box-shadow: 0 0 0 3px rgba(122, 193, 67, 0.25);
}

.form-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--fd-green) 0%, #6ab23a 100%);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Changa", "Cairo", sans-serif;
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(122, 193, 67, 0.3);
}

.faq-question {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

.faq-question:hover {
  transform: translateX(-5px);
  border-color: var(--fd-green);
}

[dir="b"] .faq-question:hover {
  transform: translateX(5px);
}

.faq-item.active .faq-question {
  background: linear-gradient(
    135deg,
    rgba(122, 193, 67, 0.1) 0%,
    transparent 100%
  );
  border-color: var(--fd-green);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  animation: slideDown 0.3s ease-out;
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  background: var(--background);
  border-radius: 0 0 0.75rem 0.75rem;
}

.dark .faq-answer {
  background: rgba(255, 255, 255, 0.03);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-top: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Changa", "Cairo", system-ui, sans-serif;
  font-size: 1.05rem;
}

.btn-secondary {
  background: linear-gradient(135deg, #1b2147 0%, #2a2f3a 100%);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(27, 33, 71, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #2a2f3a 0%, #1b2147 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(27, 33, 71, 0.4);
}

.btn-white {
  background: rgba(255, 255, 255, 0.95);
  color: #1b2147;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.3);
}

.btn-accent {
  background: linear-gradient(135deg, #a78c52 0%, #c9b793 100%);
  color: #fff;
  border: 2px solid rgba(167, 140, 82, 0.3);
  box-shadow: 0 8px 20px rgba(167, 140, 82, 0.3);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #c9b793 0%, #a78c52 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(167, 140, 82, 0.4);
}

.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid white;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

#scrollToTop {
  position: fixed;
  bottom: 100px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fd-green), #6ab23a);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(122, 193, 67, 0.3);
  z-index: 9998;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(10px);
}

[dir="c"] #scrollToTop {
  right: 24px;
  left: auto;
}

[dir="b"] #scrollToTop {
  left: 24px;
  right: auto;
}

#scrollToTop.show {
  opacity: 1;
  transform: translateY(0);
}

#scrollToTop:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 25px rgba(122, 193, 67, 0.4);
}

#whatsappButton {
  position: fixed;
  bottom: 32px;
  z-index: 9997;
}

[dir="c"] #whatsappButton {
  right: 24px;
  left: auto;
}

[dir="b"] #whatsappButton {
  left: 24px;
  right: auto;
}

#whatsappButton a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3) !important;
  transition: all 0.3s ease !important;
}

#whatsappButton a:hover {
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4) !important;
}

.bv:focus-visible,
.mobile-branch-btn:focus-visible,
.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.slider-nav-btn:focus-visible,
.thumbnail-nav-btn:focus-visible,
.mobile-category-item:focus-visible,
.thumbnail-slide:focus-visible,
.desktop-category-list .space-y-2 > div:focus-visible {
  outline: 2px solid var(--fd-green);
  outline-offset: 2px;
}

footer {
  background: var(--fd-navy);
  color: var(--fd-offwhite);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fd-green), var(--fd-taupe));
}

.dark footer {
  background-color: #0f172a !important;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--fd-green);
}

[dir="b"] .footer-heading::after {
  left: auto;
  right: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--fd-green);
  transform: translateX(5px);
}

[dir="b"] .footer-links a:hover {
  transform: translateX(-5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fd-green);
  flex-shrink: 0;
}

.footer-newsletter {
  margin-top: 1rem;
}

.newsletter-input {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.newsletter-input input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: "Cairo", sans-serif;
}

.newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input input:focus {
  outline: none;
  border-color: var(--fd-green);
}

.newsletter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--fd-green);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Changa", sans-serif;
}

.newsletter-btn:hover {
  background: #6ab23a;
  transform: translateY(-2px);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--fd-green);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--fd-green);
}

footer a,
footer button {
  outline: none;
}

footer a:focus-visible,
footer button:focus-visible {
  outline: 2px solid var(--fd-green);
  outline-offset: 2px;
}

#newsletterForm button:hover {
  animation: pulse-subscribe 0.5s ease-in-out;
}

@media (max-width: 767px) {
  body {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .k {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  #home {
    min-height: auto !important;
    padding: 0 !important;
  }

  .an {
    min-height: calc(100vh - 80px) !important;
    padding: 1rem 0 !important;
  }

  .ap {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    font-weight: 800 !important;
    padding: 0 1rem;
  }

  .aq {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    color: rgba(255, 255, 255, 0.92) !important;
    padding: 0 1rem;
  }

  .ao {
    padding: 1.5rem 1rem !important;
  }

  .ao .btn {
    width: 100% !important;
    max-width: 300px !important;
    padding: 14px 20px !important;
    font-size: 1rem !important;
    margin: 0 auto;
    display: block;
  }

  .ao .btn {
    width: 100% !important;
    max-width: 300px !important;
    padding: 14px 20px !important;
    font-size: 1rem !important;
    margin: 0 auto;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
  }

  .ao .flex.flex-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .ao .btn i {
    margin: 0 !important;
  }

  .ao .grid.grid-cols-2.gap-4.mb-8 > div {
    padding: 1rem !important;
    border-radius: 0.875rem !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(16px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
    min-height: 95px !important;
  }

  .ao .grid.grid-cols-2.gap-4.mb-8 > div:active {
    transform: scale(0.98) !important;
    background: rgba(255, 255, 255, 0.2) !important;
  }

  .ao .grid.grid-cols-2.gap-4.mb-8 .stats-counter {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 0.25rem !important;
  }

  .ao .grid.grid-cols-2.gap-4.mb-8 p.text-sm {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.4 !important;
  }

  .ag {
    width: 160px !important;
    height: 65px !important;
  }

  #searchToggle {
    display: none !important;
  }

  .aj {
    gap: 8px !important;
  }

  .av {
    height: 45vh !important;
    min-height: 250px !important;
    max-height: 450px !important;
  }

  .store-image {
    object-position: center 40% !important;
  }

  .ay {
    display: block !important;
    width: 50px !important;
    height: 50px !important;
    opacity: 0.7 !important;
  }

  .av::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    background: linear-gradient(
      to top,
      rgba(34, 38, 43, 0.7) 0%,
      transparent 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  #heroCarousel .grid.lg\:grid-cols-2 {
    display: flex !important;
    flex-direction: column !important;
  }

  #heroCarousel .grid.lg\:grid-cols-2 > div:first-child {
    order: 2 !important;
  }

  #heroCarousel .grid.lg\:grid-cols-2 > div:last-child {
    order: 1 !important;
    margin-bottom: 1.5rem !important;
  }

  #leafletMap {
    display: none !important;
  }

  .absolute.-bottom-6.-right-6 {
    display: none !important;
  }

  #about {
    padding: 2.5rem 0 !important;
  }

  [data-section="about"] .btn.btn-white.active {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
    min-width: 200px !important;
    text-align: center !important;
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .bg-white.dark\:bg-dark-surface.rounded-2xl.p-8 {
    padding: 1.5rem !important;
    border-radius: 1rem !important;
  }

  .grid.grid-cols-3.gap-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .w-16.h-16 {
    width: 45px !important;
    height: 45px !important;
  }

  .text-2xl {
    font-size: 1.2rem !important;
  }

  .text-3xl {
    font-size: 1.35rem !important;
  }

  .mobile-branch-btn {
    padding: 0.75rem !important;
    font-size: 0.95rem !important;
    min-height: 42px !important;
  }

  .space-y-8 > * + * {
    margin-top: 1.5rem !important;
  }

  #values {
    padding: 2.5rem 0 !important;
  }

  .bi .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    padding: 0 1rem !important;
  }

  .bj {
    padding: 1.25rem 0.875rem !important;
    min-height: 180px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .bj .w-16 {
    width: 45px !important;
    height: 45px !important;
    margin-bottom: 0.75rem !important;
  }

  .bj h3 {
    font-size: 1.05rem !important;
    margin-bottom: 0.5rem !important;
  }

  .bj p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }

  #goals {
    padding: 2.5rem 0 !important;
  }

  .bk {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 1.5rem !important;
  }

  .bl {
    padding: 1.5rem 1rem !important;
  }

  .bm {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }

  .bn {
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
  }

  .bo {
    font-size: 0.9rem !important;
  }

  footer {
    text-align: center;
  }

  .footer-section {
    align-items: center;
  }

  .footer-links {
    text-align: left;
    display: inline-block;
    margin: 0 auto;
  }

  [dir="b"] .footer-links {
    text-align: right;
  }

  .footer-links li {
    text-align: left;
  }

  [dir="b"] .footer-links li {
    text-align: right;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: left;
  }

  [dir="b"] .footer-contact-item {
    text-align: right;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  [dir="b"] .footer-heading::after {
    right: 50%;
    left: auto;
    transform: translateX(50%);
  }

  #scrollToTop {
    bottom: 88px;
    width: 50px;
    height: 50px;
  }

  [dir="c"] #scrollToTop {
    right: 16px;
  }

  [dir="b"] #scrollToTop {
    left: 16px;
  }

  #whatsappButton {
    bottom: 24px;
    z-index: 9996;
  }

  [dir="c"] #whatsappButton {
    right: 16px;
  }

  [dir="b"] #whatsappButton {
    left: 16px;
  }

  #whatsappButton a {
    width: 50px !important;
    height: 50px !important;
  }

  .mobile-only {
    display: block !important;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-timeline-slide {
    min-height: 380px !important;
  }

  .mobile-card {
    min-height: 380px !important;
    padding: 0 !important;
  }

  .mobile-card-content {
    padding: 1rem !important;
    gap: 0.5rem !important;
  }

  .mobile-card-title {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.25rem !important;
  }

  .mobile-card-year {
    font-size: 1.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .mobile-stats-grid {
    gap: 0.4rem !important;
    margin: 0.5rem 0 !important;
  }

  .mobile-stat-item {
    padding: 0.6rem 0.25rem !important;
    min-height: 60px !important;
  }

  .mobile-stat-value {
    font-size: 1rem !important;
    margin-bottom: 0.1rem !important;
  }

  .mobile-stat-label {
    font-size: 0.65rem !important;
    line-height: 1.1 !important;
  }

  .mobile-card .content-description {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-top: 0.25rem !important;
  }

  .growth-summary {
    padding: 1.25rem 0.875rem !important;
    margin-top: 1.5rem !important;
    border-radius: 1rem !important;
    overflow: visible !important;
  }

  .summary-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.75rem !important;
  }

  .summary-item {
    padding: 0.875rem 0.375rem !important;
    min-height: 110px !important;
  }

  .summary-value {
    font-size: 1.5rem !important;
    margin-bottom: 0.2rem !important;
  }

  .summary-title {
    font-size: 0.9rem !important;
    margin-bottom: 0.2rem !important;
    line-height: 1.2 !important;
  }

  .summary-description {
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
    padding: 0 0.25rem !important;
  }

  #categoryImageContainer {
    height: 260px !important;
  }

  #categoryMainImage,
  .category-main-image {
    object-fit: cover !important;
    object-position: center !important;
  }

  .mobile-category-item {
    width: 125px !important;
    padding: 0.875rem !important;
    min-height: 130px !important;
  }

  .mobile-category-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
  }

  .mobile-category-name {
    font-size: 0.8rem !important;
  }

  #mobileMapDialog .bg-white.dark\:bg-gray-800 {
    border-radius: 1rem 1rem 0 0 !important;
  }

  .at {
    width: 8px !important;
    height: 8px !important;
  }

  .at.active {
    width: 25px !important;
  }

  .brands-swiper {
    padding: 15px 30px 45px !important;
  }

  .brands-swiper .swiper-slide {
    width: 220px !important;
  }

  .brand-card {
    height: 260px !important;
    padding: 1.25rem !important;
  }

  .slider-nav {
    display: none !important;
  }

  #contact {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .contact-container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .contact-info-card {
    padding: 1.5rem !important;
  }

  .contact-info-item {
    padding: 1rem !important;
  }

  .contact-info-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
  }

  .form-group input,
  .form-group textarea {
    padding-left: 3rem !important;
  }

  [dir="c"] .form-group input,
  [dir="c"] .form-group textarea {
    padding-right: 1rem !important;
  }

  [dir="b"] .form-group input,
  [dir="b"] .form-group textarea {
    padding-right: 3rem !important;
    padding-left: 1rem !important;
  }

  #stats .space-y-8 .grid.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }

  #stats .group.relative.overflow-hidden {
    padding: 0.625rem !important;
    border-radius: 0.75rem !important;
    min-height: auto !important;
  }

  #stats
    .group.relative.overflow-hidden
    .flex.items-center.justify-between.mb-4 {
    margin-bottom: 0.375rem !important;
  }

  #stats .group.relative.overflow-hidden .w-12.h-12 {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    border-radius: 0.5rem !important;
  }

  #stats .group.relative.overflow-hidden .w-12.h-12 .text-xl {
    font-size: 0.9rem !important;
  }

  #stats .group.relative.overflow-hidden .text-xs {
    font-size: 0.65rem !important;
    padding: 0.1rem 0.3rem !important;
  }

  #stats .group.relative.overflow-hidden .text-4xl {
    font-size: 1.25rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.15rem !important;
  }

  #stats .group.relative.overflow-hidden .font-medium.text-sm {
    font-size: 0.75rem !important;
    margin-bottom: 0.375rem !important;
  }

  #stats .group.relative.overflow-hidden .text-xs {
    font-size: 0.65rem !important;
    line-height: 1.2 !important;
  }

  #stats .group.relative.overflow-hidden .absolute.top-4.right-4 {
    display: none !important;
  }

  #stats
    .bg-gradient-to-r.from-fd-navy.to-fd-navy\/90.text-white.rounded-2xl.p-8 {
    padding: 0.875rem !important;
    border-radius: 0.75rem !important;
    margin-top: 0.75rem !important;
  }

  #stats
    .bg-gradient-to-r.from-fd-navy.to-fd-navy\/90.text-white.rounded-2xl.p-8
    .w-14.h-14 {
    width: 35px !important;
    height: 35px !important;
  }

  #stats
    .bg-gradient-to-r.from-fd-navy.to-fd-navy\/90.text-white.rounded-2xl.p-8
    .text-xl {
    font-size: 1rem !important;
  }

  #stats
    .bg-gradient-to-r.from-fd-navy.to-fd-navy\/90.text-white.rounded-2xl.p-8
    .text-sm {
    font-size: 0.75rem !important;
  }

  #stats
    .bg-gradient-to-r.from-fd-navy.to-fd-navy\/90.text-white.rounded-2xl.p-8
    .grid.grid-cols-2 {
    gap: 0.375rem !important;
  }

  #stats
    .bg-gradient-to-r.from-fd-navy.to-fd-navy\/90.text-white.rounded-2xl.p-8
    .text-3xl {
    font-size: 1.1rem !important;
  }

  #stats .grid.lg\:grid-cols-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  #stats .grid.lg\:grid-cols-2 > div {
    width: 100% !important;
  }

  #stats .space-y-8 {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  #stats .space-y-8 .grid.grid-cols-2 {
    gap: 0.375rem !important;
  }

  #stats .group.relative.overflow-hidden {
    padding: 0.5rem !important;
    border-radius: 0.625rem !important;
  }

  #stats .group.relative.overflow-hidden .w-12.h-12 {
    width: 28px !important;
    height: 28px !important;
  }

  #stats .group.relative.overflow-hidden .text-4xl {
    font-size: 1.1rem !important;
  }

  #stats .group.relative.overflow-hidden .font-medium.text-sm {
    font-size: 0.7rem !important;
  }

  #stats .group.relative.overflow-hidden .text-xs {
    font-size: 0.6rem !important;
  }

  #stats .space-y-8 > * {
    margin-top: 0.375rem !important;
  }

  #stats .space-y-8 > *:first-child {
    margin-top: 0 !important;
  }

  .ap {
    font-size: 1.6rem !important;
  }

  .aq {
    font-size: 0.9rem !important;
  }

  .ao .grid.grid-cols-2.gap-4.mb-8 > div {
    padding: 0.75rem !important;
    min-height: 85px !important;
  }

  .ao .grid.grid-cols-2.gap-4.mb-8 .stats-counter {
    font-size: 1.25rem !important;
  }

  .an {
    min-height: calc(100vh - 80px) !important;
  }

  .mobile-timeline-slide {
    min-height: 350px !important;
  }

  .mobile-card {
    min-height: 350px !important;
  }

  .mobile-card-title {
    font-size: 1rem !important;
  }

  .mobile-card-year {
    font-size: 1.15rem !important;
  }

  .mobile-stats-grid {
    gap: 0.3rem !important;
  }

  .mobile-stat-item {
    padding: 0.5rem 0.15rem !important;
    min-height: 55px !important;
  }

  .mobile-stat-value {
    font-size: 0.9rem !important;
  }

  .mobile-stat-label {
    font-size: 0.6rem !important;
  }

  .mobile-card .content-description {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  #goals {
    padding: 2rem 0 !important;
  }

  .bl {
    padding: 1.25rem 0.875rem !important;
  }

  .bm {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.25rem !important;
  }

  .bn {
    font-size: 1rem !important;
  }

  .bo {
    font-size: 0.85rem !important;
  }

  .growth-summary {
    padding: 1rem 0.625rem !important;
    margin-top: 1.25rem !important;
  }

  .summary-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
  }

  .summary-item {
    padding: 0.75rem 0.25rem !important;
    min-height: 100px !important;
  }

  .summary-value {
    font-size: 1.25rem !important;
  }

  .summary-title {
    font-size: 0.8rem !important;
  }

  .summary-description {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
  }

  .brands-swiper .swiper-slide {
    width: 190px !important;
  }

  .brand-card {
    height: 240px !important;
    padding: 1rem !important;
  }

  #products {
    padding: 1.25rem 0.375rem !important;
  }

  #products .container {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .mobile-category-item {
    width: 110px !important;
    min-height: 115px !important;
    padding: 0.625rem !important;
    margin: 0.25rem !important;
  }

  .mobile-category-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.9rem !important;
  }

  .mobile-category-name {
    font-size: 0.75rem !important;
    min-height: 2em !important;
    line-height: 1.2 !important;
  }

  .mobile-category-count {
    font-size: 0.65rem !important;
    padding: 0.1rem 0.3rem !important;
  }

  #categoryImageContainer {
    height: 200px !important;
    width: 100% !important;
    display: block !important;
    overflow: hidden !important;
    border-radius: 0.75rem !important;
    position: relative !important;
  }

  #categoryMainImage {
    height: 200px !important;
    object-fit: cover !important;
    object-position: center !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
  }

  #imageLoadingOverlay {
    position: absolute !important;
    z-index: 2 !important;
  }

  .section-header h1 {
    font-size: 1.35rem !important;
    line-height: 1.3 !important;
  }

  .section-header p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    padding: 0 0.375rem !important;
  }

  body {
    font-size: 15.5px !important;
  }

  .av {
    height: 40vh !important;
    min-height: 220px !important;
  }

  .mobile-category-item {
    width: 120px !important;
  }

  [data-section="about"] .btn.btn-white.active {
    min-width: 180px !important;
    padding: 0.75rem 1.5rem !important;
  }

  .ao .flex.flex-wrap.gap-4 {
    justify-content: center !important;
    text-align: center !important;
    gap: 0.5rem !important;
    flex-direction: column !important;
    align-items: center !important;
  }
}

@media (max-width: 320px) {
  #stats .space-y-8 .grid.grid-cols-2 {
    gap: 0.25rem !important;
  }

  #stats .group.relative.overflow-hidden {
    padding: 0.375rem !important;
    border-radius: 0.5rem !important;
  }

  #stats .group.relative.overflow-hidden .w-12.h-12 {
    width: 24px !important;
    height: 24px !important;
  }

  #stats .group.relative.overflow-hidden .text-4xl {
    font-size: 1rem !important;
  }

  #stats .group.relative.overflow-hidden .font-medium.text-sm {
    font-size: 0.65rem !important;
    margin-bottom: 0.15rem !important;
  }

  #stats
    .group.relative.overflow-hidden
    .flex.items-center.justify-between.mb-4 {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.15rem !important;
  }

  #stats .group.relative.overflow-hidden .text-xs {
    align-self: flex-start !important;
  }

  .ap {
    font-size: 1.35rem !important;
  }

  .aq {
    font-size: 0.8rem !important;
  }

  .ao .grid.grid-cols-2.gap-4.mb-8 > div {
    padding: 0.625rem !important;
    min-height: 75px !important;
  }

  .ao .grid.grid-cols-2.gap-4.mb-8 .stats-counter {
    font-size: 1.1rem !important;
  }

  .mobile-timeline-slide {
    min-height: 320px !important;
  }

  .mobile-card {
    min-height: 320px !important;
  }

  .mobile-card-title {
    font-size: 0.95rem !important;
  }

  .mobile-card-year {
    font-size: 1rem !important;
  }

  .mobile-stats-grid {
    gap: 0.25rem !important;
  }

  .mobile-stat-item {
    padding: 0.4rem 0.1rem !important;
    min-height: 50px !important;
  }

  .mobile-stat-value {
    font-size: 0.85rem !important;
  }

  .mobile-stat-label {
    font-size: 0.55rem !important;
  }

  .bl {
    padding: 1rem 0.75rem !important;
  }

  .bm {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.1rem !important;
  }

  .bn {
    font-size: 0.95rem !important;
  }

  .bo {
    font-size: 0.8rem !important;
  }

  .growth-summary {
    padding: 0.875rem 0.375rem !important;
    margin-top: 1rem !important;
    border-radius: 0.75rem !important;
  }

  .summary-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.375rem !important;
  }

  .summary-item {
    padding: 0.625rem 0.15rem !important;
    min-height: 90px !important;
  }

  .summary-value {
    font-size: 1.1rem !important;
  }

  .summary-title {
    font-size: 0.75rem !important;
  }

  .summary-description {
    font-size: 0.65rem !important;
    line-height: 1.1 !important;
  }

  body {
    font-size: 15px !important;
    line-height: 1.6 !important;
    -webkit-text-size-adjust: 100%;
  }

  .l,
  .container.mx-auto,
  .px-4,
  .sm\:px-6,
  .lg\:px-8 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .k {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-16,
  .py-12,
  .py-8 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .my-8,
  .my-6,
  .my-4 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  h1,
  .text-4xl,
  .text-3xl {
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
  }

  h2,
  .text-3xl {
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
  }

  h3,
  .text-2xl {
    font-size: 1.15rem !important;
  }

  p,
  .text-xl,
  .text-lg {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  header {
    height: 65px !important;
  }

  body {
    padding-top: 65px !important;
  }

  .ag {
    width: 130px !important;
    height: 50px !important;
  }

  .ai {
    width: 40px !important;
    height: 40px !important;
  }

  .av {
    height: 35vh !important;
    min-height: 200px !important;
    max-height: 250px !important;
  }

  .an {
    padding: 0.75rem 0 !important;
  }

  .ap {
    font-size: 1.3rem !important;
    margin-bottom: 0.75rem !important;
  }

  .aq {
    font-size: 0.85rem !important;
    margin-bottom: 1.25rem !important;
  }

  .ao .grid.grid-cols-2.gap-4.mb-8 {
    gap: 0.5rem !important;
    margin-bottom: 1.25rem !important;
  }

  .ao .grid.grid-cols-2.gap-4.mb-8 > div {
    padding: 0.625rem !important;
    min-height: 70px !important;
  }

  .ao .grid.grid-cols-2.gap-4.mb-8 .stats-counter {
    font-size: 1rem !important;
  }

  .btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
    min-height: 42px !important;
  }

  [data-section="about"] .btn.btn-white.active {
    min-width: 170px !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.9rem !important;
  }

  .mobile-category-item {
    width: 105px !important;
    padding: 0.625rem !important;
    min-height: 110px !important;
  }

  .mobile-category-icon {
    width: 35px !important;
    height: 35px !important;
  }

  .mobile-category-name {
    font-size: 0.75rem !important;
  }

  #categoryImageContainer {
    height: 180px !important;
    width: 100% !important;
    display: block !important;
    overflow: hidden !important;
  }

  #categoryMainImage,
  .category-main-image {
    object-fit: cover !important;
    object-position: center !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }

  .mobile-card {
    min-height: 300px !important;
  }

  .mobile-card-title {
    font-size: 0.9rem !important;
  }

  .ay {
    display: none !important;
  }

  * {
    max-width: 100vw !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .k {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .an {
    min-height: calc(90vh - 80px) !important;
  }

  .ap {
    font-size: 2.75rem !important;
  }

  .aq {
    font-size: 1.15rem !important;
  }

  .av {
    height: 55vh !important;
    max-height: 650px !important;
  }

  .bi {
    padding: 3rem 0 !important;
  }

  .bj {
    min-height: 200px !important;
    padding: 1.5rem !important;
  }

  #goals {
    padding: 3rem 0 !important;
  }

  .bk {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  .growth-summary {
    padding: 1.5rem !important;
    margin-top: 2rem !important;
  }

  .summary-item {
    min-height: 120px !important;
  }

  .summary-value {
    font-size: 2rem !important;
  }

  .summary-title {
    font-size: 1rem !important;
  }

  .summary-description {
    font-size: 0.85rem !important;
  }

  .grid.grid-cols-3.gap-4 {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .bi .grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .brands-swiper {
    padding: 0 40px;
  }

  .brands-swiper .swiper-slide {
    width: 260px !important;
  }

  .brand-card {
    min-height: 260px !important;
  }

  #categoryImageContainer {
    height: 350px !important;
  }

  #categoryMainImage,
  .category-main-image {
    object-fit: cover !important;
    object-position: center !important;
  }

  .mobile-category-item {
    width: 145px !important;
  }

  .timeline-split-item {
    min-height: 320px !important;
    gap: 3rem !important;
    margin-bottom: 5rem !important;
  }

  .timeline-image {
    height: 320px !important;
  }

  .timeline-content {
    min-height: 320px !important;
  }
}

@media (min-width: 768px) {
  #categoryImageContainer {
    height: 350px !important;
  }

  #categoryMainImage,
  .category-main-image {
    object-fit: cover !important;
    object-position: center !important;
  }

  .mobile-category-item {
    width: 145px !important;
    padding: 1.125rem !important;
  }

  .mobile-category-icon {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.25rem !important;
  }

  .mobile-category-name {
    font-size: 0.9rem !important;
  }
}

@media (min-width: 1024px) {
  .k {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .ap {
    font-size: 3.25rem !important;
  }

  .aq {
    font-size: 1.2rem !important;
  }

  .av {
    height: 60vh !important;
    max-height: 700px !important;
  }

  .bi {
    padding: 4rem 0 !important;
  }

  .bj {
    min-height: 220px !important;
    padding: 2rem !important;
  }

  #goals {
    padding: 4rem 0 !important;
  }

  .bk {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
  }

  .growth-summary {
    padding: 2rem 1.75rem !important;
    margin-top: 3rem !important;
  }

  .summary-item {
    min-height: 140px !important;
    padding: 1.25rem 0.75rem !important;
  }

  .summary-value {
    font-size: 2.5rem !important;
  }

  .summary-title {
    font-size: 1.1rem !important;
  }

  .summary-description {
    font-size: 0.95rem !important;
  }

  .mobile-category-slider,
  .mobile-category-dots,
  .mobile-stats-panel {
    display: none !important;
  }

  .desktop-category-list {
    display: block !important;
  }

  #categoryImageContainer {
    height: 420px !important;
  }

  #categoryMainImage,
  .category-main-image {
    object-fit: cover !important;
    object-position: center !important;
  }

  .mobile-only {
    display: none !important;
  }

  .desktop-only {
    display: block !important;
  }

  .timeline-split-item:nth-child(odd) .timeline-image {
    order: 1;
  }

  .timeline-split-item:nth-child(odd) .timeline-content {
    order: 2;
  }

  .timeline-split-item:nth-child(even) .timeline-image {
    order: 2;
  }

  .timeline-split-item:nth-child(even) .timeline-content {
    order: 1;
  }

  .desktop-timeline-split .timeline-image {
    height: 380px !important;
  }

  .desktop-timeline-split .timeline-image img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .timeline-split-item {
    min-height: 380px !important;
    gap: 4rem !important;
    margin-bottom: 7rem !important;
  }

  .timeline-content {
    min-height: 380px !important;
    padding: 2rem !important;
  }

  .brand-card {
    min-height: 300px !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .mobile-category-item:active {
    transform: scale(0.98) !important;
  }

  .btn:active,
  .mobile-branch-btn:active,
  .year-nav-btn:active {
    transform: scale(0.98) !important;
  }

  #stats .group.relative.overflow-hidden:hover {
    transform: none !important;
  }

  .bl:active {
    transform: translateY(-4px) !important;
  }
}

@media (max-width: 320px) and (max-height: 600px) {
  .an {
    padding: 0.5rem 0 !important;
    min-height: calc(100vh - 65px) !important;
  }

  .av {
    height: 35vh !important;
  }

  .mobile-card {
    min-height: 280px !important;
  }

  .bj {
    min-height: 160px !important;
  }

  .bl {
    min-height: auto !important;
    padding: 1rem !important;
  }
}

@media (max-width: 320px) and (orientation: portrait) {
  .ap {
    font-size: 1.25rem !important;
  }

  .ao .grid.grid-cols-2.gap-4.mb-8 > div {
    padding: 0.5rem !important;
  }

  .l {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

.mobile-category-item,
.desktop-category-list .space-y-2 > div {
  pointer-events: auto !important;
  cursor: pointer !important;
  user-select: none;
}

@media (max-width: 1023px) {
  .desktop-category-list {
    display: none;
  }

  .mobile-category-slider {
    display: flex !important;
  }
}

@media (min-width: 1024px) {
  .mobile-category-slider,
  .mobile-category-dots,
  .mobile-stats-panel {
    display: none;
  }

  .desktop-category-list {
    display: block !important;
  }
}

.mobile-category-slider {
  -webkit-overflow-scrolling: touch !important;
  scroll-behavior: smooth !important;
  scroll-padding: 0.5rem !important;
}

.mobile-category-slider-track {
  padding: 0 0.5rem !important;
}

@media (max-width: 480px) {
  body {
    overflow-x: hidden !important;
  }

  #products .l {
    overflow-x: hidden !important;
  }
}

html {
  scroll-behavior: smooth;
}

[dir="b"] {
  .left-auto {
    left: auto !important;
    right: 0 !important;
  }
  .right-auto {
    right: auto !important;
    left: 0 !important;
  }

  .text-shadow {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  .transform-origin-left {
    transform-origin: right center;
  }
  .transform-origin-right {
    transform-origin: left center;
  }
}

:lang(ar) {
  letter-spacing: 0 !important;
  word-spacing: normal !important;
}

:lang(en) {
  letter-spacing: -0.011em !important;
  word-spacing: 0.05em !important;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .l {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

@media (min-width: 1280px) {
  .l {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}
#goals .grid.md\:grid-cols-2.lg\:grid-cols-3 {
  grid-template-columns: repeat(2, 1fr) !important;
}

@media (min-width: 768px) {
  #goals .grid.md\:grid-cols-2.lg\:grid-cols-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  #goals .grid.md\:grid-cols-2.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (min-width: 768px) {
  #goals .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (min-width: 1024px) {
  #goals .grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  #goals .grid {
    gap: 0.5rem !important;
  }

  #goals .bg-white {
    padding: 0.75rem !important;
    min-height: 160px !important;
  }

  #goals .text-xl {
    font-size: 0.8rem !important;
  }

  #goals .text-gray-600 {
    font-size: 0.7rem !important;
  }
}
