/* =============================================================================
   AREEJ Website Custom Styles - Enhanced Version
   محدّث: تحسينات جمالية وتأثيرات حيوية للصفحة الرئيسية
   ============================================================================= */

:root {
  --color-primary: #2d5a4a;
  --color-primary-light: #5fa583;
  --color-accent: #f7941d;
  --color-accent-red: #e74c3c;
  --color-bg: #ffffff;
  --color-bg-gray: #f8f9fa;
  --color-text: #2c3e50;
  --color-text-light: #6c757d;
}

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

body {
  font-family: 'Cairo', sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  direction: rtl;
  overflow-x: hidden;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* =============================================================================
   HERO SLIDER SECTION - Enhanced Contained Design
   ============================================================================= */

.hero-slider {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
}

/* Animated Overlays */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.slide-overlay-light {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.slide-overlay-medium {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.slide-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  animation: pulseOverlay 4s ease-in-out infinite;
}

.slide-overlay-orange {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 148, 29, 0.5) 0%, rgba(231, 76, 60, 0.4) 100%);
  z-index: 1;
  animation: gradientShift 8s ease infinite;
}

@keyframes pulseOverlay {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.slide-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: bounceIn 1s ease;
}

.slide-icon-orange {
  color: var(--color-accent);
  text-shadow: 0 4px 12px rgba(247, 148, 29, 0.6);
  animation: iconGlow 2s ease-in-out infinite;
}

.slide-icon-white {
  color: white;
  text-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
  animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px currentColor);
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px currentColor);
  }
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease;
  line-height: 1.2;
}

.slide-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Swiper Navigation Buttons - Enhanced */
.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  background: rgba(0, 0, 0, 0.3);
  width: 55px !important;
  height: 55px !important;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--color-accent);
  transform: scale(1.2);
  box-shadow: 0 8px 20px rgba(247, 148, 29, 0.5);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px !important;
}

/* Swiper Pagination - Enhanced */
.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: white !important;
  opacity: 0.5 !important;
  transition: all 0.4s ease !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--color-accent) !important;
  width: 35px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(247, 148, 29, 0.6);
}

/* =============================================================================
   BUTTONS - Enhanced with Ripple Effect
   ============================================================================= */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

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

.btn-primary:hover {
  background: #e68517;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(247, 148, 29, 0.4);
}

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

.btn-secondary:hover {
  background: transparent;
  color: white;
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 90, 74, 0.3);
}

.btn-orange {
  background: var(--color-accent);
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(247, 148, 29, 0.3);
}

.btn-orange:hover {
  background: #e68517;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(247, 148, 29, 0.5);
}

.btn-accent {
  background: var(--color-accent);
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(247, 148, 29, 0.3);
}

.btn-accent:hover {
  background: #e68517;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(247, 148, 29, 0.5);
}

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

.btn-white:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  font-weight: 600;
}

.btn-white-outline:hover {
  background: white;
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* =============================================================================
   CARDS - Enhanced with Animation
   ============================================================================= */

.card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f7941d, #e74c3c);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

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

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(45, 90, 74, 0.15);
  border-color: rgba(247, 148, 29, 0.2);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 8px 20px rgba(45, 90, 74, 0.3);
  transition: all 0.4s ease;
}

.card:hover .card-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(247, 148, 29, 0.4);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-red) 100%);
}

/* =============================================================================
   PATH CARDS
   ============================================================================= */

.path-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--color-accent);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.path-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.path-card h3 {
  color: var(--color-primary);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.path-card .option {
  background: var(--color-bg-gray);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-right: 4px solid var(--color-accent);
  transition: all 0.3s ease;
}

.path-card .option:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.path-card .option h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.path-card .option ul {
  list-style: none;
  margin-bottom: 1rem;
}

.path-card .option ul li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.path-card .option ul li::before {
  content: "✅";
  font-size: 1.25rem;
}

/* =============================================================================
   ANIMATED STATS SECTION - Enhanced
   ============================================================================= */

.stats-animated {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(247, 148, 29, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(95, 165, 131, 0.1) 0%, transparent 50%);
  animation: moveGradient 15s ease infinite;
}

@keyframes moveGradient {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.stat-item-animated {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.stat-item-animated:hover {
  transform: translateY(-15px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  font-size: 3.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(247, 148, 29, 0.4));
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.stat-number-animated {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  display: inline-block;
  line-height: 1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.stat-plus {
  font-size: 3rem;
  color: var(--color-accent);
  font-weight: 700;
  display: inline-block;
  margin-right: 0.25rem;
}

.stat-label-animated {
  display: block;
  font-size: 1.25rem;
  margin-top: 1rem;
  opacity: 0.95;
  font-weight: 600;
}

/* =============================================================================
   FEATURES GRID
   ============================================================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-50px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

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

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* Scroll Reveal Animation - Down to Up (Natural Scroll Direction) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect for smoother appearance */
.scroll-reveal:nth-of-type(1) {
  transition-delay: 0s;
}

.scroll-reveal:nth-of-type(2) {
  transition-delay: 0.1s;
}

.scroll-reveal:nth-of-type(3) {
  transition-delay: 0.2s;
}

.scroll-reveal:nth-of-type(4) {
  transition-delay: 0.3s;
}

/* Feature Cards Enhanced */
.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f7941d, #e74c3c);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

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

.feature-icon {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg) scale(1.2);
}

.feature-number {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 800;
  transition: all 0.3s ease;
}

/* Testimonial Cards */
.testimonial-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 80px;
  color: var(--color-accent);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* =============================================================================
   PRODUCT SECTIONS
   ============================================================================= */

.product-category {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.product-category h3 {
  color: var(--color-primary);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--color-accent);
}

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

.product-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-bg-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.product-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.product-item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 8px;
}

.product-item h4 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

/* =============================================================================
   CONTACT FORM
   ============================================================================= */

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}

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

/* =============================================================================
   WHATSAPP FLOATING BUTTON - Enhanced
   ============================================================================= */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsappPulse 2s ease infinite;
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
  }
}

.whatsapp-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-menu {
  position: absolute;
  bottom: 80px;
  left: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  min-width: 220px;
  display: none;
}

.whatsapp-menu.active {
  display: block;
  animation: slideUp 0.3s ease;
}

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

.whatsapp-option {
  display: block;
  padding: 1rem;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-option:hover {
  background: var(--color-bg-gray);
}

/* =============================================================================
   CONTACT INFO CARDS
   ============================================================================= */

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-card {
  background: var(--color-bg-gray);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border-top: 4px solid var(--color-accent);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.contact-card h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.contact-card a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--color-accent);
}

/* =============================================================================
   GOOGLE MAPS
   ============================================================================= */

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* =============================================================================
   FOOTER
   ============================================================================= */

.footer {
  background: var(--color-primary);
  color: white;
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin: 0.5rem 0;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

/* =============================================================================
   LANDING PAGE SPECIFIC
   ============================================================================= */

.landing-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  padding: 8rem 2rem;
  text-align: center;
}

.landing-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.landing-hero .price {
  font-size: 2.5rem;
  color: var(--color-accent);
  font-weight: 700;
  margin: 2rem 0;
}

.landing-hero .old-price {
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 2rem;
}

.features-list {
  list-style: none;
  text-align: right;
  max-width: 600px;
  margin: 2rem auto;
}

.features-list li {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.5rem 0;
  border-radius: 8px;
  font-size: 1.125rem;
}

.features-list li i {
  color: var(--color-accent);
  margin-left: 0.5rem;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (max-width: 768px) {
  .slide-title {
    font-size: 2rem;
  }

  .slide-subtitle {
    font-size: 1.125rem;
  }

  .slide-icon {
    font-size: 3rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }

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

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

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .hero-slider {
    height: 500px;
  }

  .swiper-slide {
    min-height: 500px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 45px !important;
    height: 45px !important;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 18px !important;
  }

  .stat-number-animated {
    font-size: 3rem;
  }

  .stat-plus {
    font-size: 2rem;
  }

  .stat-label-animated {
    font-size: 1rem;
  }

  .stat-icon {
    font-size: 2.5rem;
  }

  .card-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

/* Hero Section (for other pages) */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Stats Section - Old (keep for other pages) */
.stats {
  background: var(--color-primary);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.stat-item {
  margin: 1.5rem 0;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
}

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

/* =============================================================================
   MODERN ANIMATIONS & EFFECTS
   ============================================================================= */

/* Gradient Animation */
@keyframes gradient-x {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.animate-gradient-x {
  background-size: 200% 200%;
  animation: gradient-x 3s ease infinite;
}

/* Float Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease-out;
}

/* Pulse Animation (already in Tailwind but custom version) */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Glassmorphism Utility Classes */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 3D Transform Utilities */
.transform-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Smooth Hover Transitions */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Custom Scrollbar for Modern Look */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #10b981, #06b6d4);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #059669, #0891b2);
}

/* Selection Color */
::selection {
  background: rgba(16, 185, 129, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(16, 185, 129, 0.3);
  color: #ffffff;
}

/* =============================================================================
   START PAGE MODERN ANIMATIONS
   ============================================================================= */

/* Blob Animation for Background */
@keyframes blob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -50px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  75% {
    transform: translate(50px, 50px) scale(1.05);
  }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

/* Gradient XY Animation */
@keyframes gradient-xy {
  0%, 100% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
}

.animate-gradient-xy {
  background-size: 400% 400%;
  animation: gradient-xy 15s ease infinite;
}

/* Background Grid Pattern */
.bg-grid-white\/\[0\.05\] {
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

/* Bounce Animation (Tailwind override) */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}


/* =============================================================================
   HOME V5 FINAL - Product-First Homepage Styles
   ============================================================================= */

/* 1️⃣ HERO SECTION V5 */
.hero-v5 {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, #1a4d3e 0%, #2d5a4a 50%, #5fa583 100%);
  overflow: hidden;
}

/* Badge - أعلى يمين */
.hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse-glow 2s infinite;
}

.hero-badge:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.6);
}

.badge-icon {
  font-size: 20px;
  animation: rocket 1s ease-in-out infinite;
}

.badge-arrow {
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.hero-badge:hover .badge-arrow {
  transform: translateX(-4px);
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
  }
  50% { 
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.7),
                0 0 40px rgba(16, 185, 129, 0.3);
  }
}

@keyframes rocket {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Hero Container */
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 600px;
}

/* Hero Left - Text */
.hero-left {
  padding-right: 40px;
}

.hero-content-wrapper {
  max-width: 600px;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  color: white;
  margin-bottom: 20px;
}

.hero-title-gradient {
  display: block;
  background: linear-gradient(135deg, #FF9500 0%, #FFB800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Hero Right - Image */
.hero-right {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.hero-float {
  position: absolute;
  background: white;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  animation: float 3s ease-in-out infinite;
}

.hero-float-1 {
  top: 40px;
  left: -20px;
}

.hero-float-2 {
  bottom: 40px;
  right: -20px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* 2️⃣ INCLUSIVE BANNER */
.inclusive-banner {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, 
    rgba(16, 185, 129, 0.08) 0%, 
    rgba(59, 130, 246, 0.08) 50%,
    rgba(255, 149, 0, 0.08) 100%
  );
  border-top: 2px solid rgba(16, 185, 129, 0.2);
  border-bottom: 2px solid rgba(16, 185, 129, 0.2);
  padding: 40px 24px;
  margin: 0;
  overflow: hidden;
}

.banner-pattern {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(16, 185, 129, 0.03) 20px,
      rgba(16, 185, 129, 0.03) 40px
    );
  animation: slide-bg 20s linear infinite;
  pointer-events: none;
}

@keyframes slide-bg {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.banner-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.banner-title-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.banner-icon {
  font-size: 40px;
}

.banner-main-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a4d3e;
  margin: 0;
}

.banner-segments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.segment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.segment-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(16, 185, 129, 0.4);
  transform: scale(1.05);
}

.segment-emoji {
  font-size: 28px;
}

.segment-label {
  font-size: 20px;
  font-weight: 700;
  color: #1a4d3e;
}

.segment-separator {
  font-size: 24px;
  color: rgba(16, 185, 129, 0.4);
  font-weight: bold;
}

.banner-description {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 28px;
  font-weight: 500;
}

.banner-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B00 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 
    0 4px 16px rgba(255, 149, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.banner-cta-button:hover::before {
  left: 100%;
}

.banner-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 24px rgba(255, 149, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.banner-cta-button:hover .cta-arrow {
  transform: translateX(-4px);
}

/* 3️⃣ CATEGORY FILTERS */
.category-filters-section {
  padding: 40px 24px;
  background: white;
}

.filters-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 50px;
  border: 2px solid;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  background: white;
}

.filter-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.filter-icon {
  font-size: 20px;
}

.filter-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filter-name {
  font-size: 16px;
}

.filter-count {
  font-size: 13px;
  opacity: 0.7;
}

/* Filter Colors */
.filter-pill-orange {
  border-color: rgba(255, 149, 0, 0.3);
  color: #FF9500;
}

.filter-pill-orange:hover {
  background: rgba(255, 149, 0, 0.1);
  border-color: #FF9500;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 149, 0, 0.2);
}

.filter-pill-emerald {
  border-color: rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.filter-pill-emerald:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.filter-pill-blue {
  border-color: rgba(59, 130, 246, 0.3);
  color: #3b82f6;
}

.filter-pill-blue:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.filter-pill-purple {
  border-color: rgba(168, 85, 247, 0.3);
  color: #a855f7;
}

.filter-pill-purple:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: #a855f7;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.2);
}

.filter-pill-indigo {
  border-color: rgba(99, 102, 241, 0.3);
  color: #6366f1;
}

.filter-pill-indigo:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.filter-pill-red {
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.filter-pill-red:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.2);
}

/* 4️⃣ FEATURED MACHINES */
.featured-machines-section {
  padding: 80px 24px;
  background: linear-gradient(to bottom, white 0%, #f8f9fa 100%);
}

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

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 149, 0, 0.1);
  color: #FF9500;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  color: #1a202c;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 20px;
  color: #718096;
}

.machines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

/* Machine Card */
.machine-card {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.machine-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.machine-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B00 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
}

.machine-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f8f9fa;
}

.machine-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.machine-card:hover .machine-image {
  transform: scale(1.1);
}

.machine-content {
  padding: 24px;
}

.machine-name {
  font-size: 20px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 16px;
  line-height: 1.3;
}

.machine-specs {
  list-style: none;
  margin-bottom: 20px;
}

.machine-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a5568;
  font-size: 15px;
  margin-bottom: 8px;
}

.machine-price-section {
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.machine-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.price-amount {
  font-size: 32px;
  font-weight: 900;
  color: #10b981;
}

.price-currency {
  font-size: 18px;
  font-weight: 700;
  color: #10b981;
}

.price-note {
  font-size: 13px;
  color: #718096;
}

.machine-ctas {
  display: flex;
  gap: 12px;
}

.btn-machine-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-machine-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-machine-secondary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #e2e8f0;
  color: #4a5568;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-machine-secondary:hover {
  border-color: #cbd5e0;
  background: #f7fafc;
  color: #2d3748;
}

.view-all-section {
  text-align: center;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #FF9500;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  gap: 16px;
}

/* Responsive - Hero */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-left {
    padding-right: 0;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .hero-badge {
    top: 16px;
    right: 16px;
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .banner-segments {
    flex-direction: column;
    gap: 12px;
  }
  
  .segment-separator {
    display: none;
  }
  
  .banner-main-title {
    font-size: 24px;
  }
  
  .filters-container {
    gap: 12px;
  }
  
  .filter-pill {
    padding: 12px 20px;
  }
  
  .machines-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* 5️⃣ WHY AREEJ SECTION */
.why-areej-section {
  padding: 80px 24px;
  background: white;
}

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

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

.section-title-lg {
  font-size: 48px;
  font-weight: 900;
  color: #1a202c;
  margin-bottom: 16px;
}

.title-underline {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #10b981 0%, #FF9500 100%);
  margin: 0 auto;
  border-radius: 5px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 20px;
  background: white;
  border: 2px solid;
  transition: all 0.3s ease;
}

.why-card-emerald {
  border-color: rgba(16, 185, 129, 0.2);
}

.why-card-emerald:hover {
  border-color: #10b981;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
}

.why-card-blue {
  border-color: rgba(59, 130, 246, 0.2);
}

.why-card-blue:hover {
  border-color: #3b82f6;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}

.why-card-orange {
  border-color: rgba(255, 149, 0, 0.2);
}

.why-card-orange:hover {
  border-color: #FF9500;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 149, 0, 0.15);
}

.why-card-purple {
  border-color: rgba(168, 85, 247, 0.2);
}

.why-card-purple:hover {
  border-color: #a855f7;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.15);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.3s ease;
}

.why-icon-emerald {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.why-card-emerald:hover .why-icon-emerald {
  background: #10b981;
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.why-icon-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.why-card-blue:hover .why-icon-blue {
  background: #3b82f6;
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.why-icon-orange {
  background: rgba(255, 149, 0, 0.1);
  color: #FF9500;
}

.why-card-orange:hover .why-icon-orange {
  background: #FF9500;
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.why-icon-purple {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.why-card-purple:hover .why-icon-purple {
  background: #a855f7;
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.why-title {
  font-size: 24px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 12px;
}

.why-description {
  font-size: 16px;
  color: #718096;
  line-height: 1.6;
}

/* 6️⃣ CUSTOMER STORIES */
.customer-stories-section {
  padding: 80px 24px;
  background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

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

.section-badge-center {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 149, 0, 0.1);
  color: #FF9500;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle-center {
  font-size: 18px;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.story-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.story-avatar-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.story-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: white;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.story-content {
  text-align: center;
}

.story-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.story-quote {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.story-author {
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}

.author-name {
  font-size: 18px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 4px;
}

.author-role {
  font-size: 14px;
  color: #718096;
  margin-bottom: 8px;
}

.author-machine {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #4a5568;
  font-weight: 600;
}

/* 7️⃣ PRINT HUB BANNER */
.print-hub-banner {
  padding: 0;
  background: linear-gradient(135deg, #FF9500 0%, #FF6B00 100%);
  position: relative;
  overflow: hidden;
}

.print-hub-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.05) 40px,
      rgba(255, 255, 255, 0.05) 80px
    );
  animation: slide-bg 30s linear infinite;
}

.print-hub-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

.print-hub-content {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.print-hub-icon {
  flex-shrink: 0;
  color: white;
  opacity: 0.9;
}

.print-hub-text {
  flex: 1;
  min-width: 300px;
}

.print-hub-title {
  font-size: 36px;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}

.print-hub-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  font-weight: 500;
}

.print-hub-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.print-hub-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #FF9500;
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.print-hub-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* 8️⃣ TRUST SIGNALS BAR */
.trust-signals-bar {
  padding: 40px 24px;
  background: #1a4d3e;
  border-top: 3px solid #10b981;
}

.signals-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.signal-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.signal-icon {
  font-size: 48px;
  color: #10b981;
}

.signal-content {
  text-align: right;
}

.signal-value {
  font-size: 32px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.signal-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* 9️⃣ FINAL CTA */
.final-cta-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, #1a4d3e 0%, #2d5a4a 50%, #5fa583 100%);
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 149, 0, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta-content {
  text-align: center;
}

.final-cta-title {
  font-size: 56px;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}

.final-cta-subtitle {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
  font-weight: 500;
}

.final-cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-final-primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 24px 40px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.btn-final-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}

.btn-final-secondary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 24px 40px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-final-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.btn-label {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.btn-number,
.btn-address {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 600;
}

.final-cta-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
}

/* Responsive - All Sections */
@media (max-width: 768px) {
  .section-title-lg {
    font-size: 32px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .print-hub-content {
    flex-direction: column;
    text-align: center;
  }
  
  .print-hub-title {
    font-size: 28px;
  }
  
  .signals-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .signal-icon {
    font-size: 36px;
  }
  
  .signal-value {
    font-size: 24px;
  }
  
  .final-cta-title {
    font-size: 36px;
  }
  
  .final-cta-subtitle {
    font-size: 18px;
  }
  
  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

