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

:root {
  --primary: #2E7D32;
  --primary-dark: #1B5E20;
  --primary-light: #388E3C;
  --secondary: #212121;
  --secondary-light: #424242;
  --accent: #4CAF50;
  --success: #81C784;
  --warning: #FFB74D;
  --danger: #E57373;
  
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --radius-sm: 4px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 150ms ease-in-out;
  --transition: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  --container-width: 1280px;
  --container-padding: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background-color: var(--white);
  direction: rtl;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-white:hover {
  background-color: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo-container {
  display: flex;
  align-items: center;
}

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

.nav-logo {
  height: 44px;
  width: auto;
  border-radius: 7px;
  transition: transform var(--transition);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-blocks {
  display: flex;
  gap: 4px;
}

.logo-block {
  width: 20px;
  height: 44px;
  border-radius: 4px;
  transition: transform var(--transition);
}

.logo-block.green {
  background-color: var(--primary);
}

.logo-block.black {
  background-color: var(--secondary);
}

.nav-brand:hover .logo-block {
  transform: translateY(-2px);
}

.logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--gray-700);
  transition: all var(--transition);
}

.cta-button {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all var(--transition);
  display: inline-block;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.hero {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.hero-pattern {
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
  background-size: 200% 200%;
  animation: patternMove 5s linear infinite;
}

@keyframes patternMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 200px 200px, -200px -200px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.stats {
  padding: 80px 0;
  background-color: var(--gray-50);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stat-card {
  text-align: center;
  padding: 40px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.stat-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-700);
}

.services,
.values,
.clients {
  padding: 100px 0;
}

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

.values {
  background-color: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.values-background {
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(46, 125, 50, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: 50%;
  transform: translateX(50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 24px auto 0;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: translateX(-100%);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.service-card:hover::before {
  transform: translateX(0);
}

.service-card.premium-service {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.02) 0%, rgba(56, 142, 60, 0.02) 100%);
}

.service-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.icon-css {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  color: var(--white);
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  margin-top: 20px;
}

.service-features li {
  padding-right: 24px;
  margin-bottom: 12px;
  position: relative;
  color: var(--gray-700);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--accent);
  font-weight: bold;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 20px;
  transition: all var(--transition);
}

.service-btn:hover {
  gap: 12px;
  color: var(--primary-dark);
}

.service-btn::after {
  content: '←';
  transition: transform var(--transition);
}

.service-btn:hover::after {
  transform: translateX(-4px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.value-card .icon-css {
  margin: 0 auto 24px;
}

.value-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.value-desc {
  color: var(--gray-600);
  line-height: 1.8;
}

.clients-slider-container {
  position: relative;
  overflow: hidden;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}

.client-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

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

.client-img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  padding: 20px;
  background-color: var(--gray-50);
}

.client-info {
  padding: 20px;
  text-align: center;
}

.client-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.client-desc {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.client-tag {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transform: rotate(45deg);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: all var(--transition);
}

.cta-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.cta-card .icon-css {
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 auto 24px;
}

.cta-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-card-desc {
  opacity: 0.9;
}

footer {
  background-color: var(--gray-900);
  color: var(--white);
}

.footer-top {
  padding: 80px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--gray-400);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(-5px);
}

.footer-links .icon-css {
  width: 20px;
  height: 20px;
  font-size: 14px;
  background-color: var(--primary);
  color: var(--white);
  margin: 0;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
}

.page-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.page-subtitle {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-story {
  padding: 80px 0;
  background-color: var(--white);
}

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

.about-content {
  padding: 20px;
}

.about-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 16px;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.vision-mission {
  padding: 80px 0;
  background-color: var(--gray-50);
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.vm-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
}

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

.vm-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background-color: var(--primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
}

.vm-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.vm-text {
  color: var(--gray-600);
  line-height: 1.8;
}

.team {
  padding: 80px 0;
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.team-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.team-image {
  height: 300px;
  overflow: hidden;
  background-color: var(--gray-100);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 32px;
  text-align: center;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.team-position {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}

.clients-filter {
  padding: 40px 0;
  background-color: var(--gray-50);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-button {
  background-color: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-button.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.clients-page {
  padding: 60px 0 80px;
  background-color: var(--white);
}

.testimonials {
  padding: 80px 0;
  background-color: var(--gray-50);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-content {
  margin-bottom: 32px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-700);
  font-style: italic;
  position: relative;
  padding: 0 40px;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  position: absolute;
  font-size: 60px;
  color: var(--primary-light);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-content p::before {
  top: -20px;
  right: 0;
}

.testimonial-content p::after {
  bottom: -40px;
  left: 0;
}

.testimonial-author {
  text-align: right;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.author-position {
  font-size: 14px;
  color: var(--gray-600);
}

.services-page {
  padding: 60px 0 80px;
  background-color: var(--white);
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .about-grid,
  .vm-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
  }
  
  .header-container {
    padding: 12px 0;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .cta-button {
    display: none;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .btn {
    width: 100%;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .services-grid,
  .values-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-title {
    font-size: 28px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-col h3::after {
    right: 50%;
    transform: translateX(50%);
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .page-title {
    font-size: 32px;
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .service-card,
  .value-card,
  .vm-card {
    padding: 24px;
  }
  
  .filter-button {
    font-size: 14px;
    padding: 8px 16px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .testimonial-content p {
    padding: 0 20px;
  }
}

.icon-hotel::before { content: '\f594'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-coffee::before { content: '\f0f4'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-logistics::before { content: '\f48b'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-factory::before { content: '\f275'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-mobile::before { content: '\f3cd'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-people::before { content: '\f0c0'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-handshake::before { content: '\f2b5'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-balance::before { content: '\f24e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-star::before { content: '\f005'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-users::before { content: '\f0c0'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-phone::before { content: '\f095'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-delivery::before { content: '\f48b'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-location::before { content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-email::before { content: '\f0e0'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-eye::before { content: '\f06e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-bullseye::before { content: '\f140'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }