/* Modern UI Design System for B2B Dropshipping CMS */

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Color Palette */
  --primary: #f84370;
  --primary-dark: #e03a5f;
  --primary-light: #ff5a8a;
  --secondary: #02014d;
  --accent: #f84370;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #06b6d4;
  
  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Text Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== GLOBAL LAYOUT RULES ===== */
/* Default: All content is contained in a box */
body {
  background: var(--gray-100);
  padding: 0;
  margin: 0;
}

/* Main content wrapper - contained width */
.main-content {
  max-width: 1300px !important;
  width: 100% !important;
  margin: 0 auto !important;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 var(--space-lg);
}

/* Hero sections - full width */
.hero {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  overflow: hidden; /* Prevent content overflow */
}

/* Footer - full width */
.footer {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  position: relative;
}

/* Navbar - full width */
.navbar {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  position: relative;
  z-index: 1000;
}

/* Mega menu positioning for full-width navbar */
.mega-menu {
  width: 100vw !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  position: fixed !important;
  top: 100px !important;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  max-height: 80vh;
  overflow: hidden;
}

/* Mega menu visibility states */
.mega-menu.mega-menu-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}

.mega-menu.mega-menu-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateX(-50%) translateY(-10px) !important;
}

/* Mega menu hover functionality - CSS only */
.nav-item-has-mega-menu:hover .mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}



/* Mega menu content */
.mega-menu-content {
  padding: var(--space-md) 0;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  box-sizing: border-box;
}

.mega-menu-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.mega-menu-header h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.mega-menu-header p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.mega-menu-category {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.mega-menu-category:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.category-header i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: var(--space-md);
}

.category-header h4 {
  color: var(--gray-800);
  margin: 0;
}

.category-description {
  color: var(--gray-600);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.category-products {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-products li {
  margin-bottom: var(--space-sm);
}

.category-products a {
  display: flex;
  align-items: center;
  color: var(--gray-700);
  text-decoration: none;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.category-products a:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.category-products i {
  margin-right: var(--space-sm);
  font-size: 0.875rem;
  color: var(--primary);
}

.mega-menu-footer {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gray-200);
}

/* Body scroll control when mega menu is open */
body.mega-menu-open {
  overflow: hidden !important;
}

/* Body scroll control when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden !important;
}

/* Home page slider - full width */
.slider-section,
.hero-slider {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  position: relative;
  /* Allow slider height to be controlled dynamically by JS based on image aspect ratio */
  height: auto;
  min-height: 50vh; /* sensible fallback */
  overflow: hidden;
}

/* Slider Container */
.slider-container {
  position: relative;
  /* make container full-viewport width so banners can bleed edge-to-edge */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: auto; /* will be set dynamically */
  overflow: hidden;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual Slides */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* slides will fill the container which is set by JS */
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Slide Background */
.slide-background {
  position: absolute;
  top: 0;
  /* center a full-viewport width background so image always spans entire viewport */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: none;
  display: flex; /* center the <img> inside */
  align-items: center;
  justify-content: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; /* hide overlay by default so banner text is visible */
  z-index: 2; /* overlay should sit above the image */
  transition: background 0.25s ease;
}

/* Show overlay only when hovering the slider */
.hero-slider:hover .slide-overlay {
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.8) 0%, rgba(237, 30, 121, 0.3) 100%);
}

/* Image inside slide: show full image without cropping */
.slide-image {
  width: 100%;
  height: auto;
  object-fit: contain; /* keeps full image visible; change to cover if you prefer cropping */
  object-position: center center;
  display: block;
  z-index: 1; /* behind overlay */
}

/* Slide Content */
.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--white);
}

  .slide-text {
    max-width: 800px;
    padding: 0 var(--space-xl);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-description {
  font-size: 1.25rem;
  margin-bottom: var(--space-2xl);
  opacity: 0.95;
  line-height: 1.6;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--space-xl);
  pointer-events: none;
}

.slider-nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.slider-nav-btn:hover {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.1);
}

.slider-nav-btn i {
  font-size: 1.25rem;
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--white);
  transform: scale(1.2);
}

.indicator:hover {
  background: var(--white);
  transform: scale(1.1);
}

/* Responsive Styles for Slider */
@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
  }
  
  .slider-container {
    height: 70vh;
  }
  
  .slide-title {
    font-size: 2rem; /* Reduced from 2.5rem to prevent truncation */
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .slide-description {
    font-size: 1rem; /* Reduced from 1.1rem */
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .slide-text {
    padding: 0 20px; /* Reduced padding for mobile */
    max-width: 90%; /* Ensure text fits within viewport */
  }
  
  .slider-nav {
    padding: 0 20px;
  }
  
  .slider-nav-btn {
    width: 50px;
    height: 50px;
  }
  
  .slider-nav-btn i {
    font-size: 1rem;
  }
  
  /* Mobile-specific slider background */
  .slide-background {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%) !important;
  }
}

/* Mobile Menu Styles - Hidden by default on desktop */
.mobile-menu {
  display: none !important;
}

#mobileMenuToggle {
  display: none !important;
}

@media (max-width: 768px) {
  /* Hide desktop navigation on mobile */
  .navbar-nav {
    display: none !important;
  }
  
  /* Show mobile menu toggle */
  #mobileMenuToggle {
    display: block !important;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  #mobileMenuToggle:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
  }
  
  /* Mobile menu container */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
   /*box-shadow: var(--shadow-lg);*/
    z-index: 1002;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: block !important;
    pointer-events: auto; /* Ensure menu items are clickable */
  }
  
  /* Mobile menu header */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    min-height: 90px;
    box-sizing: border-box;
  }
  
  /* Mobile menu logo */
  .mobile-menu-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  
  .mobile-menu-logo img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
  }
  
  /* Mobile menu close button */
  .mobile-menu-close {
    background: var(--danger);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
  }
  
  .mobile-menu-close:hover {
    background: #dc2626;
    transform: scale(1.1);
  }
  
  /* Ensure mobile menu appears above background overlay */
  .mobile-menu.active {
    transform: translateX(0);
    z-index: 1002;
  }
  
  /* Mobile menu background shadow when open */
  body.mobile-menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(248 252 255 / 10%);
    z-index: 1001;
    pointer-events: none; /* Allow clicks to pass through */
  }
  
  /* Mobile navigation */
  .mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--white);
    position: relative;
    z-index: 1003; /* Ensure navigation is above any overlays */
  }
  
  .mobile-nav li {
    border-bottom: 1px solid var(--gray-200);
  }
  
  .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1004; /* Ensure links are clickable */
    cursor: pointer;
  }
  
  .mobile-nav-link:hover,
  .mobile-nav-link.active {
    background: var(--primary);
    color: var(--white);
  }
  
  .mobile-nav-link .nav-content {
    display: flex;
    align-items: center;
    flex: 1;
  }
  
  .mobile-nav-link i:first-child {
    margin-right: var(--space-md);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
  }
  
  .mobile-nav-link .submenu-arrow {
    margin-left: auto;
    color: var(--gray-400);
    transition: transform 0.2s ease;
  }
  
  .mobile-nav-item-has-submenu.active .submenu-arrow {
    transform: rotate(90deg);
    color: var(--white);
  }
  
  /* Mobile submenu */
  .mobile-submenu {
    display: none;
    background: var(--gray-50);
  }
  
  .mobile-nav-item-has-submenu.active .mobile-submenu {
    display: block;
  }
  
  .mobile-submenu-category {
    border-bottom: 1px solid var(--gray-200);
  }
  
  .mobile-category-header {
    display: flex;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: var(--gray-100);
    font-weight: 600;
    color: var(--primary);
  }
  
  .mobile-category-header i {
    margin-right: var(--space-md);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
  }
  
  .mobile-category-products {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-category-products li a {
    display: flex;
    align-items: center;
    padding: var(--space-md) var(--space-lg) var(--space-md) calc(var(--space-lg) + 40px);
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .mobile-category-products li a:hover {
    background: var(--primary);
    color: var(--white);
  }
  
  .mobile-category-products i {
    margin-right: var(--space-md);
    width: 16px;
    text-align: center;
    color: var(--primary);
    flex-shrink: 0;
  }
  
  .mobile-category-products li a:hover i {
    color: var(--white);
  }
  
  .mobile-submenu-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--gray-200);
    background: var(--white);
  }
  
  .mobile-submenu-footer .mobile-nav-link {
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    margin: 0;
  }
  
  .mobile-submenu-footer .mobile-nav-link:hover {
    background: var(--primary-dark);
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 60vh;
  }
  
  .slider-container {
    height: 60vh;
  }
  
  .slide-title {
    font-size: 1.5rem;
  }
  
  .slide-description {
    font-size: 0.9rem;
  }
  
  .slide-text {
    padding: 0 var(--space-lg);
  }
  
  .slider-nav {
    padding: 0 var(--space-md);
  }
  
  .slider-nav-btn {
    width: 45px;
    height: 45px;
  }
}

/* All other sections - contained in main content */
section:not(.hero):not(.footer):not(.slider-section):not(.hero-slider) {
  padding: var(--space-lg) 0;
  margin: 0 0 20px 0; /* Add bottom margin for section gaps */
}

/* Ensure proper spacing for contained sections */
.features,
.stats,
.cta-section,
.service-overview,
.speed-benefits,
.process-section,
.service-levels,
.products-section,
.coverage-section {
  padding: var(--space-xl) 0;
  margin: var(--space-md) 0;
}

/* Content sections styling for contained layout */
.content-section,
.info-section,
.about-section,
.services-section {
  background: var(--white);
  padding: var(--space-lg);
  margin: var(--space-md) 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

/* Container adjustments for contained layout */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
  box-sizing: border-box;
}

/* Responsive adjustments for contained layout */
@media (max-width: 1300px) {
  .main-content {
    margin: var(--space-md);
    border-radius: var(--radius-md);
    max-width: calc(100% - 2 * var(--space-md)) !important;
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
}

@media (max-width: 768px) {
  .main-content {
    margin: 8px;
    border-radius: var(--radius-sm);
    padding: 0 8px;
  }
  
  .container {
    padding: 0 8px;
  }
  
  .hero,
  .footer,
  .hero-slider {
    margin-left: calc(-50vw + 50%) !important;
    width: 100vw !important;
  }
  
  /* Reduce padding for all sections in mobile */
  .content-section,
  .info-section,
  .about-section,
  .services-section,
  .product-section {
    padding: var(--space-md) 8px;
    margin: 8px 0;
  }
  
  /* Hero section mobile improvements */
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 20px;
  }
  
  .hero p {
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 20px;
  }
  
  /* Mobile slider improvements */
  .slide-title {
    font-size: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .slide-description {
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Prevent horizontal scrollbar - Comprehensive Fix */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

/* Ensure no vertical scroll issues in main content */
.main-content {
  overflow: visible !important;
  height: auto !important;
  min-height: auto !important;
}

.main-content section {
  overflow: visible !important;
  height: auto !important;
  min-height: auto !important;
}

/* Ensure all sections are contained */
section {
  overflow-x: hidden !important;
 /* width: 100% !important;
  max-width: 100vw !important;*/
}

/* Force all containers to stay within viewport */

.hero {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  overflow: hidden;
}
/*
.container,
.container-wide,
.main-content,
.navbar,
.footer,
.hero,
.features,
.stats,
.card,
.btn,
.form-input,
.form-textarea,
.form-select {
  overflow-x: hidden !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
*/
/* Ensure grid and flex containers don't overflow */
.grid,
.flex,
.navbar-nav,
.hero-actions,
.cta-actions {
  overflow-x: hidden !important;
  max-width: 100% !important;
  flex-wrap: wrap !important;
}

/* Force all images and media to stay within bounds */
img,
video,
iframe,
svg {
 /* max-width: 100% !important;
  height: auto !important;*/
  overflow: hidden !important;
  display: block; /* prevents inline-gap issues */
}

/* Ensure text doesn't cause overflow */
h1, h2, h3, h4, h5, h6, p, span, a, li {
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  max-width: 100% !important;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  line-height: 1.2;
  color: var(--secondary);
  background-color: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--secondary);
  text-align:-webkit-center;
  padding: 0 10px;
}

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

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

/* ===== LAYOUT COMPONENTS ===== */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  overflow-x: hidden;
  width: 100%;
}

/* Main content wrapper */
.main-content {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container-wide {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-lg {
  padding: var(--space-3xl) 0;
}

/* ===== GRID SYSTEM ===== */
.grid {
  display: grid;
  gap: var(--space-lg);
  overflow-x: hidden;
  width: 100%;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

.card-header {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: var(--space-lg);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.card-body {
  margin-bottom: var(--space-lg);
}

.card-footer {
  padding-top: var(--space-md);
  border-top: 1px solid var(--gray-200);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: var(--space-sm);
  min-height: 2.5rem;
}

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

.btn-white:hover {
  background: var(--gray-100);
  color: var(--primary-dark);
  border-color: var(--gray-100);
}

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

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

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

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

.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
  background: var(--gray-200);
  border-color: var(--gray-400);
}

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

.btn-success:hover {
  background: #059669;
}

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

.btn-warning:hover {
  background: #d97706;
}

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

.btn-danger:hover {
  background: #dc2626;
}

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

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

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.75rem;
  min-height: 2rem;
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
  min-height: 3rem;
}

.btn-full {
  width: 100%;
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}

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

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: var(--danger);
}

.form-error {
  color: var(--danger);
  font-size: 0.875rem;
  margin-top: var(--space-xs);
}

.form-help {
  color: var(--secondary);
  font-size: 0.875rem;
  margin-top: var(--space-xs);
}

/* ===== ALERTS ===== */
.alert {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  border: 1px solid transparent;
}

.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0;
}

.alert-warning {
  background: #fffbeb;
  color: #92400e;
  border-color: #fcd34d;
}

.alert-danger {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

.alert-info {
  background: #eff6ff;
  color: #1e40af;
  border-color: #bfdbfe;
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-2xl);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

.badge-outline {
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
}

/* ===== NAVIGATION ===== */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  min-height: 90px;
  overflow-x: hidden;
  max-width: 100vw;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  min-height: 70px;
  align-items: center;
  overflow-x: hidden;
  max-width: 100%;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.navbar-nav li {
  list-style: none;
}

.nav-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.nav-link i {
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--gray-100);
}

/* Active state for navigation links - High specificity */
.navbar .navbar-nav .nav-link.active {
  color: var(--white) !important;
  background: var(--primary) !important;
  border-radius: var(--radius-md);
}

/* External link indicator for portal links only */
.nav-link[href*="b2bportal"]::after {
  content: "↗";
  margin-left: 0.25rem;
  font-size: 0.75em;
  opacity: 0.7;
}

.mobile-nav-link[href*="b2bportal"]::after {
  content: "↗";
  margin-left: 0.25rem;
  font-size: 0.75em;
  opacity: 0.7;
}

/* Ensure only one link shows as active - High specificity */
.navbar .navbar-nav .nav-link:not(.active) {
  color: var(--secondary) !important;
  background: transparent !important;
}

/* Override any conflicting styles */
.navbar .navbar-nav .nav-link {
  transition: all 0.2s ease;
}

/* Force active state visibility */
.navbar .navbar-nav .nav-link.active * {
  color: var(--white) !important;
}

/* Mega menu navigation item styles */
.nav-item-has-mega-menu {
  position: relative;
}

.nav-item-has-mega-menu .nav-link {
  position: relative;
}

.mega-menu-arrow {
  margin-left: 0.25rem;
  font-size: 0.75em;
  transition: transform 0.2s ease;
}

.nav-item-has-mega-menu:hover .mega-menu-arrow {
  transform: rotate(180deg);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
  align-items: center;
}

.nav-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
}

.nav-link:hover {
  color: var(--primary);
  background: var(--gray-100);
}

.nav-link.active {
  color: var(--white) !important;
  background: var(--primary) !important;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
  padding: var(--space-3xl) 0;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  position: relative;
}

.hero .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  width: 100%;
  box-sizing: border-box;
}

.hero h1 {
  font-family: Montserrat, system-ui;
  
  color: #fff !important;
  margin: 0 0 10px;
}

.hero p {
  max-width: 860px;
  margin: 8px auto 22px;
  color: #fff;
  opacity: 0.95;
}

.hero-title {
  
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--space-2xl);
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FEATURES ===== */
.features {
  background: var(--white);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--white);
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.feature-description {
  color: var(--secondary);
  line-height: 1.6;
}

/* ===== STATS ===== */
.stats {
  background: var(--gray-50);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.stat-label {
  color: var(--secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.social-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  transition: var(--transition);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  text-decoration: none;
}

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

.social-link:hover {
  color: var(--white);
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-description {
  color: var(--white);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.footer-copyright {
  color: var(--white);
  margin: 0;
}

.footer-links li {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.footer-links a {
  color: var(--white);
  transition: var(--transition);
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--white);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: var(--space-lg);
  text-align: center;
  color: var(--gray-300);
}

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

/* General table styling */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  border-right: 1px solid var(--gray-100);
}

th {
  background: var(--gray-100);
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

td {
  background: var(--white);
  color: var(--secondary);
}

tr:nth-child(even) td {
  background: var(--gray-50);
}

tr:hover td {
  background: var(--gray-100);
  color: var(--secondary);
  transition: all 0.2s ease;
}

/* Mobile table improvements */
@media (max-width: 768px) {
  /* Create a scrollable container for tables */
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    margin: 20px 0;
  }
  
  table {
    border-collapse: collapse;
    width: 100%;
    min-width: 500px; /* Ensure all columns are visible */
    font-size: 14px; /* Smaller font for mobile */
  }
  
  th, td {
    padding: 10px 8px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
    border-right: 1px solid var(--gray-100);
    white-space: nowrap;
    vertical-align: top;
  }
  
  th {
    background: var(--gray-100);
    color: var(--secondary);
    font-weight: 600;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  td {
    background: var(--white);
  }
  
  tr:nth-child(even) td {
    background: var(--gray-50);
  }
  
  tr:hover td {
    background: var(--gray-100);
    color: var(--secondary);
  }
  
  /* First column (weight slab) should be sticky */
  th:first-child,
  td:first-child {
    position: sticky;
    left: 0;
    background: var(--gray-100);
    color: var(--secondary);
    font-weight: 600;
    z-index: 11;
  }
  
  td:first-child {
    background: var(--gray-50);
    color: var(--secondary);
  }
  
  tr:nth-child(even) td:first-child {
    background: var(--white);
    color: var(--secondary);
  }
}

/* Standardized list styling with unique tick marks */
ul, ol {
  list-style: none;
  padding-left: 0;
}

ul li, ol li {
  position: relative;
  padding-left: 25px;
  margin-bottom: var(--space-sm);
}

ul li::before, ol li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1em;
}

/* Special styling for nested lists */
ul ul li::before, ol ol li::before {
  content: "▶";
  color: var(--secondary);
  font-size: 0.9em;
}

/* Exclude navigation and menu items from tick marks */
.navbar-nav li::before,
.mobile-nav li::before,
.mobile-submenu li::before,
.mobile-category-products li::before,
.navbar-nav ul li::before,
.mobile-nav ul li::before,
.mobile-submenu ul li::before,
.mobile-category-products ul li::before,
.footer-links li::before,
.social-links li::before,
.breadcrumb li::before,
.mega-menu-category ul li::before,
.mega-menu-category ul ul li::before {
  content: none !important;
}

.navbar-nav li,
.mobile-nav li,
.mobile-submenu li,
.mobile-nav li,
.mobile-submenu li,
.mobile-category-products li,
.navbar-nav ul li,
.mobile-nav ul li,
.mobile-submenu ul li,
.mobile-category-products ul li,
.footer-links li,
.social-links li,
.breadcrumb li,
.mega-menu-category ul li,
.mega-menu-category ul ul li {
  padding-left: 0 !important;
}

/* Only apply tick marks to content lists (not navigation) */
.content-section ul li::before,
.info-section ul li::before,
.about-section ul li::before,
.services-section ul li::before,
.product-section ul li::before,
.features ul li::before,
.benefits ul li::before,
.overview-content ul li::before,
.option-features li::before,
.pricing-features li::before,
.tracking-features ul li::before,
.coverage-details ul li::before {
  content: "✓" !important;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1em;
}

.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--gray-500); }

.bg-primary { background: var(--primary); }
.bg-success { background: var(--success); }
.bg-warning { background: var(--warning); }
.bg-danger { background: var(--danger); }
.bg-light { background: var(--gray-100); }
.bg-white { background: var(--white); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space-md); }
.p-4 { padding: var(--space-lg); }
.p-5 { padding: var(--space-xl); }

/* ===== PRODUCT PAGE STYLES ===== */
.product-section {
  padding: var(--space-lg) 0;
  background: var(--white);
  margin: var(--space-md) 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

/* Product page two-column layout */
.product-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.product-col {
  flex: 1;
}

/* Desktop side-by-side layout */
@media (min-width: 768px) {
  .product-row {
    flex-direction: row;
    gap: 2rem;
  }
  
  .product-col {
    flex: 1;
    min-width: 0; /* Prevents overflow */
  }
}

/* Service page grid layouts */
.features-grid,
.products-grid,
.process-grid,
.benefits-grid,
.categories-grid,
.pricing-grid,
.faq-grid,
.overview-grid,
.quality-steps-grid,
.service-levels-grid,
.coverage-areas-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

/* Process steps grid - special layout */
.process-steps-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

/* Desktop grid layouts */
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
  
  .quality-steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
  
  .service-levels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .coverage-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Process steps - different layouts based on page */
  .dropshipping .process-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: var(--space-lg);
  }
  
  /* Default 4-column layout for other pages */
  .process-steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
  
  /* Dropshipping specific layout */
  .dropshipping .process-steps-grid .process-step-card:nth-child(1),
  .dropshipping .process-steps-grid .process-step-card:nth-child(2),
  .dropshipping .process-steps-grid .process-step-card:nth-child(3) {
    grid-row: 1;
  }
  
  .dropshipping .process-steps-grid .process-step-card:nth-child(4),
  .dropshipping .process-steps-grid .process-step-card:nth-child(5) {
    grid-row: 2;
  }
  
  .dropshipping .process-steps-grid .process-step-card:nth-child(4) {
    grid-column: 3;
  }
  
  .dropshipping .process-steps-grid .process-step-card:nth-child(5) {
    grid-column: 2;
  }
}

/* Mobile grid adjustments */
@media (max-width: 767px) {
  .features-grid,
  .products-grid,
  .process-grid,
  .benefits-grid,
  .categories-grid,
  .pricing-grid,
  .faq-grid,
  .process-steps-grid {
    gap: var(--space-md);
  }
}

/* Process step cards styling */
.process-step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  height: auto;
  min-height: auto;
  overflow: visible;
}

/* Add flow arrows between steps */
.process-step-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: translateY(-50%);
  opacity: 0.6;
}

/* Remove arrow from last step in each row */
.process-step-card:nth-child(3)::after, 
.process-step-card:nth-child(4)::after {
  display: none;
}

/* Add downward arrow from step 3 to step 4 */
.process-step-card:nth-child(3)::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  transform: translateX(-50%);
  opacity: 0.6;
}
 

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

.process-step-card .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto var(--space-md);
}

.process-step-card .step-content h3 {
  color: var(--secondary);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.process-step-card .step-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Additional grid styling */
.benefit-card,
.feature-item,
.category-card,
.pricing-card,
.faq-item,
.quality-step-card,
.level-card,
.coverage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.benefit-card:hover,
.feature-item:hover,
.category-card:hover,
.pricing-card:hover,
.quality-step-card:hover,
.level-card:hover,
.coverage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-icon,
.feature-icon,
.level-icon,
.product-icon,
.coverage-icon,
.overview-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--white);
  font-size: 1.5rem;
}

.benefit-card h3,
.feature-item h3,
.category-card h3,
.pricing-card h3 {
  color: var(--secondary);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.benefit-card p,
.feature-item p,
.category-card p,
.pricing-card p {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Quality step card specific styling */
.quality-step-card {
  text-align: center;
}

.quality-step-card .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto var(--space-md);
}

.quality-step-card .step-content h3 {
  color: var(--secondary);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.quality-step-card .step-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Fast dispatch specific styling */
.fast-dispatch {
  overflow: visible !important;
}

 

/* Service level cards */
.level-card {
  text-align: center;
}

.level-card .level-time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: var(--space-sm) 0;
}

.level-card .level-features {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0 0;
  text-align: left;
}

.level-card .level-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: var(--space-sm);
  color: var(--gray-600);
}

.level-card .level-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Coverage cards */
.coverage-card h3 {
  color: var(--secondary);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.coverage-card h3 i {
  color: var(--primary);
  font-size: 1.5rem;
}

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

.coverage-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: var(--space-sm);
  color: var(--gray-600);
}

.coverage-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Product cards */
.product-card {
  text-align: center;
  position: relative;
}

.product-card .delivery-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Process Timeline Styling */
.process-timeline {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  transform: translateX(-50%);
}

.process-timeline .process-step {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  position: relative;
}

.process-timeline .process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-timeline .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
  position: relative;
}

.process-timeline .step-content {
  flex: 1;
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.process-timeline .step-content h3 {
  color: var(--secondary);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.process-timeline .step-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Design Process Steps - 3 cards per row */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.process-steps .process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.3s ease;
  display: block;
  flex-direction: column;
}

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

.process-steps .step-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--white);
  font-size: 2rem;
}

.process-steps .step-content h3 {
  color: var(--secondary);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.process-steps .step-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--white);
  font-size: 1.5rem;
}

.service-card h3 {
  color: var(--secondary);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.service-card p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
  text-align: left;
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: var(--space-sm);
  color: var(--gray-600);
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.service-footer {
  margin-top: auto;
}

/* Pricing Cards */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-header h3 {
  color: var(--secondary);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.pricing-period {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.pricing-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: var(--space-sm);
  color: var(--gray-600);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

.faq-item {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.faq-item p {
  color: var(--secondary);
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsive Design for Process Timeline */
@media (max-width: 768px) {
  .process-timeline::before {
    left: 20px;
  }
  
  .process-timeline .process-step {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .process-timeline .process-step:nth-child(even) {
    flex-direction: column;
  }
  
  .process-timeline .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .process-timeline .step-content {
    padding: var(--space-md);
  }
  
  /* Design Process Steps Mobile */
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .process-steps .process-step {
    padding: var(--space-md);
  }
  
  .process-steps .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  /* Process Steps Grid Mobile */
  .process-steps-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-md);
    overflow: visible !important;
    height: auto !important;
  }
  
  .process-step-card {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .service-card:hover {
    transform: none;
  }
  
  .service-card:hover:hover {
    transform: translateY(-2px);
  }
}

/* Overview section styling */
.overview-content h2 {
  color: var(--secondary);
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
}

.overview-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.overview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

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

.overview-card h3 {
  color: var(--secondary);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

/* CTA section styling */
.card.bg-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
  color: var(--white) !important;
}

.card.bg-primary h2 {
  color: var(--white) !important;
  margin-bottom: var(--space-md);
}

.card.bg-primary p {
  color: var(--white) !important;
  opacity: 0.95;
}

.card.bg-primary .flex {
  margin-top: var(--space-lg);
}

.product-section .container {
  padding: 0 8px 0 8px;
  max-width: 1300px;
  margin: 0 auto;
}
.product-section .container h2 {
  margin-top: 0;
  font-weight: 700;
    line-height: 1.2;
    font-size: 1.5rem;

}
.product-section:nth-child(even) {
  background: var(--gray-50);
}

/* Additional spacing between sections */
.product-section + .product-section {
  margin-top: var(--space-lg);
}

.product-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-lg);
}

.breadcrumb {
  margin-bottom: var(--space-lg);
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.breadcrumb a:hover {
  opacity: 1;
}

/* ===== SERVICE PAGE STYLES ===== */
.service-overview {
  padding: 5rem 0;
}

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

.overview-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

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

.overview-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.overview-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.overview-card p {
  color: var(--secondary);
  line-height: 1.6;
}

/* Shipping Options */
.shipping-options {
    padding: 5rem 0;
}

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

.option-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.option-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

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

.option-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.option-header {
    background: var(--primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.option-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.option-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.option-details {
    padding: 2rem;
    text-align: center;
}

.delivery-time {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.option-features li {
    padding: 0.5rem 0;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.option-features i {
    color: var(--success);
}

.option-footer {
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

/* Coverage Section */
.coverage-section {
    padding: 5rem 0;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.coverage-map {
    text-align: center;
}

.map-placeholder {
    background: var(--gray-100);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--primary);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.coverage-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.coverage-region h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coverage-region p {
    color: var(--secondary);
    line-height: 1.6;
}

/* Tracking Section */
.tracking-section {
    padding: 5rem 0;
}

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

.tracking-feature {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.tracking-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tracking-feature .feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.tracking-feature .feature-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.tracking-feature .feature-content p {
    color: var(--secondary);
    line-height: 1.6;
}

/* Special Services */
.special-services {
    padding: 5rem 0;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card .service-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    color: #ffffff !important;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ffffff !important;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-outline {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.cta-actions .btn-outline:hover {
    background: #ffffff !important;
    color: var(--primary) !important;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-actions .btn i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shipping-hero h1 {
        font-size: 2rem;
    }
    
    .shipping-hero p {
        font-size: 1rem;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .option-card.featured {
    transform: none;
    }
    
    .option-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .hero-buttons,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .tracking-features {
        grid-template-columns: 1fr;
    }
    
    .tracking-feature {
        flex-direction: column;
    text-align: center;
    }
}

/* Prevent horizontal scrollbar - Comprehensive Fix */
.overview-grid,
.options-grid,
.coverage-content,
.tracking-features,
.services-grid,
.faq-grid,
.cta-buttons,
.overview-card,
.option-card,
.coverage-map,
.coverage-details,
.tracking-feature,
.service-card,
.faq-item,
.cta-content {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Force all text elements to wrap properly */
.overview-card h3,
.option-card h3,
.coverage-region h4,
.tracking-feature h3,
.service-card h3,
.faq-item h3,
.cta-content h2,
.cta-content p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
}

/* Ensure icons don't cause overflow */
.overview-icon,
.option-header i,
.coverage-region i,
.tracking-feature .feature-icon,
.service-card .service-icon {
    max-width: 100% !important;
    overflow: hidden !important;
}

/* Dropshipping Page Styles */
.dropshipping-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    color: #ffffff !important;
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.dropshipping-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.dropshipping-hero .hero-content {
    position: relative;
    z-index: 2;
}

.dropshipping-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.dropshipping-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ffffff !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why Dropshipping Section */
.why-dropshipping {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
  color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
  color: var(--secondary);
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.process-step p {
    color: var(--secondary);
    line-height: 1.6;
}

.process-arrow {
    color: var(--primary);
    font-size: 2rem;
    display: none;
}

/* Features Section */
.dropshipping-features {
    padding: 5rem 0;
}

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--secondary);
    line-height: 1.6;
}

/* Product Categories */
.product-categories {
    padding: 5rem 0;
}

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

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

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

.category-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-content {
    padding: 1.5rem;
    text-align: center;
}

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

.category-content p {
  color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
}

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

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.pricing-features i {
    color: var(--success);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    color: #ffffff !important;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cta-section .cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
  display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dropshipping-hero h1 {
        font-size: 2rem;
    }
    
    .dropshipping-hero p {
        font-size: 1rem;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .process-arrow {
        display: block;
        transform: rotate(90deg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
  align-items: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Services Index Page Styles */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
  color: var(--secondary);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
  transition: var(--transition);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--secondary);
    line-height: 1.6;
}

/* Service Detail Sections */
.service-detail-section {
    padding: 5rem 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-content.reverse {
    /* Use explicit grid placement instead of changing text direction */
}

.service-detail-content.reverse .service-image {
    grid-column: 1;
}

.service-detail-content.reverse .service-text {
    grid-column: 2;
}

.service-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-text p {
    font-size: 1.125rem;
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.feature-item span {
    color: var(--secondary);
    font-size: 1.125rem;
}

.service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Process Section */
.process-section {
    padding: 5rem 0;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.process-step p {
    color: var(--secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    color: #ffffff !important;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cta-section .cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-content.reverse {
        direction: ltr;
    }
    
    .hero-buttons,
    .service-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Artwork Proofing Page Styles */
.artwork-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    color: #ffffff !important;
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.artwork-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.artwork-hero .hero-content {
    position: relative;
    z-index: 2;
}

.artwork-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.artwork-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ffffff !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Overview Section */
.proofing-overview {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--secondary);
}

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

.overview-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.overview-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.overview-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

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

.overview-card p {
    color: var(--secondary);
    line-height: 1.6;
}

/* Process Section */
.proofing-process {
    padding: 5rem 0;
}

.process-timeline {
    position: relative;
    margin-top: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
}

.step-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    flex: 1;
    max-width: 400px;
}

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

.step-content p {
    color: var(--secondary);
    line-height: 1.6;
}

/* Services Section */
.proofing-services {
    padding: 5rem 0;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Requirements Section */
.proofing-requirements {
    padding: 5rem 0;
}

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

.requirement-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
}

.requirement-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.requirement-card p {
    color: var(--secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
}

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

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.pricing-features i {
    color: var(--success);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
    color: #ffffff !important;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cta-section .cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .artwork-hero h1 {
        font-size: 2rem;
    }
    
    .artwork-hero p {
        font-size: 1rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}
.text-center p{
  text-align: center !important;
}