/* --------------------------------------------
   Base Styles & Variables
-------------------------------------------- */
:root {
  /* Colors */
  --primary-color: #4a6cf7;
  --primary-hover: #3d5ee1;
  --secondary-color: #16213e;
  --accent-color: #00e5a0;
  --light-color: #ffffff;
  --dark-color: #0f172a;
  --grey-color: #64748b;
  --light-grey: #f1f5f9;
  --border-color: #e2e8f0;
  --danger-color: #ef4444;
  --success-color: #10b981;
  
  /* Typography */
  --body-font: 'Poppins', sans-serif;
  --h1-size: 3rem;
  --h2-size: 2.25rem;
  --h3-size: 1.5rem;
  --h4-size: 1.25rem;
  --base-size: 1rem;
  --small-size: 0.875rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Other */
  --border-radius: 0.75rem;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Body with animated background */
body {
  font-family: var(--body-font);
  font-size: var(--base-size);
  line-height: 1.6;
  color: var(--secondary-color);
  background: linear-gradient(135deg, #e8f2ff 0%, #cde4ff 100%) !important;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* --------------------------------------------
   Animated SVG Background - MODERN & SMOOTH
-------------------------------------------- */
.animated-background {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: -1 !important;
  pointer-events: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  will-change: transform !important;
}

.animated-background svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  opacity: 1 !important;
}

/* Modern smooth floating animations */
.floating-shape {
  animation: modernFloat 20s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
  opacity: 1 !important;
  transform-origin: center center !important;
  will-change: transform !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.floating-shape:nth-child(1) { animation-delay: 0s !important; }
.floating-shape:nth-child(2) { animation-delay: -3s !important; }
.floating-shape:nth-child(3) { animation-delay: -6s !important; }
.floating-shape:nth-child(4) { animation-delay: -9s !important; }
.floating-shape:nth-child(5) { animation-delay: -12s !important; }
.floating-shape:nth-child(6) { animation-delay: -15s !important; }
.floating-shape:nth-child(7) { animation-delay: -2s !important; }
.floating-shape:nth-child(8) { animation-delay: -5s !important; }

/* Smooth modern floating animation */
@keyframes modernFloat {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1) !important; 
    opacity: 0.9 !important;
  }
  16% { 
    transform: translateY(-35px) translateX(25px) rotate(60deg) scale(1.15) !important; 
    opacity: 1 !important;
  }
  33% { 
    transform: translateY(-50px) translateX(35px) rotate(120deg) scale(1.05) !important; 
    opacity: 0.95 !important;
  }
  50% { 
    transform: translateY(-30px) translateX(40px) rotate(180deg) scale(1.2) !important; 
    opacity: 1 !important;
  }
  66% { 
    transform: translateY(20px) translateX(30px) rotate(240deg) scale(0.95) !important; 
    opacity: 0.95 !important;
  }
  83% { 
    transform: translateY(40px) translateX(-20px) rotate(300deg) scale(1.15) !important; 
    opacity: 1 !important;
  }
}

/* Modern smooth pulse animation */
.pulse-circle {
  animation: modernPulse 8s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
  opacity: 1 !important;
  will-change: transform, opacity !important;
}

.pulse-circle:nth-child(odd) { animation-delay: -2s !important; }
.pulse-circle:nth-child(even) { animation-delay: -4s !important; }

@keyframes modernPulse {
  0%, 100% { 
    opacity: 0.8 !important; 
    transform: scale(1) !important; 
    filter: blur(0px) !important;
  }
  25% { 
    opacity: 0.9 !important; 
    transform: scale(1.2) !important; 
    filter: blur(0.5px) !important;
  }
  50% { 
    opacity: 1 !important; 
    transform: scale(1.35) !important; 
    filter: blur(1px) !important;
  }
  75% { 
    opacity: 0.95 !important; 
    transform: scale(1.25) !important; 
    filter: blur(0.5px) !important;
  }
}

/* Modern smooth wave animation */
.wave-path {
  animation: modernWave 15s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
  opacity: 0.9 !important;
  will-change: transform !important;
}

@keyframes modernWave {
  0%, 100% { 
    transform: translateX(0px) scaleY(1) skewX(0deg) !important; 
    opacity: 0.8 !important;
  }
  25% { 
    transform: translateX(30px) scaleY(1.15) skewX(1deg) !important; 
    opacity: 0.9 !important;
  }
  50% { 
    transform: translateX(45px) scaleY(1.25) skewX(2deg) !important; 
    opacity: 1 !important;
  }
  75% { 
    transform: translateX(25px) scaleY(1.18) skewX(1deg) !important; 
    opacity: 0.9 !important;
  }
}

/* Mouse following effect for certain elements */
.mouse-follow {
  transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Modern connecting lines animation */
.connecting-line {
  animation: modernLineFlow 6s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
  will-change: opacity, stroke-width !important;
}

@keyframes modernLineFlow {
  0%, 100% { 
    opacity: 0.6 !important; 
    stroke-width: 3 !important;
    opacity: 0.4 !important; 
    stroke-width: 2 !important;
    stroke-dasharray: 0, 1000 !important;
  }
  25% { 
    opacity: 0.7 !important; 
    stroke-width: 4 !important;
    stroke-dasharray: 200, 800 !important;
  }
  50% { 
    opacity: 1 !important; 
    stroke-width: 6 !important;
    stroke-dasharray: 500, 500 !important;
  }
  75% { 
    opacity: 0.8 !important; 
    stroke-width: 4 !important;
    stroke-dasharray: 800, 200 !important;
  }
}

/* Modern dot breathing animation */
.breathing-dot {
  animation: modernBreathe 4s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
  will-change: transform, opacity !important;
}

@keyframes modernBreathe {
  0%, 100% { 
    transform: scale(1) !important; 
    opacity: 0.6 !important;
    filter: blur(0px) !important;
  }
  50% { 
    transform: scale(1.5) !important; 
    opacity: 1 !important;
    filter: blur(1px) !important;
  }
}

/* Force all sections to have modern glassmorphism */
.hero {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(12px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  position: relative !important;
  z-index: 1 !important;
}

.featured-products {
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(10px) saturate(150%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  z-index: 1 !important;
}

.software-details {
  background: rgba(248, 250, 252, 0.7) !important;
  backdrop-filter: blur(10px) saturate(140%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  position: relative !important;
  z-index: 1 !important;
}

.testimonials {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(8px) saturate(160%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  z-index: 1 !important;
}

.faq-section {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(12px) saturate(170%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  position: relative !important;
  z-index: 1 !important;
}

.cta-section {
  background: rgba(15, 23, 42, 0.9) !important;
  backdrop-filter: blur(15px) saturate(120%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Ensure page content doesn't block background */
.page-content {
  position: relative !important;
  z-index: 1 !important;
  background: transparent !important;
}

/* --------------------------------------------
   Modern Loading Screen
-------------------------------------------- */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-screen.hide {
  opacity: 0;
  visibility: hidden;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loading-logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  animation: logoFade 2s ease-in-out infinite alternate;
}

.loading-progress {
  position: relative;
  width: 300px;
  height: 4px;
  background: rgba(74, 108, 247, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loading-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  animation: progressLoad 2s ease-out forwards;
}

.loading-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.loading-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: dotPulse 1.4s ease-in-out infinite both;
}

.loading-dot:nth-child(1) { animation-delay: -0.32s; }
.loading-dot:nth-child(2) { animation-delay: -0.16s; }
.loading-dot:nth-child(3) { animation-delay: 0s; }

.loading-text {
  color: var(--grey-color);
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
  opacity: 0.8;
}

@keyframes logoFade {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

@keyframes progressLoad {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes dotPulse {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
  40% { transform: scale(1.2); opacity: 1; }
}

/* Page content initially hidden */
.page-content {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.page-content.show {
  opacity: 1;
}

/* --------------------------------------------
   Package highlights
-------------------------------------------- */
.package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.1), rgba(0, 229, 160, 0.1));
  border-radius: var(--border-radius);
  border: 1px solid rgba(74, 108, 247, 0.2);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--light-color);
  border-radius: 25px;
  font-weight: 600;
  color: var(--dark-color);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
  transition: transform 0.3s ease;
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.highlight-item:hover {
  transform: translateY(-2px);
}

.highlight-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

.highlight-item span {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .package-highlights {
    flex-direction: column;
    gap: 0.75rem;
  }

  .highlight-item {
    min-width: auto;
    justify-content: flex-start;
  }
}

/* --------------------------------------------
   Auto-scrolling software carousel
-------------------------------------------- */
.software-carousel {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
}

.software-carousel h4 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  font-size: 1.1rem;
  font-weight: 600;
}

.carousel-container {
  overflow: hidden;
  border-radius: 12px;
  background: var(--light-grey);
  padding: 1rem;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  animation: autoScroll 20s linear infinite;
}

.software-item {
  min-width: 200px;
  background: var(--light-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
  border: 1px solid var(--border-color);
  position: relative;
  flex-shrink: 0;
}

.software-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.software-icon i {
  font-size: 1.25rem;
  color: var(--light-color);
}

.software-item h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.software-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--danger-color);
  color: var(--light-color);
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.unlock-status {
  display: inline-block;
  background: var(--accent-color);
  color: var(--light-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.carousel-track:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .software-item {
    min-width: 160px;
    padding: 1rem;
  }

  .software-icon {
    width: 40px;
    height: 40px;
  }

  .software-icon i {
    font-size: 1rem;
  }

  .software-item h5 {
    font-size: 0.8rem;
  }

  .carousel-track {
    animation-duration: 15s;
  }

  .loading-progress {
    width: 250px;
  }
}

@media (max-width: 576px) {
  .loading-logo {
    font-size: 2rem;
  }

  .loading-progress {
    width: 200px;
  }
}

/* --------------------------------------------
   Product pricing styles
-------------------------------------------- */
.product-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  border-radius: 8px;
  color: white;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.price-label {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 500;
}

@media (max-width: 768px) {
  .product-price {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .price {
    font-size: 1.25rem;
  }
}

/* --------------------------------------------
   Enhanced FAQ Section Styles
-------------------------------------------- */
.faq-section {
  padding: 4rem 0;
  background-color: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(5px);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(74, 108, 247, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--light-color);
  transition: all 0.3s ease;
  position: relative;
  user-select: none;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
  transform: scaleY(1);
}

.faq-question:hover {
  background-color: var(--light-grey);
}

.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--dark-color);
  font-weight: 600;
  flex: 1;
  padding-right: 1rem;
  line-height: 1.4;
}

.toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  border: 2px solid transparent;
}

.faq-item:hover .toggle-icon {
  background: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color);
}

.faq-item.active .toggle-icon {
  background: var(--primary-color);
  color: var(--light-color);
  transform: rotate(45deg);
  border-color: var(--primary-color);
}

.toggle-icon i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--light-color);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: var(--grey-color);
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.1s;
}

.faq-item.active .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

.faq-more {
  text-align: center;
  margin-top: 3rem;
}

.faq-more .btn {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

/* Mobile FAQ Responsive */
@media (max-width: 768px) {
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    padding-right: 0.75rem;
  }
  
  .faq-answer {
    font-size: 0.9rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }

  .toggle-icon {
    width: 28px;
    height: 28px;
  }

  .toggle-icon i {
    font-size: 0.8rem;
  }
}

/* --------------------------------------------
   Software description animation
-------------------------------------------- */
.software-description {
  display: none;
  animation: fadeIn 0.8s ease-out;
}

.software-description.active {
  display: block;
}

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

/* --------------------------------------------
   Section styling to work with background
-------------------------------------------- */
.hero {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 108, 247, 0.1);
}

.featured-products {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(5px);
}

.software-details {
  background: rgba(248, 250, 252, 0.85) !important;
  backdrop-filter: blur(5px);
}

.testimonials {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(5px);
}

.cta-section {
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* Minor modern touches without changing structure */
.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--dark-color);
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }

p {
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

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

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

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

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

/* --------------------------------------------
   Header & Navigation
-------------------------------------------- */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

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

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

/* Mobile Toggle Button - Fixed */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li {
  position: relative;
  margin: 0 10px;
}

.nav-list > li > a {
  display: block;
  padding: 10px 15px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--primary);
}

.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-list > li > a:hover::after,
.nav-list > li > a.active::after {
  width: 100%;
}

.nav-actions .btn {
  margin-left: 15px;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dropdown-toggle i {
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background: var(--light-gray);
  color: var(--primary);
}

.mega-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 800px;
  min-width: 700px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.mega-dropdown:hover .mega-menu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.mega-menu-section {
  flex: 1;
  min-width: 280px;
  padding: 0;
}

.mega-menu-title {
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
  color: var(--primary);
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-list li {
  margin-bottom: 8px;
}

.mega-menu-list li a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin-bottom: 5px;
}

.mega-menu-list li a:hover {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
}

.mega-menu-list li a i {
  margin-right: 15px;
  width: 24px;
  text-align: center;
  color: var(--primary);
  font-size: 16px;
}

.mega-menu-list li a span {
  font-weight: 500;
  font-size: 15px;
}

.badge-new {
  background: var(--secondary);
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 10px;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-cta {
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Mobile Navigation - Fixed */
@media (max-width: 992px) {
  .mobile-toggle {
    display: flex;
  }

  /* Mobile Navigation Container */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 0 40px 0;
    overflow-y: auto;
    transition: right 0.4s ease;
    z-index: 999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .main-nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    padding: 0 20px;
  }

  .nav-list > li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid var(--light-gray);
  }

  .nav-list > li > a {
    padding: 15px 0;
    width: 100%;
    border-bottom: none;
  }

  .nav-list > li > a::after {
    display: none;
  }

  /* Mobile Dropdowns */
  .dropdown-menu,
  .mega-menu-wrapper {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
    border-radius: 0;
    width: 100%;
    min-width: auto;
    border: none;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
  }

  .mega-menu-wrapper {
    margin-left: 20px;
  }

  .dropdown.active .dropdown-menu,
  .mega-dropdown.active .mega-menu-wrapper {
    max-height: 600px;
    padding: 15px 0;
    background: #f8fafc;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    margin: 10px 0;
    border-radius: 8px;
  }

  .dropdown-toggle i {
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  .dropdown.active .dropdown-toggle i,
  .mega-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: var(--dark);
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
  }

  .dropdown-menu li:last-child a {
    border-bottom: none;
  }

  .dropdown-menu li a:hover {
    background: white;
    color: var(--primary);
  }

  .mega-menu {
    flex-direction: column;
    gap: 20px;
  }

  .mega-menu-section {
    padding: 0;
    margin-bottom: 20px;
  }

  .mega-menu-title {
    font-size: 16px;
    margin-bottom: 15px;
    padding: 0 20px;
    color: var(--primary);
    font-weight: 600;
  }

  .mega-menu-list {
    padding: 0;
    margin: 0;
  }

  .mega-menu-list li a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    color: var(--dark);
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
    background: none;
    border-radius: 0;
    margin-bottom: 0;
  }

  .mega-menu-list li:last-child a {
    border-bottom: none;
  }

  .mega-menu-list li a:hover {
    background: white;
    color: var(--primary);
  }

  .mega-menu-list li a i {
    margin-right: 12px;
    width: 20px;
    font-size: 14px;
  }

  .mega-menu-list li a span {
    font-weight: 500;
    font-size: 15px;
  }

  .badge-new {
    margin-left: auto;
    padding: 2px 8px;
    font-size: 10px;
  }

  .nav-actions {
    width: 100%;
    margin-top: 20px;
  }

  .nav-actions .btn {
    width: 100%;
    text-align: center;
    margin: 10px 0 0 0;
  }

  /* Mobile Overlay */
  body.nav-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 1;
    visibility: visible;
  }

  body.nav-open {
    overflow: hidden;
  }
}

.mega-menu-list a i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-grey);
  border-radius: 0.5rem;
  color: var(--primary-color);
  font-size: 0.875rem;
}

.mega-menu-list a:hover i {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.badge-new {
  display: inline-block;
  background-color: var(--danger-color);
  color: var(--light-color);
  padding: 0.125rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: auto;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* --------------------------------------------
   Mobile Navigation
-------------------------------------------- */
@media (max-width: 992px) {
  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--light-color);
    flex-direction: column;
    padding: 80px 1.5rem 2rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .nav-list > li {
    margin: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-list > li > a {
    padding: 1rem 0;
  }

  .nav-list > li > a::after {
    display: none;
  }

  /* Mobile Dropdowns */
  .dropdown-menu,
  .mega-menu-wrapper {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--light-grey);
    border-radius: 0;
  }

  .dropdown.active .dropdown-menu,
  .mega-dropdown.active .mega-menu-wrapper {
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .dropdown-toggle i {
    margin-left: auto;
    transition: var(--transition);
  }

  .dropdown.active .dropdown-toggle i,
  .mega-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .dropdown-menu li a {
    padding-left: 2rem;
  }

  .mega-menu {
    flex-direction: column;
    gap: 0;
  }

  .mega-menu-title {
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
  }

  .mega-menu-list a {
    padding: 0.5rem 1rem 0.5rem 2rem;
  }

  .nav-actions {
    width: 100%;
    margin-top: 2rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
  }

  /* Overlay */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
  }

  body.nav-open::before {
    opacity: 1;
    visibility: visible;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* --------------------------------------------
   Buttons
-------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  text-align: center;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.9375rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--light-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 108, 247, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.btn-secondary:hover {
  background-color: #0f172a;
  color: var(--light-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 33, 62, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 108, 247, 0.3);
}

/* --------------------------------------------
   Hero Section
-------------------------------------------- */
.hero {
  padding-top: 120px;
  padding-bottom: var(--spacing-xl);
  background: linear-gradient(135deg, #f6f9fc 0%, #f1f5f9 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
  color: var(--grey-color);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-lg);
}

/* --------------------------------------------
   Sections
-------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-sm);
}

.section-header h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--grey-color);
}

/* Featured Products */
.featured-products {
  padding: var(--spacing-xl) 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.product-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

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

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.product-info {
  padding: var(--spacing-md);
}

.product-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.product-info p {
  color: var(--grey-color);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-features span {
  background-color: var(--light-grey);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  color: var(--grey-color);
}

/* Software Details */
.software-details {
  padding: var(--spacing-xl) 0;
  background-color: var(--light-grey);
}

.details-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.details-text {
  flex: 1;
}

.details-image {
  flex: 1;
}

.details-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-lg);
}

.feature-list {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.feature-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
}

.feature-list li:before {
  content: '✓';
  color: var(--success-color);
  margin-right: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials {
  padding: var(--spacing-xl) 0;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-item {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  position: relative;
  margin-bottom: var(--spacing-md);
}

.testimonial-content:before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.author-info p {
  margin-bottom: 0;
  color: var(--grey-color);
  font-size: 0.875rem;
}

/* Bootstrap Accordion Overrides */
.accordion {
  --bs-accordion-border-radius: var(--border-radius);
  --bs-accordion-inner-border-radius: var(--border-radius);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1.25rem;
  --bs-accordion-btn-color: var(--dark-color);
  --bs-accordion-btn-bg: var(--light-color);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a6cf7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a6cf7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: var(--primary-color);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(74, 108, 247, 0.1);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1.25rem;
  --bs-accordion-active-color: var(--primary-color);
  --bs-accordion-active-bg: var(--light-grey);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: var(--light-grey);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  border-color: var(--bs-accordion-btn-focus-border-color);
}

.accordion-button::after {
  background-image: var(--bs-accordion-btn-icon);
}

.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
}

.accordion-body {
  color: var(--grey-color);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--light-color);
  margin-bottom: var(--spacing-sm);
}

.cta-content p {
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
  opacity: 0.9;
}

.cta-content .btn-primary {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.cta-content .btn-primary:hover {
  background-color: #f8fafc;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding-top: var(--spacing-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  color: var(--light-color);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-logo:hover {
  color: var(--light-color);
}

.footer-logo img {
  height: 40px;
  margin-right: 0.5rem;
}

.footer-brand p {
  color: #cbd5e1;
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light-color);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-2px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.footer-nav-group h4 {
  color: var(--light-color);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.footer-nav-group h4:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-nav-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-group ul li {
  margin-bottom: 0.5rem;
}

.footer-nav-group ul li a {
  color: #cbd5e1;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-nav-group ul li a:hover {
  color: var(--light-color);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.copyright p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.legal-links {
  display: flex;
  gap: var(--spacing-md);
}

.legal-links a {
  color: #cbd5e1;
  font-size: 0.875rem;
}

.legal-links a:hover {
  color: var(--light-color);
}

/* --------------------------------------------
   Responsive
-------------------------------------------- */
@media (max-width: 1200px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

@media (max-width: 992px) {
  :root {
    --h1-size: 2.5rem;
    --h2-size: 2rem;
    --h3-size: 1.5rem;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    margin-bottom: var(--spacing-lg);
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .details-content {
    flex-direction: column;
  }
  
  .details-text {
    order: 2;
  }
  
  .details-image {
    order: 1;
    margin-bottom: var(--spacing-lg);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-nav {
    margin-top: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .btn {
    width: 100%;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slider {
    grid-template-columns: 1fr;
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  :root {
    --h1-size: 2rem;
    --h2-size: 1.75rem;
    --h3-size: 1.25rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-item h3 {
    font-size: 1rem;
  }
}

/* --------------------------------------------
   Utilities
-------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

.animate-on-scroll {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

/* WhatsApp Styles */
.whatsapp-icon {
  background-color: rgba(37, 211, 102, 0.1) !important;
  color: #25D366 !important;
}

.whatsapp-item {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  transition: all 0.3s ease;
  padding: 8px;
  margin: -8px;
  border-radius: 12px;
}

.whatsapp-item:hover {
  background-color: rgba(37, 211, 102, 0.05);
}

.whatsapp-item:hover .whatsapp-icon {
  background-color: #25D366 !important;
  color: #ffffff !important;
  transform: scale(1.05);
}

.whatsapp-item .info-text h3 {
  color: #075E54;
}

.product-hero { padding: 4rem 0 2rem 0; background: #f8fafc; }
.product-hero-content { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; }
.product-hero-text { flex: 1 1 350px; }
.product-hero-image { flex: 1 1 350px; text-align: center; }
.product-hero-image img { 
  max-width: 60%; 
  border-radius: 1rem; 
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  margin-top: 2rem;
}
.product-meta { display: flex; gap: 1.5rem; margin: 1rem 0; flex-wrap: wrap; }
.product-meta .meta-item { display: flex; align-items: center; gap: 0.5rem; color: #64748b; font-size: 1rem; }
.product-hero-buttons { margin-top: 1.5rem; display: flex; gap: 1rem; }
.product-badge { background: #4a6cf7; color: #fff; border-radius: 0.5rem; padding: 0.25rem 0.75rem; font-size: 0.95rem; margin-bottom: 0.5rem; display: inline-block; }
.product-overview { background: #fff; padding: 3rem 0; border-radius: 1rem; margin-bottom: 2rem; }
.overview-content { display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start; }
.overview-text { flex: 2 1 350px; }
.overview-video { flex: 1 1 300px; text-align: center; }
.overview-video .video-wrapper { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.overview-video img { width: 100%; height: auto; display: block; }
.overview-video .play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(0,0,0,0.5); border-radius: 50%; padding: 0.75rem; }
.overview-video .play-button i { color: #fff; font-size: 2.5rem; }
.overview-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; flex: 1 1 120px; }
.stat-icon { font-size: 2rem; color: #4a6cf7; margin-bottom: 0.5rem; }
.stat-count { font-size: 1.5rem; font-weight: 700; }
.stat-label { color: #64748b; font-size: 1rem; }
.product-features-section { background: #f8fafc; padding: 3rem 0; }
.features-grid { display: flex; flex-wrap: wrap; gap: 2rem; }
.feature-card { background: #fff; border-radius: 1rem; box-shadow: 0 2px 12px rgba(0,0,0,0.04); padding: 2rem; flex: 1 1 250px; min-width: 220px; text-align: center; }
.feature-icon { font-size: 2.5rem; color: #4a6cf7; margin-bottom: 1rem; }
.download-section { background: #f8fafc; padding: 3rem 0; }
.download-content { display: flex; flex-wrap: wrap; gap: 2rem; }
.download-text { flex: 2 1 350px; }
.download-sidebar { flex: 1 1 250px; }
.sidebar-box { background: #fff; border-radius: 1rem; box-shadow: 0 2px 12px rgba(0,0,0,0.04); padding: 1.5rem; margin-bottom: 1.5rem; }
.check-list { list-style: none; padding: 0; }
.check-list li { margin-bottom: 0.5rem; padding-left: 1.5rem; position: relative; }
.check-list li:before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #10b981; position: absolute; left: 0; top: 0.1rem; }
.faq-section { background: #fff; padding: 3rem 0; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e2e8f0; padding: 1.25rem 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-question h3 { font-size: 1.1rem; margin: 0; }
.faq-answer { display: none; padding-top: 0.75rem; color: #64748b; }
.faq-item.active .faq-answer { display: block; }
.faq-item .toggle-icon { margin-left: 1rem; color: #4a6cf7; }

/* Main Content Padding */
main, 
.product-hero,
.hero,
.section {
  padding-top: calc(var(--header-height) + 2 * var(--spacing-md));
}

/* Request Form Section */
.request-form-section {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

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

.form-group .required {
  color: var(--danger-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-family: var(--body-font);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  background-color: var(--light-color);
  border: 2px solid var(--border-color);
  border-radius: 4px;
  margin-right: 0.75rem;
  transition: var(--transition);
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--primary-color);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1rem;
}

/* How It Works Section */
.how-it-works {
  padding: 4rem 0;
  background-color: var(--light-grey);
}

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

.process-step {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: rgba(74, 108, 247, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.step-content h3 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.step-content p {
  color: var(--grey-color);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* Recently Fulfilled Requests Section */
.recent-requests {
  padding: 4rem 0;
  background-color: var(--light-color);
}

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

.request-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.request-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
  border-color: var(--primary-color);
}

.request-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
}

.completion-date {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.request-description {
  color: var(--grey-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.request-card .btn-outline {
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.5rem;
}

@media (max-width: 768px) {
  .requests-grid {
    grid-template-columns: 1fr;
  }
}

/* Support Page Styles */
.support-section {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.support-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2.5rem;
}

.support-form-container h2 {
  margin-bottom: 2rem;
  text-align: center;
}

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

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

.support-form .form-group input,
.support-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-family: var(--body-font);
  font-size: 1rem;
  transition: var(--transition);
}

.support-form .form-group input:focus,
.support-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
}

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

.support-form .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Contact Page Styles */
.contact-section {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.contact-header {
  margin-bottom: 2rem;
}

.contact-header h2 {
  margin-bottom: 1rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.info-item:hover {
  background-color: var(--light-grey);
}

.info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(74, 108, 247, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.info-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-text p {
  color: var(--grey-color);
  margin-bottom: 0;
}

.social-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.social-contact h3 {
  margin-bottom: 1rem;
}

.social-contact .social-links {
  display: flex;
  gap: 1rem;
}

.social-contact .social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  transition: var(--transition);
}

.social-contact .social-links a:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-3px);
}

.contact-form-container {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 0;
}

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

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-family: var(--body-font);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
}

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

.contact-form .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* WhatsApp Contact Item */
.whatsapp-item {
  text-decoration: none;
  color: inherit;
}

.whatsapp-icon {
  background-color: rgba(37, 211, 102, 0.1) !important;
}

.whatsapp-icon i {
  color: #25D366 !important;
}

.whatsapp-item:hover {
  background-color: rgba(37, 211, 102, 0.05);
}

@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form-container {
    order: 1;
  }
}

@media (max-width: 768px) {
  .support-form-container,
  .contact-form-container,
  .contact-info {
    padding: 1.5rem;
  }
  
  .info-items {
    gap: 1rem;
  }
  
  .social-contact .social-links {
    justify-content: center;
  }
}

/* About Us Page Styles */
.about-section {
  padding: 4rem 0;
  background-color: var(--light-grey);
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.about-section h2 {
  font-size: var(--h2-size);
  color: var(--dark-color);
  margin-bottom: var(--spacing-md);
}

.about-section p {
  color: var(--grey-color);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.about-section .list-unstyled {
  list-style: none;
  padding: 0;
  margin-top: var(--spacing-md);
}

.about-section .list-unstyled li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
  font-weight: 500;
}

.about-section .list-unstyled li i {
  color: var(--success-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.about-section .img-fluid {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-lg);
}

/* Info Cards Section */
.about-section .p-4 {
  background-color: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%; /* Ensure cards have equal height */
}

.about-section .p-4:hover {
  border-color: var(--primary-color);
  box-shadow: var(--box-shadow-lg);
  transform: translateY(-5px);
}

.about-section .p-4 i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.about-section .p-4 h4 {
  font-size: var(--h3-size);
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.about-section .p-4 p {
  font-size: var(--base-size);
  color: var(--grey-color);
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-section .row.align-items-center {
    flex-direction: column-reverse; /* Image on top for mobile */
  }
  
  .about-section .col-md-6 {
    margin-bottom: 2rem; /* Add space between image and text on mobile */
  }

  .about-section .col-md-6:last-child {
    margin-bottom: 0;
  }

  .about-section h2 {
    font-size: 1.8rem;
  }

  .about-section .p-4 {
    padding: var(--spacing-md);
  }

  .about-section .p-4 i {
    font-size: 2rem;
  }

  .about-section .p-4 h4 {
    font-size: 1.3rem;
  }
}

/* Installation Guide Styles */
.installation-guide-section {
  padding: 4rem 0;
  background-color: var(--light-grey);
}

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

.step-card {
  background-color: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  background-color: rgba(74, 108, 247, 0.1); /* primary-color with opacity */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--primary-color);
}

.step-title {
  font-size: var(--h3-size);
  color: var(--dark-color);
  margin-bottom: var(--spacing-sm);
}

.step-card p {
  color: var(--grey-color);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.step-image-placeholder {
  width: 100%;
  height: 180px; /* Fixed height for image placeholders */
  background-color: var(--border-color);
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--grey-color);
  font-style: italic;
  font-size: 0.9rem;
  overflow: hidden; /* Ensure image fits */
}

.step-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the area */
  border-radius: var(--border-radius);
}

.step-image-placeholder span {
  padding: 10px;
  text-align: center;
}

.support-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  color: var(--light-color);
  box-shadow: var(--box-shadow-lg);
}

.support-cta h2 {
  color: var(--light-color);
  margin-bottom: var(--spacing-sm);
}

.support-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.support-cta .btn-primary {
  background-color: var(--light-color);
  color: var(--primary-color);
  border-color: var(--light-color);
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.support-cta .btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--light-color);
  border-color: var(--primary-hover);
}

/* Responsive adjustments for installation guide */
@media (max-width: 768px) {
  .installation-steps {
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: var(--spacing-md);
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .step-title {
    font-size: 1.3rem;
  }

  .step-image-placeholder {
    height: 150px;
  }

  .support-cta {
    padding: 2rem;
  }

  .support-cta h2 {
    font-size: 1.8rem;
  }

  .support-cta p {
    font-size: 0.95rem;
  }

  .support-cta .btn-primary {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
}

/* Add responsive positioning to prevent overflow */
@media (min-width: 993px) {
  .mega-dropdown {
    position: relative;
  }
  
  .mega-menu-wrapper {
    /* Ensure the menu stays within viewport */
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    /* Add a small delay to prevent flickering */
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    /* Prevent any unwanted positioning */
    position: absolute !important;
    top: 100% !important;
  }
  
  .mega-dropdown:hover .mega-menu-wrapper {
    transform: translateX(-50%) translateY(0);
  }
  
  /* Handle edge cases where menu might overflow */
  .mega-dropdown:last-child .mega-menu-wrapper {
    left: auto;
    right: 0;
    transform: translateY(-10px);
  }
  
  .mega-dropdown:last-child:hover .mega-menu-wrapper {
    transform: translateY(0);
  }
  
  .mega-dropdown:first-child .mega-menu-wrapper {
    left: 0;
    transform: translateY(-10px);
  }
  
  .mega-dropdown:first-child:hover .mega-menu-wrapper {
    transform: translateY(0);
  }
  
  /* Ensure mega-menu doesn't get affected by other transforms */
  .mega-menu-wrapper {
    will-change: transform, opacity, visibility;
    backface-visibility: hidden;
    transform-style: preserve-3d;
  }
}



/* Related Products Section */
.related-products {
  padding: 60px 0;
  background: #f8f9fa;
}

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

.related-product-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.related-product-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.related-product-card h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 18px;
}

.related-product-card p {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .related-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}