/* CSS Variables */
:root {
  /* Colors */
  --primary: #1FA774;
  --secondary: #0F8F62;
  --accent: #A4D96C;
  --neutral-dark: #2B2F33;
  --neutral: #6B7280;
  --neutral-light: #F4F7F6;
  --white: #FFFFFF;

  /* Typography */
  --font-english: 'Inter', sans-serif;
  --font-arabic: 'Tajawal', sans-serif;

  /* Spacing */
  --container-padding: 1rem;
  --section-padding: 4rem 0;

  /* Transitions */
  --transition: all 0.3s ease;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* RTL Support */
[dir="rtl"] {
  --font-primary: var(--font-arabic);
}

[dir="ltr"] {
  --font-primary: var(--font-english);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--neutral);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-size: 1rem;
  gap: 0.5rem;
}

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

.btn--primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
}

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

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 0;
  gap: 2rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
}

.nav__logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav__brand-text {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__link {
  text-decoration: none;
  color: var(--neutral-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  text-align: center;
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

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

.lang-toggle {
  background: none;
  border: 1px solid var(--neutral);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.lang-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.nav__toggle {
  display: none;
  background: var(--primary);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  transition: var(--transition);
  padding: 0.75rem;
  border-radius: 8px;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 98, 124, 0.3);
}

.nav__toggle:hover {
  color: var(--white);
  background: var(--secondary);
  transform: scale(1.05);
}

/* Creative Mobile Toggle Animation */
.nav__toggle i {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.nav__toggle:hover i {
  transform: scale(1.1);
  color: var(--primary);
}

/* Mobile Toggle Active State */
.nav__toggle.active i {
  transform: rotate(180deg) scale(1.2);
  color: var(--primary);
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 98, 124, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 98, 124, 0.8), rgba(0, 77, 92, 0.6));
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  max-width: 800px;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--white);
  opacity: 0.9;
}

.hero__controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.hero__control {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero__control:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero__control--prev {
  left: 2rem;
}

.hero__control--next {
  right: 2rem;
}

.hero__indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.hero__indicator.active {
  background: var(--white);
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

/* Value Props */
.value-props {
  background: linear-gradient(180deg, var(--neutral-light) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.value-props__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  perspective: 1000px;
}

.value-prop {
  text-align: center;
  padding: 3.5rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2rem;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: float-card 6s ease-in-out infinite;
}

/* Stagger animation delays */
.value-prop:nth-child(1) {
  animation-delay: 0s;
}

.value-prop:nth-child(2) {
  animation-delay: 2s;
}

.value-prop:nth-child(3) {
  animation-delay: 4s;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.value-prop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 167, 116, 0.05), rgba(164, 217, 108, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.value-prop::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  background-size: 200% 100%;
  animation: gradient-slide 3s linear infinite;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes gradient-slide {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.value-prop:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 25px 50px rgba(31, 167, 116, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.05);
  background: var(--white);
  animation-play-state: paused;
}

.value-prop:hover::before {
  opacity: 1;
}

.value-prop:hover::after {
  transform: scaleX(1);
}

.value-prop__icon {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--primary);
  font-size: 2.5rem;
  box-shadow: 0 10px 25px rgba(31, 167, 116, 0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  border: 4px solid rgba(255, 255, 255, 0.8);
}

.value-prop__icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

.value-prop:hover .value-prop__icon {
  transform: scale(1.1) rotate(10deg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 15px 35px rgba(31, 167, 116, 0.3);
}

.value-prop:hover .value-prop__icon::before {
  opacity: 0;
}

.value-prop__title {
  color: var(--neutral-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.value-prop:hover .value-prop__title {
  color: var(--primary);
}

/* Sectors */
.sectors__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.sector-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.sector-card--featured {
  border: 2px solid var(--primary);
}

.sector-card__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 2;
}

.sector-card__image {
  height: 200px;
  overflow: hidden;
}

.sector-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.sector-card:hover .sector-card__image img {
  transform: scale(1.05);
}

.sector-card__content {
  padding: 1.5rem;
}

.sector-card__title {
  color: var(--neutral-dark);
  margin-bottom: 0.75rem;
}

.sector-card__desc {
  color: var(--neutral);
  margin-bottom: 1.5rem;
}

.sector-card__link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.sector-card__link:hover {
  gap: 0.75rem;
}

/* Stats */
.stats {
  background: var(--primary);
  color: var(--white);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.stat__label {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* CTA Strip */
.cta-strip {
  background: var(--accent);
  color: var(--neutral-dark);
  text-align: center;
}

.cta-strip__title {
  margin-bottom: 2rem;
  color: var(--neutral-dark);
}

/* Footer */
.footer {
  background: var(--neutral-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__title {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: var(--neutral);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer__bottom {
  border-top: 1px solid var(--neutral);
  padding-top: 1rem;
  text-align: center;
}

.footer__copyright {
  color: var(--neutral);
  margin-bottom: 0.5rem;
}

.footer__note {
  color: var(--neutral);
  font-size: 0.875rem;
}

/* WhatsApp Float */
/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 2rem;
  box-shadow: var(--shadow-medium);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  border-radius: 50%;
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 10px 25px rgba(31, 167, 116, 0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 98, 124, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 98, 124, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 98, 124, 0);
  }
}

/* WhatsApp Live Chat Popup */
.whatsapp-popup {
  position: fixed !important;
  bottom: 90px !important;
  right: 20px !important;
  left: auto !important;
  width: 300px !important;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #e5e7eb;
}

.whatsapp-popup.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.whatsapp-popup__content {
  padding: 0;
}

.whatsapp-popup__header {
  display: flex;
  align-items: center;
  padding: 16px;
  background: #25D366;
  border-radius: 12px 12px 0 0;
  color: white;
}

.whatsapp-popup__avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 18px;
}

.whatsapp-popup__info {
  flex: 1;
}

.whatsapp-popup__info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.whatsapp-popup__status {
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
}

.whatsapp-popup__status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.whatsapp-popup__close {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.whatsapp-popup__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.whatsapp-popup__message {
  padding: 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.whatsapp-popup__message p {
  margin: 0;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

.whatsapp-popup__actions {
  padding: 16px;
}

.whatsapp-popup__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 14px;
}

.whatsapp-popup__btn:hover {
  background: #128C7E;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.whatsapp-popup__btn i {
  margin-right: 8px;
  font-size: 16px;
}

/* RTL Support for WhatsApp Popup */
[dir="rtl"] .whatsapp-popup {
  right: auto !important;
  left: 20px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-popup {
    width: calc(100vw - 40px);
    right: 20px;
    left: 20px;
    bottom: 90px;
    transform: translateY(20px);
  }

  .whatsapp-popup.show {
    transform: translateY(0);
  }

  /* RTL Mobile Support */
  [dir="rtl"] .whatsapp-popup {
    right: 20px;
    left: 20px;
  }
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100px);
  transition: var(--transition);
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {

  /* Force mobile layout */
  .nav__menu {
    display: none !important;
  }

  .nav__menu.active {
    display: flex !important;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, var(--neutral-light) 100%);
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    overflow-y: auto;
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--primary);
    border-radius: 0 0 0 20px;
  }

  .nav__menu.active {
    right: 0;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  /* Mobile menu overlay */
  .nav__menu.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .nav__list {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    width: 100%;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 98, 124, 0.2);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: center;
  }

  .nav__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 98, 124, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .nav__link:hover::before {
    left: 100%;
  }

  .nav__link:hover {
    background: rgba(0, 98, 124, 0.1);
    border-color: var(--primary);
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 98, 124, 0.3);
    color: var(--primary);
  }

  .nav__link.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 98, 124, 0.4);
    transform: scale(1.05);
  }

  .nav__actions {
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 98, 124, 0.1);
  }

  .lang-toggle {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 98, 124, 0.2);
    transition: all 0.3s ease;
  }

  .lang-toggle:hover {
    background: rgba(0, 98, 124, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 98, 124, 0.2);
  }

  .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    border: 2px solid transparent;
  }

  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }

  .btn:hover::before {
    left: 100%;
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 98, 124, 0.3);
  }

  .nav__toggle {
    display: block !important;
    position: relative;
    z-index: 1001;
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 8px !important;
    padding: 0.75rem !important;
    box-shadow: 0 4px 15px rgba(0, 98, 124, 0.3) !important;
  }

  .nav__toggle:hover {
    background: var(--secondary) !important;
    color: var(--white) !important;
    transform: scale(1.05) !important;
  }

  /* Mobile Menu Header */
  .nav__menu::after {
    content: 'Smart Global Link';
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    right: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 98, 124, 0.1);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Mobile Menu Scrollbar */
  .nav__menu::-webkit-scrollbar {
    width: 4px;
  }

  .nav__menu::-webkit-scrollbar-track {
    background: rgba(0, 98, 124, 0.1);
    border-radius: 2px;
  }

  .nav__menu::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
  }

  .nav__menu::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
  }

  /* Mobile Menu Animation Stagger */
  .nav__item {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.5s ease forwards;
  }

  .nav__item:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav__item:nth-child(2) {
    animation-delay: 0.2s;
  }

  .nav__item:nth-child(3) {
    animation-delay: 0.3s;
  }

  .nav__item:nth-child(4) {
    animation-delay: 0.4s;
  }

  .nav__item:nth-child(5) {
    animation-delay: 0.5s;
  }

  .nav__item:nth-child(6) {
    animation-delay: 0.6s;
  }

  @keyframes slideInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Mobile Menu Close Animation */
  .nav__menu:not(.active) .nav__item {
    animation: slideOutRight 0.3s ease forwards;
  }

  @keyframes slideOutRight {
    to {
      opacity: 0;
      transform: translateX(50px);
    }
  }

  /* Extra Small Screens */
  @media (max-width: 480px) {
    .nav__menu {
      width: 95%;
      max-width: none;
      padding: 1.5rem 1rem;
    }

    .nav__link {
      padding: 0.875rem 1.25rem;
      font-size: 0.95rem;
    }

    .btn {
      padding: 0.875rem 1.25rem;
      font-size: 0.95rem;
    }

    .lang-toggle {
      padding: 0.875rem;
      font-size: 0.95rem;
    }
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1.125rem;
  }

  .hero__control {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hero__control--prev {
    left: 1rem;
  }

  .hero__control--next {
    right: 1rem;
  }

  .value-props__grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .sticky-cta {
    left: 1rem;
    bottom: 1rem;
  }
}

/* RTL Styles */
[dir="rtl"] .hero__control--prev {
  right: 2rem;
  left: auto;
}

[dir="rtl"] .hero__control--next {
  left: 2rem;
  right: auto;
}

[dir="rtl"] .sector-card__tag {
  right: auto;
  left: 1rem;
}

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 2rem;
}

[dir="rtl"] .sticky-cta {
  left: auto;
  right: 2rem;
}

@media (max-width: 768px) {
  [dir="rtl"] .hero__control--prev {
    right: 1rem;
  }

  [dir="rtl"] .hero__control--next {
    left: 1rem;
  }

  [dir="rtl"] .whatsapp-float {
    left: 1rem;
  }

  [dir="rtl"] .sticky-cta {
    right: 1rem;
  }
}

/* AOS Animation Overrides */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Focus States for Accessibility */
.btn:focus,
.nav__link:focus,
.lang-toggle:focus,
.hero__control:focus,
.hero__indicator:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Page Banner */
.page-banner {
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
  margin-top: 80px;
}

.page-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 98, 124, 0.8), rgba(0, 77, 92, 0.6));
}

.page-banner__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.page-banner__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb span {
  opacity: 0.7;
}

/* About Content */
.about-content__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-content__title {
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
}

.about-content__description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--neutral);
  margin-bottom: 2rem;
}

.about-content__subtitle {
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
}

.about-content__list {
  list-style: none;
}

.about-content__item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--neutral-light);
  color: var(--neutral);
  position: relative;
  padding-left: 1.5rem;
}

.about-content__item:last-child {
  border-bottom: none;
}

.about-content__item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Mission & Vision */
.mission-vision {
  background: var(--neutral-light);
}

.mission-vision__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.mission-vision__card {
  background: var(--white);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition);
}

.mission-vision__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.mission-vision__icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2.25rem;
  box-shadow: 0 15px 30px rgba(31, 167, 116, 0.25);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.mission-vision__card:hover .mission-vision__icon {
  border-radius: 50%;
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 20px 40px rgba(31, 167, 116, 0.35);
}

.mission-vision__title {
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.mission-vision__description {
  color: var(--neutral);
  line-height: 1.7;
}

/* Why Choose Us */
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 1rem 0;
}

@media (min-width: 1024px) {
  .why-choose__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-choose__item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.why-choose__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(164, 217, 108, 0.3);
  /* Accent color */
}

.why-choose__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(164, 217, 108, 0.25);
  transition: all 0.5s ease;
}

.why-choose__item:hover .why-choose__icon {
  border-radius: 50%;
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 15px 30px rgba(164, 217, 108, 0.35);
}

.why-choose__title {
  color: var(--neutral-dark);
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.why-choose__description {
  color: var(--neutral);
  line-height: 1.7;
}

/* Sectors Page Styles */
.sector-detail {
  padding: 4rem 0;
}

.sector-detail:not(:last-child) {
  border-bottom: 1px solid var(--neutral-light);
}

.sector-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sector-detail__grid--reverse {
  direction: rtl;
}

.sector-detail__grid--reverse>* {
  direction: ltr;
}

.sector-detail__image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.sector-detail__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.sector-detail__content h2 {
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
}

.sector-detail__content p {
  color: var(--neutral);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.product-groups {
  margin: 2rem 0;
}

.product-group {
  margin-bottom: 2rem;
}

.product-group__title {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.product-group__items {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.product-group__item {
  padding: 0.5rem 0;
  color: var(--neutral);
  position: relative;
  padding-left: 1.5rem;
}

.product-group__item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Services Page Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding: 1rem 0;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Service Process */
.service-process {
  background: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(31, 167, 116, 0.2);
}

.process-step__number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(31, 167, 116, 0.3);
  transition: all 0.5s ease;
}

.process-step:hover .process-step__number {
  border-radius: 50%;
  transform: rotate(360deg);
}

.process-step__content {
  flex: 1;
}

.process-step__title {
  color: var(--neutral-dark);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.process-step__description {
  color: var(--neutral);
  line-height: 1.6;
  margin: 0;
}

.service-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.service-card:target {
  animation: pulse-card 2s infinite;
  border: 2px solid var(--primary);
}

@keyframes pulse-card {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 167, 116, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(31, 167, 116, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(31, 167, 116, 0);
  }
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--white);
  font-size: 2.25rem;
  box-shadow: 0 15px 30px rgba(31, 167, 116, 0.25);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-card__icon {
  border-radius: 50%;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 40px rgba(31, 167, 116, 0.35);
}

.service-card__icon i {
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__icon i {
  transform: scale(1.2);
}

.service-card__title {
  color: var(--neutral-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.service-card:hover .service-card__title {
  color: var(--primary);
}

.service-card__description {
  color: var(--neutral);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* Projects Gallery */
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Project Stats */
.project-stats {
  background: var(--neutral-light);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.testimonial__content {
  margin-bottom: 2rem;
}

.testimonial__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--neutral);
  font-style: italic;
  margin: 0;
  position: relative;
}

.testimonial__text::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-family: serif;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial__name {
  color: var(--neutral-dark);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.testimonial__position {
  color: var(--neutral);
  font-size: 0.875rem;
  margin: 0;
}

.project-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  cursor: pointer;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.project-item__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.project-item:hover .project-item__overlay {
  transform: translateY(0);
}

.project-item__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-item__description {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Contact Form */
/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.contact-form__title {
  color: var(--neutral-dark);
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Info */
.contact-info {
  background: transparent;
  padding: 1rem;
}

.contact-info__title {
  color: var(--neutral-dark);
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.contact-info__item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border-color: rgba(31, 167, 116, 0.1);
}

.contact-info__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(31, 167, 116, 0.2);
  transition: all 0.5s ease;
}

.contact-info__item:hover .contact-info__icon {
  border-radius: 50%;
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(31, 167, 116, 0.3);
}

.contact-info__content {
  flex: 1;
}

.contact-info__content h3 {
  color: var(--neutral-dark);
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: 1.125rem;
}

.contact-info__content p,
.contact-info__content a {
  color: var(--neutral);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.contact-info__hours {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, #f8fafc, #edf2f7);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-info__hours-title {
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  border-bottom: 2px solid rgba(31, 167, 116, 0.1);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.contact-info__hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info__hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--neutral-dark);
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.contact-info__hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info__hours-item span:first-child {
  font-weight: 500;
}

/* Map Section */
.map-section {
  margin: 0;
  padding: 0 0 4rem 0;
}

.map-container {
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 4px solid var(--white);
  height: 450px;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Success Message */
.success-message {
  background: linear-gradient(to right, var(--secondary), var(--primary));
  color: var(--white);
  padding: 1.25rem;
  border-radius: 1rem;
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(31, 167, 116, 0.2);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--neutral-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid transparent;
  background-color: var(--neutral-light);
  border-radius: 1rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--neutral-dark);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  background-color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(31, 167, 116, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  border-radius: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(31, 167, 116, 0.3);
  position: relative;
  overflow: hidden;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(31, 167, 116, 0.4);
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
}

.form-submit:hover::after {
  transform: translateX(100%);
  transition: transform 0.5s ease;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .page-banner__title {
    font-size: 2rem;
  }

  .about-content__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-vision__grid {
    grid-template-columns: 1fr;
  }

  .mission-vision__card {
    padding: 2rem;
  }

  .sector-detail__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sector-detail__image img {
    height: 250px;
  }

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

  .projects-gallery {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-info {
    padding: 2rem;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

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

/* RTL Adjustments for New Pages */
[dir="rtl"] .about-content__item {
  padding-left: 0;
  padding-right: 1.5rem;
}

[dir="rtl"] .about-content__item::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .product-group__item {
  padding-left: 0;
  padding-right: 1.5rem;
}

[dir="rtl"] .product-group__item::before {
  left: auto;
  right: 0;
}

/* Print Styles */
@media print {

  .header,
  .whatsapp-float,
  .sticky-cta,
  .hero__controls,
  .hero__indicators {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 50vh;
  }

  .hero__slide {
    position: static;
    opacity: 1;
  }

  .page-banner {
    margin-top: 0;
  }
}

/* ========================================
   DESKTOP NAVIGATION TEXT IMPROVEMENTS
   ======================================== */

@media (min-width: 769px) {
  .nav__link {
    white-space: nowrap !important;
    text-align: center !important;
    min-width: fit-content !important;
  }

  .nav__list {
    gap: 1.5rem !important;
  }

  .nav__menu {
    gap: 1.5rem !important;
  }
}

/* ========================================
   INNOVATIVE MOBILE NAVIGATION STYLES
   ======================================== */

/* Hide mobile navigation on desktop */
.mobile-nav-toggle,
.mobile-nav {
  display: none !important;
}

@media (max-width: 768px) {

  /* Show mobile navigation only on mobile */
  .mobile-nav-toggle,
  .mobile-nav {
    display: block !important;
  }

  /* Show mobile toggle button in center under logo with white protrusion */
  .mobile-nav-toggle {
    display: block !important;
    background: linear-gradient(135deg, #00627c 0%, #4a9ba8 50%, #00627c 100%) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite !important;
    color: white !important;
    border-radius: 50% !important;
    padding: 12px !important;
    box-shadow:
      0 8px 25px rgba(0, 98, 124, 0.4),
      0 4px 15px rgba(74, 155, 168, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 0 3px rgba(255, 255, 255, 0.8) !important;
    position: fixed !important;
    top: 80px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1001 !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    cursor: pointer !important;
    font-size: 18px !important;
  }

  .mobile-nav-toggle i {
    transition: transform 0.3s ease !important;
  }

  .mobile-nav-toggle:hover {
    transform: translateX(-50%) scale(1.1) !important;
    box-shadow:
      0 12px 35px rgba(0, 98, 124, 0.6),
      0 8px 25px rgba(74, 155, 168, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      0 0 0 4px rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
  }

  .mobile-nav-toggle:active {
    transform: translateX(-50%) scale(0.95) !important;
  }

  .mobile-nav-toggle::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent) !important;
    transition: left 0.5s ease !important;
    border-radius: 50% !important;
    z-index: 1 !important;
  }

  .mobile-nav-toggle:hover::before {
    left: 100% !important;
  }

  .mobile-nav-toggle i {
    position: relative !important;
    z-index: 2 !important;
  }

  .mobile-nav-toggle.active {
    background: linear-gradient(135deg, #4a9ba8 0%, #00627c 50%, #4a9ba8 100%) !important;
    animation: pulseGlow 2s ease-in-out infinite !important;
    transform: translateX(-50%) scale(1.05) !important;
    box-shadow:
      0 8px 25px rgba(0, 98, 124, 0.6),
      0 4px 15px rgba(74, 155, 168, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      0 0 20px rgba(74, 155, 168, 0.4),
      0 0 0 4px rgba(255, 255, 255, 0.9) !important;
  }

  .mobile-nav-toggle.active i {
    transform: rotate(180deg) !important;
    transition: transform 0.3s ease !important;
  }

  .mobile-nav-toggle.active:hover {
    transform: translateX(-50%) scale(1.15) !important;
    box-shadow:
      0 15px 40px rgba(0, 98, 124, 0.7),
      0 10px 30px rgba(74, 155, 168, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      0 0 30px rgba(74, 155, 168, 0.6),
      0 0 0 5px rgba(255, 255, 255, 0.95) !important;
  }

  .mobile-nav-toggle.active:active {
    transform: translateX(-50%) scale(0.95) !important;
  }

  /* Mobile Navigation Bar - Pill Style */
  .mobile-nav {
    display: none !important;
  }

  .mobile-nav.show {
    display: flex !important;
    position: fixed !important;
    top: 150px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-100px) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 25px !important;
    padding: 12px 8px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    z-index: 1000 !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    flex-direction: row !important;
    gap: 8px !important;
    width: 90% !important;
    max-width: 400px !important;
    animation: slideInFromTop 0.3s ease-out !important;
  }

  .mobile-nav.show {
    transform: translateX(-50%) translateY(0) !important;
  }

  .mobile-nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 6px !important;
    border-radius: 15px !important;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
    min-width: 45px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    flex: 1 !important;
  }

  .mobile-nav-item.active {
    background: #00627c !important;
    color: white !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 15px rgba(0, 98, 124, 0.3) !important;
  }

  .mobile-nav-item i {
    font-size: 16px !important;
    margin-bottom: 2px !important;
  }

  .mobile-nav-item span {
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
  }

  .mobile-nav-item:hover {
    background: rgba(0, 98, 124, 0.3) !important;
    color: white !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(0, 98, 124, 0.3) !important;
  }

  .mobile-nav-item.active:hover {
    background: #004d5c !important;
    color: white !important;
    transform: scale(1.1) !important;
  }

  /* Mobile Language Toggle Button */
  .mobile-lang-toggle {
    background: linear-gradient(135deg, #4a9ba8 0%, #00627c 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border-radius: 15px !important;
    padding: 8px 6px !important;
    min-width: 45px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    text-decoration: none !important;
  }

  .mobile-lang-toggle:hover {
    background: linear-gradient(135deg, #00627c 0%, #4a9ba8 100%) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(0, 98, 124, 0.4) !important;
  }

  .mobile-lang-toggle:active {
    transform: scale(0.95) !important;
  }

  .mobile-lang-toggle i {
    font-size: 16px !important;
    margin-bottom: 2px !important;
  }

  .mobile-lang-toggle span {
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
  }
}

/* Keyframes for Mobile Navigation Animations */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(0, 98, 124, 0.4), 0 4px 15px rgba(74, 155, 168, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0 8px 25px rgba(0, 98, 124, 0.6), 0 4px 15px rgba(74, 155, 168, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  100% {
    box-shadow: 0 8px 25px rgba(0, 98, 124, 0.4), 0 4px 15px rgba(74, 155, 168, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow:
      0 8px 25px rgba(0, 98, 124, 0.4),
      0 4px 15px rgba(74, 155, 168, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow:
      0 8px 25px rgba(0, 98, 124, 0.6),
      0 4px 15px rgba(74, 155, 168, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      0 0 20px rgba(74, 155, 168, 0.4);
  }

  100% {
    box-shadow:
      0 8px 25px rgba(0, 98, 124, 0.4),
      0 4px 15px rgba(74, 155, 168, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes slideInFromTop {
  from {
    transform: translateX(-50%) translateY(-100px);
    opacity: 0;
  }

  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}