/* =================== RESET & BASE =================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
:root {
  --primary: #1a5490;
  --primary-light: #2670c4;
  --primary-dark: #0d3a6b;
  --accent: #d4af37;
  --accent-light: #f4d46f;
  --accent-dark: #b8941f;
  --dark-bg: #FFFFFF;
  --dark-secondary: #f5f7fa;
  --white: #FFFFFF;
  --text-light: #2c3e50;
  --text-muted: #7f8c8d;
  --shadow-primary: 0 10px 40px rgba(26, 84, 144, 0.12);
  --shadow-accent: 0 8px 32px rgba(212, 175, 55, 0.15);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.08);
  --gradient-primary: linear-gradient(135deg, #1a5490 0%, #2670c4 100%);
  --gradient-accent: linear-gradient(135deg, #d4af37 0%, #f4d46f 100%);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* =================== SITE LOADER =================== */
.site-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.site-loader__inner {
  text-align: center;
}
.site-loader__logo {
  width: 160px;
  height: auto;
  margin: 0 auto 18px;
  background-image: url('/assets/images/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.site-loader__spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.08);
  border-top-color: var(--primary);
  animation: loader-spin 1s linear infinite;
  margin: 0 auto;
}
.site-loader--hide { opacity: 0; visibility: hidden; pointer-events: none; }

@keyframes loader-spin { to { transform: rotate(360deg); } }

/* About page paragraph items */
.about-paragraph-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

/* =================== LAYOUT UTILITIES =================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero .container .hero-content {
  position: relative !important;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin: 0 auto 1rem;
  position: relative;
  display: block;
  padding: 1.5rem 3rem;
  background: linear-gradient(to right, transparent, rgba(26, 84, 144, 0.05), transparent);
  clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.3;
}

.section-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  opacity: 0.15;
}

[dir="rtl"] .section-title::before {
  left: auto;
  right: 0;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  opacity: 0.85;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 4rem;
}

/* =================== NAVBAR =================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  /*background: rgba(63, 108, 62, 0.95);*/
  backdrop-filter: blur(20px);
  z-index: 10000;
  padding: 1.8rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 1.2rem 0;
  background: white;
  /*background: rgba(63, 108, 62, 0.98);*/
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
}

.mobile-header {
  display: none;
}

.mobile-menu {
  display: none;
}

/* Wrapper للوجو واللينكات في المنتصف */
.nav-center-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Logo في المنتصف */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin: 0.5rem 0;
  flex-shrink: 0;
}

/* Nav Links على الجانبين */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  white-space: nowrap;
}

.nav-left, .nav-right {
  z-index: 1100;
}

/* زرار اللغة على الجنب */
.desktop-lang {
  margin-left: auto;
  z-index: 1100;
}

[dir="ltr"] .desktop-lang {
  margin-left: 0;
  margin-right: auto;
}

.logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-link:hover .logo-text {
  color: var(--accent);
}

.logo-img {
  height: 120px;
  width: auto;
  padding: 0;
  border-radius: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img:hover {
  transform: scale(1.05) rotate(2deg);
}

.logo-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  transition: color 0.3s ease;
  text-align: center;
  max-width: 180px;
  white-space: nowrap;
}

[dir="ltr"] .logo-text {
  font-family: 'Tajawal', sans-serif;
}

.logo-text .company-en {
  font-size: 0.65rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu a {
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: white;
  color: var(--primary);
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
  min-width: 70px;
  overflow: visible;
}

.lang-switcher::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 50px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.lang-switcher::after {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  opacity: 0;
  transition: all 0.4s ease;
}

.lang-switcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 84, 144, 0.35);
  border-color: transparent;
  color: white;
}

.lang-switcher:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.lang-switcher:hover::after {
  right: -5px;
  opacity: 1;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle {
  z-index: 1101;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =================== HERO SECTION =================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  background: var(--gradient-primary);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 84, 144, 0.5) 0%, rgba(13, 58, 107, 0.6) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M321.39 56.44c58-10.79 114.16-30.13 172-41.86 82.39-16.72 168.19-17.73 250.45-.39C823.78 31 906.67 72 985.66 92.83c70.05 18.48 146.53 26.09 214.34 3V0H0v27.35a600.21 600.21 0 00321.39 29.09z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: cover;
  transform: rotate(180deg);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,0.3), transparent),
    radial-gradient(3px 3px at 50% 50%, rgba(255,255,255,0.2), transparent),
    radial-gradient(2px 2px at 80% 10%, rgba(255,255,255,0.3), transparent),
    radial-gradient(3px 3px at 90% 60%, rgba(255,255,255,0.2), transparent);
  background-size: 200% 200%;
  animation: particles 30s ease-in-out infinite;
  z-index: 2;
}

@keyframes particles {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

.hero-content {
  text-align: center;
  z-index: 3;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.3);
  animation: pulse-hexagon 3s ease-in-out infinite;
  position: relative;
}

.hero-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: 8px;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hero-icon-wrapper i {
  font-size: 3rem;
  color: white;
  z-index: 1;
}

@keyframes pulse-hexagon {
  0%, 100% { 
    transform: scale(1) rotate(0deg); 
    box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
  }
  50% { 
    transform: scale(1.05) rotate(180deg); 
    box-shadow: 0 0 0 20px rgba(255,255,255,0);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  padding: 0.8rem 2rem;
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0% 50%);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 60%;
  background: var(--accent);
  opacity: 0.6;
}

[dir="rtl"] .hero-badge::before {
  left: auto;
  right: 0;
}

.hero-title {
  font-size: 5rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.hero-description {
  font-size: 1.2rem;
  color: #FFFFFF;
  opacity: 0.95;
  line-height: 1.9;
  margin-bottom: 3rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: white;
  color: var(--primary);
  padding: 1.1rem 2.8rem;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: none;
  position: relative;
  overflow: visible;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--accent);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
  z-index: -1;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover::before {
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 1.1rem 2.8rem;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  transform: skewX(-5deg);
  overflow: visible;
}

.btn-secondary > * {
  transform: skewX(5deg);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid white;
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -2;
}

[dir="rtl"] .btn-secondary::after {
  transform-origin: right;
}

.btn-secondary:hover::after {
  transform: scaleX(1);
}

.btn-secondary:hover {
  color: var(--primary);
  transform: translateY(-3px) skewX(-5deg);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

/* =================== HIGHLIGHTS SECTION =================== */
.highlights {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--dark-bg) 100%);
  position: relative;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.highlight-card {
  background: rgba(26, 39, 68, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.highlight-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.highlight-card::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.15;
  transition: all 0.5s ease;
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-card:hover::after {
  transform: rotate(90deg);
  opacity: 0.3;
}

.highlight-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.highlight-icon {
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s ease;
}

.highlight-card p{
  color: var(--white) !important;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.15) rotate(5deg);
}

.highlight-card h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.highlight-card p {
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.6;
}

/* =================== WHAT SETS US APART SECTION =================== */
.what-sets-us-apart {
  background-image: url('/assets/images/wheat-quality-3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 5rem 0;
  margin: 4rem 0;
}

.what-sets-us-apart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.92) 0%, rgba(107, 85, 53, 0.88) 100%);
  backdrop-filter: blur(2px);
}

.what-sets-us-apart .container {
  position: relative;
  z-index: 2;
}

.what-sets-us-apart .section-title {
  color: #FFFFFF;
  margin-bottom: 3rem;
}

.distinction-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.distinction-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.4s ease;
}

.distinction-icon i {
  font-size: 1.8rem;
  color: white;
}

.distinction-item:hover .distinction-icon {
  transform: scale(1.1) rotate(45deg);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.distinction-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: visible;
  transform: skewY(-2deg);
}

.distinction-item > * {
  transform: skewY(2deg);
}

.distinction-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

[dir="rtl"] .distinction-item::before {
  left: auto;
  right: 0;
}

.distinction-item:hover::before {
  transform: scaleY(1);
}

.distinction-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-10px) skewY(-2deg) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[dir="rtl"] .distinction-item:hover {
  transform: translateX(10px) skewY(-2deg) scale(1.02);
}

.distinction-item h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.distinction-item p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* =================== VIDEO SECTION =================== */
.video-section {
  background: var(--dark-bg);
  padding: 6rem 0;
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* =================== PRODUCTS PAGE =================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background: rgba(232, 215, 174, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: visible;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

.product-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-primary);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.2;
  transition: all 0.5s ease;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover::after {
  transform: rotate(360deg);
  opacity: 0.4;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.3);
}

.product-image {
  width: 100%;
  height: 70%;
  background: linear-gradient(135deg, var(--dark-secondary), var(--dark-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.product-content {
  padding: 2rem;
}

.product-category {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary);
  padding: 0.4rem 1rem;
  clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0% 50%);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.product-category::before {
  content: '';\n  position: absolute;\n  left: 8px;\n  top: 50%;\n  transform: translateY(-50%);\n  width: 4px;\n  height: 50%;\n  background: var(--accent);\n  opacity: 0.6;\n}\n\n[dir=\"rtl\"] .product-category::before {\n  left: auto;\n  right: 8px;\n}\n\n.product-card:hover .product-category {\n  background: var(--primary);\n  color: white;\n}

.product-content h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* =================== ABOUT PAGE =================== */
.about-intro {
  background: rgba(248, 248, 248, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 111, 71, 0.2);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  padding: 3rem;
  margin-bottom: 4rem;
  line-height: 2;
  position: relative;
}

.about-intro::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), transparent);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: 0.15;
}

[dir="rtl"] .about-intro {
  clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
}

[dir="rtl"] .about-intro::before {
  right: auto;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.about-intro p {
  font-size: 1.15rem;
  color: var(--text-light);
  opacity: 0.9;
}

.factories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.factory-card {
  background: rgba(26, 39, 68, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem;
  position: relative;
  transition: all 0.4s ease;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.factory-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.factory-card:hover::before {
  opacity: 1;
}

.factory-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
  border-color: transparent;
}

.factory-card h4 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.factory-card p {
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.7;
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin: 4rem 0;
}

.vm-card {
  background: rgba(26, 39, 68, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 35px), calc(100% - 35px) 100%, 0 100%);
}

.vm-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, transparent, var(--accent));
  opacity: 0.1;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: all 0.4s ease;
}

[dir="rtl"] .vm-card::before {
  right: auto;
  left: 0;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.vm-card:hover::before {
  width: 150px;
  height: 150px;
  opacity: 0.2;
}

.vm-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.vm-card h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.vm-card p {
  color: var(--text-light);
  opacity: 0.9;
  line-height: 1.9;
  font-size: 1.05rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(26, 39, 68, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
  transition: height 0.4s ease;
}

[dir="rtl"] .value-card::after {
  left: auto;
  right: 0;
}

.value-card:hover::after {
  height: 100%;
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.value-card h4 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.value-card p {
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.7;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.production-card {
  background: rgba(26, 39, 68, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.production-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--accent), var(--primary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.production-card:hover::before {
  transform: scaleX(1);
}

.production-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.production-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: block;
}

.production-card h4 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.production-card p {
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.6;
}

/* =================== VALUES DETAILED SECTION =================== */
.values-detailed {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.value-detailed-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(90, 37, 4, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.value-detailed-item:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.value-detailed-item.reverse {
  grid-template-columns: 1fr 1fr;
}

.value-detailed-item.reverse .value-image {
  order: 2;
}

.value-detailed-item.reverse .value-content {
  order: 1;
}

.value-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.value-detailed-item:hover .value-image img {
  transform: scale(1.1);
}

.value-content {
  padding: 1rem;
}

.value-content h3 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.value-content p {
  color: var(--text-light);
  opacity: 0.9;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Responsive - Stack on Mobile */
@media (max-width: 768px) {
  .value-detailed-item,
  .value-detailed-item.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-detailed-item.reverse .value-image,
  .value-detailed-item.reverse .value-content {
    order: unset;
  }
  
  .value-image {
    height: 250px;
  }
  
  .value-content h3 {
    font-size: 1.5rem;
  }
  
  .value-content p {
    font-size: 1rem;
  }
}

/* =================== CONTACT PAGE =================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  background: rgba(232, 215, 174, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 111, 71, 0.3);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
  padding: 3rem;
  position: relative;
}

.contact-info::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent, var(--accent));
  opacity: 0.15;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

[dir="rtl"] .contact-info {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

[dir="rtl"] .contact-info::before {
  right: auto;
  left: 0;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.contact-info h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.info-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

[dir="rtl"] .info-item {
  padding-left: 0;
  padding-right: 1rem;
}

[dir="rtl"] .info-item::before {
  left: auto;
  right: 0;
}

.info-item:hover::before {
  transform: scaleY(1);
}

.info-item:hover {
  transform: translateX(8px);
}

[dir="rtl"] .info-item:hover {
  transform: translateX(-8px);
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.info-icon {
  font-size: 1.8rem;
  color: var(--primary);
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 84, 144, 0.1);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.info-content h4 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.info-content p,
.info-content a {
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-content a:hover {
  color: var(--primary);
  opacity: 1;
}

.contact-form {
  background: rgba(232, 215, 174, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 111, 71, 0.3);
  clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
  padding: 3rem;
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.1;
}

.contact-form h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  color: var(--accent);
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(90, 37, 4, 0.1);
  border: 1px solid rgba(203, 179, 167, 0.3);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  padding: 1rem 1.5rem;
  color: var(--text-light);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 85, 53, 0.5);
}

/* =================== FOOTER =================== */
.footer {
  background: linear-gradient(180deg, #F8F8F8 0%, #E8D7AE 100%);
  border-top: 1px solid rgba(139, 111, 71, 0.3);
  padding: 3rem 0 1.5rem;
  margin-top: 6rem;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  height: 120px;
  margin: 0 auto 1.5rem;
}

.footer-text {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-subtext {
  color: var(--text-light);
  opacity: 0.7;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark-bg);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  color: var(--text-light);
  opacity: 0.6;
  font-size: 0.9rem;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0;
  }
  
  /* إخفاء Desktop Navigation */
  .desktop-nav {
    display: none !important;
  }
  
  .desktop-lang {
    display: none !important;
  }
  
  /* عرض Mobile Header */
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  /* Logo على الجنب في الموبايل */
  .mobile-header .logo {
    flex-direction: row;
    gap: 0.8rem;
    margin: 0;
  }
  
  .logo-img {
    height: 90px;
  }
  
  .logo-text {
    font-size: 0.8rem;
    max-width: 160px;
    text-align: right;
  }
  
  /* زرار اللغة في الموبايل */
  .mobile-header .lang-wrapper {
    margin: 0;
  }
  
  .mobile-header .lang-switcher {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    min-width: 60px;
  }
  
  /* Burger Menu */
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  /* Mobile Menu */
  .mobile-menu {
    display: block;
    position: fixed;
    top: 90px;
    right: -100%;
    background: white;
    backdrop-filter: blur(20px);
    width: 100%;
    height: calc(100vh - 90px);
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  .mobile-menu ul {
    list-style: none;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .mobile-menu a {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.3rem;
    text-align: center;
    display: block;
    padding: 1rem;
    transition: all 0.3s ease;
  }
  
  .mobile-menu a:hover {
    color: var(--primary);
    background: var(--gray-100);
    border-radius: 8px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .highlights-grid,
  .products-grid,
  .factories-grid,
  .values-grid,
  .production-grid {
    grid-template-columns: 1fr;
  }
  
  .vision-mission {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .navbar.scrolled{
      background:white !important;
    }
  .navbar{
      padding:0;
      background:white;
  }
  .container {
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .logo-img {
    height: 90px;
    background:transparent;
  }
  
  .logo-text .company-ar {
    font-size: 0.9rem;
  }
  
  .logo-text .company-en {
    font-size: 0.55rem;
  }
}

/* =================== PRODUCTS PAGE REDESIGN =================== */
/* Products Hero */
.products-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #0d3a6b 100%);
  padding-top: 100px;
}

.products-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.products-hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.products-hero-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

.products-hero-icon i {
  font-size: 4rem;
  color: white;
}

.products-hero h1 {
  font-size: 4rem;
  color: white;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.products-hero p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Products Navigation */
.products-nav-section {
  background: white;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 90px;
  z-index: 999;
}

.products-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
}

.products-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
}

.products-nav-item i {
  font-size: 1.8rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.products-nav-item:hover,
.products-nav-item.active {
  color: var(--primary);
  background: rgba(26, 84, 144, 0.05);
  border-bottom-color: var(--accent);
}

.products-nav-item:hover i {
  transform: scale(1.2);
  color: var(--accent);
}

/* Products Content */
.products-content-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 5rem 0;
}

.product-category-wrapper {
  margin-bottom: 6rem;
  scroll-margin-top: 180px;
}

.product-category-block {
  margin-bottom: 4rem;
}

.category-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}

.category-main-title {
  font-size: 3rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.category-main-title i {
  color: var(--accent);
  font-size: 2.5rem;
}

.category-main-desc {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
}

/* Products Grid */
.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

.product-card-new {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26, 84, 144, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card-new:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.2);
}

.product-card-inner {
  position: relative;
}

.product-image-new {
  height: 300px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.product-image-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card-new:hover .product-image-new img {
  transform: scale(1.15);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 84, 144, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.product-card-new:hover .product-overlay {
  opacity: 1;
}

.product-badge {
  background: var(--accent);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.product-card-new:hover .product-badge {
  transform: translateY(0);
}

.product-details-new {
  padding: 2.5rem 2rem;
}

.product-name-new {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.product-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  transition: width 0.3s ease;
}

.product-card-new:hover .product-divider {
  width: 100%;
}

.product-link-new {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-link-new:hover {
  color: var(--accent);
  gap: 1.2rem;
}

/* Logistics Special Card */
.logistics-card-special {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3a6b 100%);
  border-radius: 30px;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.3);
}

.logistics-card-special::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.logistics-card-special::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  filter: blur(100px);
}

.logistics-icon-large {
  width: 140px;
  height: 140px;
  margin: 0 auto 3rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.logistics-icon-large i {
  font-size: 5rem;
  color: white;
}

.logistics-description {
  font-size: 1.4rem;
  color: white;
  line-height: 2;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.logistics-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.logistics-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.logistics-feature-item i {
  color: var(--accent);
  font-size: 1.3rem;
}

.logistics-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: white;
  color: var(--primary);
  padding: 1.3rem 3rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logistics-cta-btn:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
  .products-hero h1 {
    font-size: 2.8rem;
  }
  
  .products-nav {
    flex-wrap: wrap;
  }
  
  .products-nav-item {
    flex: 1 1 45%;
  }
  
  .category-main-title {
    font-size: 2.2rem;
    flex-direction: column;
  }
  
  .products-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .logistics-card-special {
    padding: 3rem 2rem;
  }
  
  .logistics-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .products-hero {
    min-height: 50vh;
  }
  
  .products-hero h1 {
    font-size: 2.2rem;
  }
  
  .products-nav-item {
    flex: 1 1 100%;
    padding: 1.2rem;
  }
  
  .category-main-title {
    font-size: 1.8rem;
  }
  
  .products-grid-modern {
    grid-template-columns: 1fr;
  }
}

/* =================== OLD PRODUCTS PAGE STYLES - KEEP FOR COMPATIBILITY =================== */
.product-item-modern {
  cursor: pointer;
}

.product-item-modern:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.2) !important;
  border-color: var(--accent) !important;
}

.product-item-modern:hover .product-image-wrapper img {
  transform: scale(1.1);
}

.product-item-modern:hover .product-image-wrapper > div {
  opacity: 1 !important;
}

.product-item-modern:hover h3 {
  color: var(--accent) !important;
}

.product-item-modern:hover .product-info-modern > div {
  width: 100px !important;
}

/* RTL Support */
[dir="rtl"] .highlight-card:hover {
  transform: translateY(-10px);
}

[dir="rtl"] .factory-card:hover {
  transform: translateX(-10px);
}

[dir="ltr"] .factory-card:hover {
  transform: translateX(10px);
}

/* =================== STATS SECTION =================== */
.stats-section {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-secondary) 100%);
  padding: 80px 0;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 500px;
  height: 500px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.stats-image {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.stats-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  z-index: 1;
}

.stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stats-content .section-title {
  text-align: right;
  color: var(--primary);
  margin: 0;
  font-size: 2.5rem;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateX(-10px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.stat-icon i {
  font-size: 35px;
  color: var(--dark-bg);
}

.stat-info {
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-unit-inline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-unit {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 400;
}

/* =================== LATEST NEWS SECTION =================== */
.latest-news-section {
  background: var(--dark-secondary);
  padding: 80px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.news-card {
  background: rgba(26, 39, 68, 0.5);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.news-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-content {
  padding: 25px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--accent);
}

.news-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-title {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-excerpt {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  /*-webkit-line-clamp: 3;*/
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-link:hover {
  color: var(--accent);
  gap: 12px;
}

.news-cta {
  text-align: center;
  margin-top: 40px;
}

/* =================== CAPABILITIES SECTION =================== */
.capabilities-section {
  padding: 80px 0;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.capability-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(90, 37, 4, 0.1);
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(90, 37, 4, 0.2);
}

.capability-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.capability-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.capability-card p {
  color: #d0d0d0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* =================== SERVICES SECTION =================== */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(90, 37, 4, 0.03) 0%, transparent 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(90, 37, 4, 0.08);
}

.service-card:hover {
  box-shadow: 0 8px 25px rgba(90, 37, 4, 0.15);
  transform: translateX(5px);
}

.service-number {
  background: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-image {
    max-height: 400px;
  }
  
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 0;
  }

  .stats-content .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .stats-list {
    gap: 20px;
  }

  .stat-item {
    padding: 20px;
    gap: 20px;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stat-icon i {
    font-size: 28px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
  
  .latest-news-section {
    padding: 60px 0;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .news-title {
    font-size: 1.2rem;
  }
  
  /* Vision & Mission mobile */
  .vision-mission {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .vm-card {
    width: 100% !important;
    margin: 0 auto !important;
  }
  
  /* What sets us apart mobile */
  .distinction-grid {
    padding: 0 1rem;
  }
  
  .distinction-item {
    text-align: center;
  }
  
  .distinction-icon {
    margin: 0 auto 1.5rem;
  }
  
  .what-sets-us-apart .container {
    text-align: center;
  }
  
  /* About page mobile styles */
  .about-paragraph-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
  }
  
  .about-text-content,
  .about-image-content {
    order: unset !important;
    width: 100% !important;
  }
  
  .about-image-content {
    order: -1 !important;
  }
  
  .about-image-content img {
    width: 100vw !important;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 40px 0;
  }

  .stats-image {
    max-height: 250px;
  }

  .stats-content .section-title {
    font-size: 1.6rem;
  }

  .stat-item {
    padding: 15px;
    gap: 15px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
  }

  .stat-icon i {
    font-size: 28px;
  }
}

/* =================== ABOUT CAROUSEL STYLES =================== */
.about-carousel-section {
  margin-bottom: 80px;
}

.aboutSection-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.aboutSection-subtitle {
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  text-align: center;
}

.about-carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
  position: relative;
  width: 100%;
}

.carousel-slide {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

.carousel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 450px;
  background: white;
}

.carousel-content .carousel-image {
  order: 1;
}

.carousel-content .carousel-text {
  order: 2;
}

.carousel-content.reverse .carousel-image {
  order: 2;
}

.carousel-content.reverse .carousel-text {
  order: 1;
}

.carousel-image {
  position: relative;
  overflow: hidden;
  order: 1;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.carousel-slide.active .carousel-image img {
  animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.carousel-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 2;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.carousel-text h4 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.2s;
}

.carousel-slide.active .carousel-text h4 {
  opacity: 1;
  transform: translateY(0);
}

.carousel-text p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.4s;
}

.carousel-slide.active .carousel-text p {
  opacity: 1;
  transform: translateY(0);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(139, 111, 71, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.carousel-dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 6px;
}

.carousel-dot:hover {
  background: rgba(212, 175, 55, 0.7);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .carousel-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .carousel-content.reverse {
    direction: rtl;
  }
  
  .carousel-content.reverse .carousel-image,
  .carousel-content.reverse .carousel-text {
    order: initial;
  }
  
  .carousel-image {
    order: 1 !important;
    height: 300px;
  }
  
  .carousel-text {
    order: 2 !important;
    padding: 2rem 1.5rem;
  }
  
  .carousel-text h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .carousel-text p {
    font-size: 1rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .carousel-btn.prev {
    left: 10px;
  }
  
  .carousel-btn.next {
    right: 10px;
  }
  
  .aboutSection-title {
    font-size: 1.5rem;
  }
  
  .aboutSection-subtitle {
    font-size: 1rem;
  }
}

/* =================== SERVICES SECTION =================== */
.services-section {
  background: var(--dark-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 3rem 2.5rem;
  clip-path: polygon(30px 0%, 100% 0%, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0% 100%, 0% 30px);
  box-shadow: 0 8px 30px rgba(26, 84, 144, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  clip-path: polygon(30px 0%, 100% 0%, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0% 100%, 0% 30px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.15;
  transition: all 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  transform: rotate(180deg) scale(1.3);
  opacity: 0.25;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.25);
  border-color: transparent;
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary) 0%, #0d3a6b 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem auto;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(26, 84, 144, 0.3);
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: 6px;
  background: rgba(255, 255, 255, 0.15);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all 0.6s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  transform: scale(1.15) rotate(60deg);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.service-card:hover .service-icon::before {
  transform: rotate(-120deg);
}

.service-icon i {
  font-size: 2.8rem;
  color: white;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon i {
  color: var(--accent);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.service-card:hover h3 {
  color: white;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
  font-size: 1.05rem;
  text-align: center;
  width: 100%;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.95);
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary) 0%, #0d3a6b 100%);
  border-radius: 50%;
  color: white;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(26, 84, 144, 0.2);
}

.service-card:hover .service-arrow {
  background: white;
  color: var(--accent);
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* =================== WHY US SECTION =================== */
.why-us-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(26, 84, 144, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-us-item {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 25px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-us-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.why-us-item:hover::before {
  opacity: 1;
}

.why-us-item:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 50px rgba(26, 84, 144, 0.2);
  border-color: var(--accent);
}

.why-us-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, #0d3a6b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 35px rgba(26, 84, 144, 0.3);
}

.why-us-item:hover .why-us-icon {
  background: white;
  transform: scale(1.2) rotateY(360deg);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.4);
}

.why-us-icon i {
  font-size: 3rem;
  color: white;
  transition: all 0.5s ease;
}

.why-us-item:hover .why-us-icon i {
  color: var(--accent);
  transform: scale(1.1);
}

.why-us-item h3 {
  font-size: 1.3rem;
  color: var(--primary);
  line-height: 1.7;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.why-us-item:hover h3 {
  color: white;
  transform: scale(1.05);
}

/* =================== PARTNERS SECTION =================== */
.partners-section {
  background: var(--dark-secondary);
  overflow: hidden;
  padding: 5rem 0;
}

.partners-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 3rem;
  animation: scroll-partners 30s linear infinite;
  width: fit-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  background: white;
  padding: 2rem 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-dark);
  transition: all 0.4s ease;
  min-height: 140px;
  min-width: 220px;
  flex-shrink: 0;
}

.partner-logo:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-primary);
}

.partner-logo img {
  max-width: 160px;
  height: auto;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

/* =================== PRODUCT CATEGORIES =================== */
.product-category {
  scroll-margin-top: 120px;
}

.category-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 2px;
}

.category-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 800px;
}

.category-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.product-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(196, 30, 58, 0.15);
}

.product-image {
  height: 200px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-item:hover .product-image::after {
  opacity: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.logistics-content {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.logistics-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.logistics-content::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.logistics-content p {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  line-height: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* =================== VALUES GRID =================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item > div {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-item:hover > div {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.value-item i {
  font-size: 1.5rem;
  color: white;
}

.value-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
  .services-grid,
  .why-us-grid,
  .partners-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .category-items {
    grid-template-columns: 1fr;
  }
  
  .logistics-content {
    padding: 2rem;
  }
  
  .logistics-content p {
    font-size: 1rem;
  }
}

/* =================== ABOUT PAGE - NEW DESIGN =================== */
.about-hero {
  position: relative;
  min-height: 350px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,84,144,0.9) 0%, rgba(212,175,55,0.2) 100%);
}

.about-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero-title {
  font-size: 4rem;
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.about-hero-line {
  width: 120px;
  height: 5px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(212,175,55,0.5);
}

/* Story Timeline */
.story-section {
  background: var(--dark-secondary);
}

.story-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.story-timeline::before {
  content: '';
  position: absolute;
  right: 60px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

[dir="ltr"] .story-timeline::before {
  right: auto;
  left: 60px;
}

.story-item {
  position: relative;
  padding: 2rem 0;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.story-icon {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border: 4px solid var(--accent);
}

.story-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}

.story-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-dark);
  position: relative;
}

.story-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.story-content p {
  line-height: 1.9;
  color: var(--text-light);
}

/* Vision Mission Modern Cards */
.vm-section {
  background: white;
}

.vm-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.vm-card-modern {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-dark);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.vm-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
  transition: all 0.4s ease;
}

.vm-vision::before {
  background: var(--gradient-primary);
}

.vm-mission::before {
  background: var(--gradient-accent);
}

.vm-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-primary);
}

.vm-card-modern:hover::before {
  transform: scale(1.2);
  opacity: 0.15;
}

.vm-icon-modern {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-primary);
}

.vm-mission .vm-icon-modern {
  background: var(--gradient-accent);
  box-shadow: var(--shadow-accent);
}

.vm-icon-modern i {
  font-size: 2rem;
  color: white;
}

.vm-card-modern h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.vm-divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.vm-card-modern p {
  line-height: 1.9;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Values Modern Grid */
.values-modern-section {
  background: var(--dark-secondary);
}

.values-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-modern-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  transition: all 0.4s ease;
}

.value-modern-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: all 0.5s ease;
  transform: rotate(45deg);
}

.value-modern-card:hover::before {
  opacity: 0.05;
}

.value-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-primary);
}

.value-number {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.1;
}

[dir="ltr"] .value-number {
  right: auto;
  left: 15px;
}

.value-icon-bg {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.value-modern-card:hover .value-icon-bg {
  transform: scale(1.1) rotate(360deg);
}

.value-icon-bg i {
  font-size: 1.8rem;
  color: white;
}

.value-modern-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

/* Product Grid - 3 per row on desktop */
.category-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .category-items {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vm-cards-wrapper {
    grid-template-columns: 1fr;
  }
  
  .story-timeline::before {
    right: 30px;
  }
  
  [dir="ltr"] .story-timeline::before {
    left: 30px;
  }
  
  .story-icon {
    width: 80px;
    height: 80px;
  }
  
  .story-icon i {
    font-size: 1.8rem;
  }
  
  .about-hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .category-items {
    grid-template-columns: 1fr;
  }
  
  .values-modern-grid {
    grid-template-columns: 1fr;
  }
  
  .story-item {
    flex-direction: column;
    align-items: center;
  }
  
  .story-timeline::before {
    display: none;
  }
  
  .about-hero-title {
    font-size: 2.5rem;
  }
}

/* =================== CONTACT PAGE - NEW DESIGN =================== */
.contact-hero {
  background: var(--gradient-primary);
  padding: 6rem 0 4rem;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.2) 0%, transparent 50%);
}

.contact-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.contact-hero-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.contact-hero-icons i {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  backdrop-filter: blur(10px);
}

.contact-main-section {
  padding: 5rem 0;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-info-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-dark);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-primary);
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(360deg);
}

.contact-card-icon i {
  font-size: 1.8rem;
  color: white;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.contact-info-card a,
.contact-info-card p {
  color: var(--text-muted);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-info-card:hover a {
  color: var(--primary);
}

.contact-form-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-modern {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-dark);
}

.contact-form-modern h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group-modern {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group-modern i {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.1rem;
}

[dir="ltr"] .form-group-modern i {
  right: auto;
  left: 1rem;
}

.form-group-modern input,
.form-group-modern textarea {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--dark-secondary);
}

[dir="ltr"] .form-group-modern input,
[dir="ltr"] .form-group-modern textarea {
  padding: 1rem 1.5rem 1rem 3rem;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26,84,144,0.1);
  background: white;
}

.form-group-modern textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 1rem;
}

.btn-submit-modern {
  width: 100%;
  padding: 1.2rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-primary);
}

.btn-submit-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(26,84,144,0.3);
}

.btn-submit-modern i {
  transition: transform 0.4s ease;
}

.btn-submit-modern:hover i {
  transform: translateX(5px);
}

[dir="rtl"] .btn-submit-modern:hover i {
  transform: translateX(-5px);
}

.contact-map-modern {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

/* =================== FOOTER - NEW DESIGN =================== */
.footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.footer::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-about h3 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 120px;
  margin-bottom: 1rem;
}

.footer-about p {
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

[dir="ltr"] .footer-section h4::after {
  right: auto;
  left: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(-5px);
}

[dir="ltr"] .footer-links a:hover {
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

/* =================== SERVICES PAGE =================== */
.services-hero {
  background: var(--gradient-primary);
  padding: 6rem 0 4rem;
  margin-top: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: white;
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
}

.services-hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
}

.services-hero p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-detailed-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  transition: all 0.4s ease;
}

.service-detailed-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-primary);
}

.service-card-header {
  background: var(--gradient-primary);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.service-card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.service-card-icon {
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255,255,255,0.3);
}

.service-card-icon i {
  font-size: 2.5rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.service-card-header h3 {
  color: white;
  font-size: 1.8rem;
}

.service-card-body {
  padding: 2.5rem;
}

.service-card-body p {
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* =================== RESPONSIVE - CONTACT & FOOTER =================== */
@media (max-width: 1024px) {
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form-map-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-map-modern {
    height: 400px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .services-detailed-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-section h4::after {
    right: 50%;
    transform: translateX(50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .services-hero h1 {
    font-size: 2.5rem;
  }
}

/* =================== WHY US MODERN SECTION =================== */
.why-us-modern-section {
  background: linear-gradient(135deg, rgba(26, 84, 144, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.why-us-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-us-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.why-us-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  grid-template-areas:
    "large item2 item3"
    "item4 wide wide";
}

.why-us-modern-card {
  background: white;
  padding: 3rem 2rem;
  position: relative;
  overflow: visible;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  border: 2px solid rgba(26, 84, 144, 0.08);
}

.why-us-large {
  grid-area: large;
  grid-row: span 2;
}

.why-us-wide {
  grid-area: wide;
}

.why-us-modern-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--gradient-primary);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.why-us-modern-card:hover::before {
  opacity: 1;
}

.why-us-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.2);
  border-color: transparent;
}

.why-us-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.1;
  transition: all 0.5s ease;
}

[dir=\"rtl\"] .why-us-number {
  right: auto;
  left: 1.5rem;
}

.why-us-modern-card:hover .why-us-number {
  opacity: 0.2;
  transform: scale(1.2);
}

.why-us-modern-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-us-modern-icon i {
  font-size: 2.2rem;
  color: white;
}

.why-us-modern-card:hover .why-us-modern-icon {
  transform: rotate(180deg) scale(1.1);
  background: var(--gradient-accent);
}

.why-us-modern-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.why-us-modern-card:hover h3 {
  color: var(--accent);
}

.why-us-modern-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-us-modern-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "large large"
      "item2 item3"
      "item4 wide";
  }
}

@media (max-width: 768px) {
  .why-us-modern-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "large"
      "item2"
      "item3"
      "item4"
      "wide";
  }
  
  .why-us-large {
    grid-row: span 1;
  }
}

/* =================== STORY MODERN TIMELINE =================== */
.story-modern-section {
  background: linear-gradient(to bottom, white 0%, var(--dark-secondary) 100%);
}

.story-modern-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  transform: translateX(-50%);
  border-radius: 4px;
}

[dir=\"rtl\"] .timeline-line {
  left: 50%;
  right: auto;
}

.story-modern-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
}

.story-modern-item.story-reverse .story-modern-card {
  grid-column: 1;
}

.story-modern-item.story-reverse .story-modern-marker {
  grid-column: 2;
}

.story-modern-marker {
  grid-column: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.marker-dot {
  width: 24px;
  height: 24px;
  background: white;
  border: 4px solid var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(26, 84, 144, 0.1);
  transition: all 0.4s ease;
}

.marker-ring {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s ease;
}

.story-modern-item:hover .marker-ring {
  opacity: 1;
  transform: scale(1);
}

.story-modern-item:hover .marker-dot {
  background: var(--primary);
  transform: scale(1.3);
}

.story-modern-card {
  grid-column: 3;
  background: white;
  padding: 2.5rem;
  position: relative;
  clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
  border: 2px solid rgba(26, 84, 144, 0.1);
  transition: all 0.4s ease;
}

.story-modern-item.story-reverse .story-modern-card {
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 0 100%);
}

.story-modern-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--gradient-primary);
  clip-path: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.story-modern-card:hover::before {
  opacity: 1;
}

.story-modern-card:hover {
  transform: translateX(-10px);
  box-shadow: 0 15px 50px rgba(26, 84, 144, 0.2);
  border-color: transparent;
}

[dir=\"rtl\"] .story-modern-card:hover {
  transform: translateX(10px);
}

.story-modern-item.story-reverse .story-modern-card:hover {
  transform: translateX(10px);
}

[dir=\"rtl\"] .story-modern-item.story-reverse .story-modern-card:hover {
  transform: translateX(-10px);
}

.story-modern-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.story-modern-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-modern-icon i {
  font-size: 1.6rem;
  color: white;
}

.story-year-badge {
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1.5rem;
  clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0% 50%);
  font-weight: 700;
  font-size: 1rem;
}

.story-modern-body h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.story-modern-body p {
  color: var(--text-light);
  line-height: 1.9;
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 968px) {
  .story-modern-timeline {
    padding-left: 0;
  }
  
  .timeline-line {
    left: 30px;
  }
  
  .story-modern-item {
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }
  
  .story-modern-marker {
    grid-column: 1 !important;
  }
  
  .story-modern-card {
    grid-column: 2 !important;
  }
}

/* =================== VM ADVANCED SECTION =================== */
.vm-advanced-section {
  background: var(--dark-secondary);
  position: relative;
  overflow: hidden;
}

.vm-advanced-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.vm-advanced-card {
  background: white;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
  border: 2px solid rgba(26, 84, 144, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-vision-advanced {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

.vm-mission-advanced {
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
}

.vm-advanced-bg {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--gradient-primary);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.05;
  transition: all 0.6s ease;
}

.vm-advanced-card:hover .vm-advanced-bg {
  transform: rotate(180deg) scale(1.2);
  opacity: 0.1;
}

.vm-advanced-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.5s ease;
}

.vm-advanced-icon i {
  font-size: 2.5rem;
  color: white;
  z-index: 1;
}

.icon-glow {
  position: absolute;
  inset: -10px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.5s ease;
}

.vm-advanced-card:hover .icon-glow {
  opacity: 0.4;
}

.vm-advanced-card:hover .vm-advanced-icon {
  transform: rotate(60deg) scale(1.1);
}

.vm-advanced-content h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.vm-advanced-divider {
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  margin-bottom: 2rem;
}

.vm-advanced-content p {
  color: var(--text-light);
  line-height: 2;
  font-size: 1.1rem;
}

.vm-decorative-element {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 3px solid var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.2;
}

@media (max-width: 968px) {
  .vm-advanced-wrapper {
    grid-template-columns: 1fr;
  }
}

/* =================== VALUES PREMIUM SECTION =================== */
.values-premium-section {
  background: white;
}

.values-premium-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-premium-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.values-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  grid-template-areas:
    "featured item2 item3"
    "item4 wide wide";
}

.value-premium-card {
  background: linear-gradient(135deg, white 0%, var(--dark-secondary) 100%);
  padding: 3rem 2rem;
  position: relative;
  overflow: visible;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  border: 2px solid rgba(26, 84, 144, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-featured {
  grid-area: featured;
  grid-row: span 2;
  background: var(--gradient-primary);
  color: white;
}

.value-featured h3,
.value-featured p {
  color: white;
}

.value-featured .value-premium-number {
  color: rgba(255, 255, 255, 0.2);
}

.value-wide {
  grid-area: wide;
}

.value-premium-bg {
  position: absolute;
  inset: -3px;
  background: var(--gradient-primary);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.value-premium-card:hover .value-premium-bg {
  opacity: 1;
}

.value-premium-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.2);
  border-color: transparent;
}

.value-premium-card:hover h3,
.value-premium-card:hover p {
  color: white;
}

.value-premium-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.15;
}

[dir="rtl"] .value-premium-number {
  right: auto;
  left: 1.5rem;
}

.value-premium-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.5s ease;
}

.value-featured .value-premium-icon {
  background: white;
}

.value-featured .value-premium-icon i {
  color: var(--primary);
}

.value-premium-icon i {
  font-size: 2rem;
  color: white;
  z-index: 1;
}

.icon-circle {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--accent);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  opacity: 0;
  transform: rotate(0deg);
  transition: all 0.6s ease;
}

.value-premium-card:hover .icon-circle {
  opacity: 1;
  transform: rotate(45deg);
}

.value-premium-card:hover .value-premium-icon {
  transform: rotate(-45deg) scale(1.1);
}

.value-premium-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.value-premium-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  transition: color 0.3s ease;
}

@media (max-width: 1024px) {
  .values-premium-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "featured featured"
      "item2 item3"
      "item4 wide";
  }
}

@media (max-width: 768px) {
  .values-premium-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "featured"
      "item2"
      "item3"
      "item4"
      "wide";
  }
  
  .value-featured {
    grid-row: span 1;
  }
}

/* =================== SERVICES INTERACTIVE TABS =================== */
.services-interactive-section {
  background: linear-gradient(to bottom, white 0%, var(--dark-secondary) 100%);
}

.services-tabs-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.services-tabs-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-dark);
  overflow-x: auto;
}

.service-tab-btn {
  flex: 1;
  min-width: 150px;
  background: transparent;
  border: 2px solid rgba(26, 84, 144, 0.1);
  padding: 1.2rem 1.5rem;
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.service-tab-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-tab-btn.active::before,
.service-tab-btn:hover::before {
  opacity: 1;
}

.service-tab-btn span,
.service-tab-btn .tab-icon {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.tab-icon {
  width: 50px;
  height: 50px;
  background: rgba(26, 84, 144, 0.1);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.tab-icon i {
  font-size: 1.5rem;
  color: var(--primary);
  transition: color 0.4s ease;
}

.service-tab-btn.active .tab-icon,
.service-tab-btn:hover .tab-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(60deg);
}

.service-tab-btn.active .tab-icon i,
.service-tab-btn:hover .tab-icon i {
  color: white;
}

.service-tab-btn span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.service-tab-btn.active span,
.service-tab-btn:hover span {
  color: white;
}

.services-tabs-content {
  position: relative;
}

.service-tab-panel {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.service-tab-panel.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-tab-content-inner {
  background: white;
  padding: 4rem 3rem;
  clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 40px);
  box-shadow: var(--shadow-dark);
}

.service-hero-content {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid var(--dark-secondary);
}

.service-mega-icon {
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 15px 50px rgba(26, 84, 144, 0.3);
}

.service-mega-icon i {
  font-size: 3.5rem;
  color: white;
}

.service-hero-content h3 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 800;
}

.service-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.service-features-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-modern-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--dark-secondary);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: all 0.3s ease;
}

.feature-modern-item:hover {
  background: var(--primary);
  transform: translateX(5px);
}

[dir="rtl"] .feature-modern-item:hover {
  transform: translateX(-5px);
}

.feature-modern-item:hover span {
  color: white;
}

.feature-modern-item:hover .feature-check i {
  color: var(--accent);
}

.feature-check {
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check i {
  font-size: 1.2rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.feature-modern-item span {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .services-tabs-nav {
    flex-direction: column;
  }
  
  .service-tab-btn {
    min-width: auto;
  }
  
  .service-features-modern {
    grid-template-columns: 1fr;
  }
}

/* =================== ADDITIONAL ENHANCEMENTS =================== */

/* Hero Background Overlay Enhancement */
.hero[style*='background-image'] {
  background-blend-mode: overlay;
}

/* Section Title Enhancement */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

/* Why Us Section Enhancement */
.why-us-modern-section .section-title {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Story Section Enhancement */
.story-modern-section {
  position: relative;
}

/* Values Section Title */
.values-premium-section .section-title {
  margin-bottom: 0.5rem;
}

/* Services Hero Enhancement */
.services-hero {
  background: var(--gradient-primary);
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.services-hero h1 {
  font-size: 3.5rem;
  color: white;
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.services-hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* About Hero Enhancement */
.about-hero {
  background: var(--gradient-primary);
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.18) 0%, transparent 60%);
  animation: float 20s ease-in-out infinite;
}

.about-hero-title {
  font-size: 3.5rem;
  color: white;
  font-weight: 900;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-hero-line {
  width: 100px;
  height: 4px;
  background: var(--gradient-accent);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Tab Icon Enhancement */
.tab-icon {
  position: relative;
  z-index: 1;
}

/* Feature Check Enhancement */
.feature-check {
  box-shadow: 0 2px 8px rgba(26, 84, 144, 0.1);
}

/* Smooth Scrolling for Mobile */
@media (max-width: 768px) {
  .services-tabs-nav {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark-secondary);
  }
  
  .services-tabs-nav::-webkit-scrollbar {
    height: 6px;
  }
  
  .services-tabs-nav::-webkit-scrollbar-track {
    background: var(--dark-secondary);
    border-radius: 3px;
  }
  
  .services-tabs-nav::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
  }
  
  .services-tabs-nav::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
  }
}

/* Loading Animation for Tabs */
@keyframes tabSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-tab-panel.active {
  animation: tabSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effects Enhancement */
.why-us-modern-card,
.value-premium-card,
.story-modern-card,
.vm-advanced-card {
  will-change: transform;
}

/* Performance Optimization */
.why-us-modern-icon,
.value-premium-icon,
.story-modern-icon,
.vm-advanced-icon,
.service-mega-icon {
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Print Styles */
@media print {
  .hero,
  .services-tabs-nav,
  .why-us-modern-card::before,
  .value-premium-card::before,
  .story-modern-card::before {
    background: white !important;
    box-shadow: none !important;
  }
  
  .hero-video-overlay,
  .hero-particles,
  .hero::before,
  .hero::after {
    display: none !important;
  }
}

/* Accessibility Enhancements */
.service-tab-btn:focus,
.why-us-modern-card:focus,
.value-premium-card:focus {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .why-us-modern-icon,
  .value-premium-icon,
  .story-modern-icon,
  .vm-advanced-icon {
    transform: none !important;
  }
}


/* =================== CONTACT ULTRA MODERN PAGE =================== */
.contact-ultra-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding-top: 120px;
}

.contact-ultra-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
  opacity: 0.5;
}

.contact-ultra-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contact-ultra-particles::before,
.contact-ultra-particles::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.contact-ultra-particles::before {
  top: -200px;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.contact-ultra-particles::after {
  bottom: -200px;
  right: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.contact-ultra-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.contact-ultra-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  animation: pulse-icon 3s ease-in-out infinite;
}

.contact-ultra-icon-wrapper i {
  font-size: 3rem;
  color: white;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }
}

.contact-ultra-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.contact-ultra-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.contact-ultra-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-badge-item {
  padding: 0.7rem 1.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
}

.contact-badge-item i {
  font-size: 1.1rem;
}

/* Contact Ultra Section */
.contact-ultra-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.contact-ultra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-ultra-card {
  position: relative;
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease-out backwards;
  animation-delay: calc(var(--card-index) * 0.1s);
}

.contact-ultra-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-ultra-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-ultra-card:hover .contact-ultra-card-bg {
  opacity: 0.05;
}

.contact-ultra-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,102,204,0.2);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.contact-ultra-card:hover .contact-ultra-icon {
  transform: rotateY(360deg) scale(1.1);
}

.contact-ultra-icon i {
  font-size: 2rem;
  color: white;
}

.contact-ultra-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.contact-ultra-card a,
.contact-ultra-card p {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-ultra-card:hover a {
  color: var(--secondary);
}

.contact-ultra-decoration {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.05;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.contact-ultra-card:hover .contact-ultra-decoration {
  transform: scale(1.5);
  opacity: 0.1;
}

/* Form & Map Ultra Wrapper */
.contact-ultra-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.contact-form-ultra {
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.08);
  clip-path: polygon(0 0, 100% 0, 100% 95%, 90% 100%, 0 100%);
}

.form-ultra-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-ultra-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  box-shadow: 0 10px 30px rgba(0,102,204,0.2);
}

.form-ultra-icon i {
  font-size: 1.8rem;
  color: white;
  transform: rotate(-45deg);
}

.form-ultra-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 800;
}

.form-ultra-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.form-ultra-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-ultra-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-ultra-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-ultra-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-ultra-group label i {
  color: var(--primary);
  font-size: 1rem;
}

.form-ultra-group input,
.form-ultra-group textarea {
  padding: 1rem 1.2rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.form-ultra-group input:focus,
.form-ultra-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(0,102,204,0.1);
}

.form-ultra-group textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-ultra-submit {
  margin-top: 1rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 60px;
  box-shadow: 0 10px 30px rgba(0,102,204,0.2);
  transition: all 0.4s ease;
}

.btn-ultra-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: transform 0.4s ease;
}

.btn-ultra-submit:hover::before {
  transform: scale(1.05);
}

.btn-ultra-submit:hover {
  box-shadow: 0 15px 40px rgba(0,102,204,0.3);
  transform: translateY(-2px);
}

.btn-ultra-text {
  position: relative;
  z-index: 1;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
}

.btn-ultra-icon {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

[dir="rtl"] .btn-ultra-icon {
  right: auto;
  left: 2rem;
}

.btn-ultra-submit:hover .btn-ultra-icon {
  transform: translateY(-50%) translateX(5px);
}

[dir="rtl"] .btn-ultra-submit:hover .btn-ultra-icon {
  transform: translateY(-50%) translateX(-5px);
}

/* Map Ultra */
.contact-map-ultra {
  background: white;
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.08);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 5%);
}

.map-ultra-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f3f4f6;
}

.map-ultra-header i {
  font-size: 2rem;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(0,102,204,0.1), rgba(255,193,7,0.1));
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.map-ultra-header h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.map-ultra-container {
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* =================== SERVICES ULTRA MODERN SECTION (Homepage) =================== */
.services-ultra-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, white 0%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

.services-ultra-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(0,102,204,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.section-header-ultra {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-icon-ultra {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  box-shadow: 0 10px 40px rgba(0,102,204,0.2);
  animation: float 3s ease-in-out infinite;
}

.section-icon-ultra i {
  font-size: 2.5rem;
  color: white;
  transform: rotate(-45deg);
}

.section-subtitle-ultra {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-weight: 500;
}

.services-ultra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.service-ultra-card {
  position: relative;
  background: white;
  padding: 2.5rem 1.8rem;
  border-radius: 20px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 85% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-ultra-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: top 0.5s ease;
}

.service-ultra-card:hover::before {
  top: 0;
}

.service-ultra-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0,102,204,0.2);
}

.service-ultra-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,102,204,0.05) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.service-ultra-card:hover .service-ultra-bg {
  transform: scale(1.5);
  opacity: 0;
}

.service-ultra-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,102,204,0.05);
  transition: all 0.5s ease;
  z-index: 0;
}

[dir="rtl"] .service-ultra-number {
  right: auto;
  left: 1.5rem;
}

.service-ultra-card:hover .service-ultra-number {
  color: rgba(255,255,255,0.15);
  transform: scale(1.2);
}

.service-ultra-icon-wrapper {
  width: 85px;
  height: 85px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-ultra-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,102,204,0.2);
  transition: all 0.5s ease;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.service-ultra-card:hover .service-ultra-icon {
  background: white;
  transform: rotate(90deg);
  clip-path: circle(50%);
}

.service-ultra-icon i {
  font-size: 2.2rem;
  color: white;
  transition: all 0.5s ease;
}

.service-ultra-card:hover .service-ultra-icon i {
  color: var(--primary);
  transform: rotate(-90deg) scale(1.1);
}

.service-ultra-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  transition: color 0.5s ease;
}

.service-ultra-card:hover h3 {
  color: white;
}

.service-ultra-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  transition: color 0.5s ease;
}

.service-ultra-card:hover p {
  color: rgba(255,255,255,0.9);
}

.service-ultra-footer {
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.service-ultra-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.service-ultra-card:hover .service-ultra-link {
  color: white;
  gap: 1rem;
}

.service-ultra-link i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.service-ultra-card:hover .service-ultra-link i {
  transform: translateX(5px);
}

[dir="rtl"] .service-ultra-card:hover .service-ultra-link i {
  transform: translateX(-5px);
}

/* Responsive for Contact & Services Ultra */
@media (max-width: 1024px) {
  .contact-ultra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-ultra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-ultra-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-ultra-hero {
    min-height: 50vh;
    padding-top: 100px;
  }
  
  .contact-ultra-content h1 {
    font-size: 2rem;
  }
  
  .contact-ultra-content p {
    font-size: 1.1rem;
  }
  
  .contact-ultra-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services-ultra-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-ultra {
    padding: 2rem 1.5rem;
  }
  
  .form-ultra-row {
    grid-template-columns: 1fr;
  }
  
  .map-ultra-container {
    height: 350px;
  }
}
