/* =============================================================================
   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;
  left: 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;
    left: 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;
}

