/* ===================================
   PRINTMASTER PRO - DESIGN SYSTEM
   Premium Commercial Printing Press
   =================================== */

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

/* === CSS RESET === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === ROOT VARIABLES === */
:root {
  /* Colors - Navy Blue & White Theme */
  --color-primary: #0A2463;
  --color-primary-dark: #061742;
  --color-primary-light: #1E3A8A;
  --color-secondary: #FFFFFF;
  --color-accent: #000000;
  --color-accent-soft: #1F2937;

  /* Grays */
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;

  /* Semantic Colors */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Font 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;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
}

/* === BASE STYLES === */
html {
  scroll-behavior: smooth;
  font-size: 14px;
  /* Reduced from 16px to make everything smaller */
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-gray-800);
  background-color: var(--color-secondary);
  overflow-x: hidden;
}

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

h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
}

h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
}

h3 {
  font-size: var(--text-3xl);
  font-weight: 700;
}

h4 {
  font-size: var(--text-2xl);
  font-weight: 600;
}

h5 {
  font-size: var(--text-xl);
  font-weight: 600;
}

h6 {
  font-size: var(--text-lg);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-gray-700);
}

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

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

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background-color: rgba(10, 36, 99, 0.98);
  box-shadow: var(--shadow-lg);
}

.navbar.scrolled .nav-link {
  color: var(--color-secondary);
}

.navbar.scrolled .logo {
  color: var(--color-secondary);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary);
  transition: color var(--transition-base);
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-primary-light);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 80%;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

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

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

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.btn-large {
  padding: var(--space-5) var(--space-12);
  font-size: var(--text-lg);
}

.btn-small {
  padding: var(--space-2) var(--space-6);
  font-size: var(--text-sm);
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-primary);
  overflow: hidden;
  padding-top: var(--header-height);
}

@keyframes cmykGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Old background image removed to clean up color explosion design */

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-12) var(--space-6);
  text-align: center;
  color: var(--color-secondary);
}

.hero h1 {
  color: var(--color-secondary);
  font-size: var(--text-6xl);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease-out;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-xl);
  max-width: 700px;
  margin: 0 auto var(--space-8);
  animation: fadeInUp 1s ease-out;
}

.hero-cta {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out;
}

/* === SECTIONS === */
.section {
  padding: var(--space-20) var(--space-6);
}

.section-dark {
  background-color: var(--color-gray-900);
  color: var(--color-secondary);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-secondary);
}

.section-dark p {
  color: var(--color-gray-300);
}

.section-light {
  background-color: var(--color-gray-50);
}

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  position: relative;
  display: inline-block;
}

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

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  max-width: 700px;
  margin: var(--space-6) auto 0;
}

/* === GRID LAYOUTS === */
.grid {
  display: grid;
  gap: var(--space-8);
}

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

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

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

/* === CARDS === */
.card {
  background-color: var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
}

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

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-6);
}

.card-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}

.card-text {
  color: var(--color-gray-700);
  line-height: 1.7;
}

/* === DEPARTMENT CARDS === */
.department-card {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-gray-50) 100%);
  border: 2px solid var(--color-gray-200);
  position: relative;
  overflow: hidden;
}

.department-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
}

.department-card:hover::before {
  width: 100%;
  opacity: 0.05;
}

.department-icon {
  font-size: var(--text-5xl);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-accent);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-4);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  background-color: var(--color-secondary);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
}

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

.form-error {
  color: var(--color-error);
  font-size: var(--text-sm);
  margin-top: var(--space-2);
}

/* === FOOTER === */
.footer {
  background-color: var(--color-accent);
  color: var(--color-secondary);
  padding: var(--space-16) var(--space-6) var(--space-8);
}

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

.footer-section h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-4);
  font-size: var(--text-xl);
}

.footer-section p,
.footer-section a {
  color: var(--color-gray-300);
  font-size: var(--text-sm);
  line-height: 1.8;
}

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

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

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

.footer-bottom {
  border-top: 1px solid var(--color-gray-700);
  padding-top: var(--space-6);
  text-align: center;
  color: var(--color-gray-400);
  font-size: var(--text-sm);
}

/* === WHATSAPP BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  z-index: 999;
  transition: all var(--transition-base);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-2xl);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Scroll animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* === COLOR EXPLOSION HERO ENHANCEMENTS === */

/* Enhanced Hero with Color Explosion */
.hero-explosion {
  position: relative;
  background: var(--color-primary);
}

/* Color Explosion Background Image - Disabled */
.hero-explosion-bg {
  display: none;
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.25;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(1.05);
  }
}

/* Ink Splash Accent - Disabled */
.ink-splash-accent {
  display: none;
}

@keyframes floatRotate {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-30px, -30px) rotate(10deg);
  }
}

/* Animated Color Particles - Disabled */
.color-particles {
  display: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.6;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.particle-cyan {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #00d4ff, transparent);
  top: 20%;
  left: 10%;
  animation: floatParticle1 15s infinite;
}

.particle-magenta {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #ff00ff, transparent);
  top: 60%;
  left: 70%;
  animation: floatParticle2 18s infinite;
}

.particle-yellow {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #ffed00, transparent);
  top: 40%;
  right: 15%;
  animation: floatParticle3 12s infinite;
}

.particle-cyan-2 {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, #00d4ff, transparent);
  bottom: 30%;
  right: 25%;
  animation: floatParticle4 20s infinite;
}

.particle-magenta-2 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #ff00ff, transparent);
  top: 15%;
  right: 40%;
  animation: floatParticle5 16s infinite;
}

.particle-yellow-2 {
  width: 75px;
  height: 75px;
  background: radial-gradient(circle, #ffed00, transparent);
  bottom: 20%;
  left: 30%;
  animation: floatParticle6 14s infinite;
}

@keyframes floatParticle1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -30px) scale(1.2);
  }

  66% {
    transform: translate(-30px, 40px) scale(0.9);
  }
}

@keyframes floatParticle2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-40px, 50px) scale(0.8);
  }

  66% {
    transform: translate(60px, -20px) scale(1.3);
  }
}

@keyframes floatParticle3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-50px, -50px) scale(1.1);
  }
}

@keyframes floatParticle4 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, 40px) scale(0.9);
  }
}

@keyframes floatParticle5 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, 60px) scale(1.2);
  }

  66% {
    transform: translate(-50px, -30px) scale(0.85);
  }
}

@keyframes floatParticle6 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-40px, -40px) scale(1.15);
  }
}

/* Gradient Text Effect */
.hero-title-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.2);
  }
}

.hero-subtitle {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Enhanced Button Animations */
.btn-pulse {
  position: relative;
  overflow: hidden;
  animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(10, 36, 99, 0.7);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(10, 36, 99, 0);
  }
}

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

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

.btn-glow {
  position: relative;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(255, 0, 255, 0.4);
  transform: translateY(-3px) scale(1.05);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  .hero-explosion,
  .particle,
  .hero-explosion-bg,
  .ink-splash-accent,
  .btn-pulse,
  .hero-title-gradient {
    animation: none !important;
  }

  .btn-glow:hover {
    transform: none;
  }
}


/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {

  /* Reduce base font size by 15% on mobile */
  html {
    font-size: 11.9px;
    /* 14px * 0.85 = 11.9px */
  }

  :root {
    --text-5xl: 2.5rem;
    --text-6xl: 3rem;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-secondary);
    flex-direction: column;
    padding: var(--space-8);
    transition: left var(--transition-base);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: var(--text-4xl);
  }

  .hero p {
    font-size: var(--text-lg);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: var(--space-12) var(--space-4);
  }

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

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

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}


@media (max-width: 480px) {
  .btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
  }
}

/* ===================================
   PREMIUM DEPARTMENTS PAGE STYLES
   21st Century Modern Design
   =================================== */

/* === DEPARTMENT NAVIGATION PILLS === */
.dept-nav-pills {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dept-pill {
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-secondary);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dept-pill:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator::after {
  content: '↓';
  font-size: var(--text-3xl);
  color: var(--color-secondary);
  opacity: 0.7;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* === GLASSMORPHISM DEPARTMENT CARDS === */
.dept-card-premium {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(10, 36, 99, 0.1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.dept-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.dept-card-premium:hover::before {
  opacity: 1;
}

.dept-card-premium:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px 0 rgba(10, 36, 99, 0.2);
  border-color: var(--color-primary-light);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* === 3D DEPARTMENT CARD TRANSFORMS === */
.dept-card-3d {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.dept-card-3d .card-inner {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}

.dept-card-3d:hover .card-inner {
  transform: rotateY(5deg) rotateX(5deg);
}

/* === ANIMATED DEPARTMENT ICONS === */
.dept-icon-animated {
  font-size: var(--text-5xl);
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.dept-card-premium:hover .dept-icon-animated {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 10px 20px rgba(10, 36, 99, 0.3));
}

.dept-icon-animated::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(10, 36, 99, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.dept-card-premium:hover .dept-icon-animated::after {
  opacity: 1;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

/* === CAPABILITY BADGES === */
.capability-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.badge {
  padding: var(--space-1) var(--space-3);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: var(--color-secondary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.5s ease-out forwards;
}

.badge:nth-child(1) {
  animation-delay: 0.1s;
}

.badge:nth-child(2) {
  animation-delay: 0.2s;
}

.badge:nth-child(3) {
  animation-delay: 0.3s;
}

.badge:nth-child(4) {
  animation-delay: 0.4s;
}

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

.badge-success {
  background: linear-gradient(135deg, #10B981, #059669);
}

.badge-warning {
  background: linear-gradient(135deg, #F59E0B, #D97706);
}

.badge-info {
  background: linear-gradient(135deg, #3B82F6, #2563EB);
}

/* === STATISTICS COUNTER SECTION === */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin: var(--space-12) 0;
}

.stat-card {
  text-align: center;
  padding: var(--space-8);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  margin-bottom: var(--space-2);
  background: linear-gradient(135deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === PROGRESS CIRCLE === */
.progress-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-4);
  position: relative;
}

.progress-circle svg {
  transform: rotate(-90deg);
}

.progress-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 8;
}

.progress-circle-fill {
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339;
  stroke-dashoffset: 339;
  transition: stroke-dashoffset 2s ease-out;
}

.progress-circle.animated .progress-circle-fill {
  stroke-dashoffset: 0;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-secondary);
}

/* === EXPANDABLE SECTIONS === */
.expandable-section {
  margin-top: var(--space-6);
  border-top: 1px solid var(--color-gray-200);
  padding-top: var(--space-4);
}

.expand-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-base);
}

.expand-trigger:hover {
  background-color: var(--color-gray-50);
}

.expand-trigger h5 {
  margin: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.expand-icon {
  font-size: var(--text-xl);
  transition: transform var(--transition-base);
  color: var(--color-primary);
}

.expand-trigger.active .expand-icon {
  transform: rotate(180deg);
}

.expand-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expand-content.active {
  max-height: 1000px;
  padding-top: var(--space-4);
}

/* === GRADIENT TEXT EFFECTS === */
.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-animated {
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

/* === DEPARTMENT IMAGE OVERLAYS === */
.dept-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
}

.dept-image-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.dept-card-premium:hover .dept-image-container img {
  transform: scale(1.1);
}

.dept-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 36, 99, 0.8) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
}

.dept-card-premium:hover .dept-image-overlay {
  opacity: 1;
}

.overlay-text {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: var(--text-lg);
}

/* === TECHNOLOGY STACK ICONS === */
.tech-stack {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.tech-icon {
  width: 40px;
  height: 40px;
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.tech-icon:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
  transform: translateY(-3px) rotate(5deg);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-lg);
}

/* === COMPARISON TABLE === */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: var(--space-8) 0;
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-secondary);
  padding: var(--space-4);
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: var(--text-sm);
}

.comparison-table td {
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-gray-200);
  transition: background-color var(--transition-fast);
}

.comparison-table tr:hover td {
  background-color: var(--color-gray-50);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* === PROCESS TIMELINE === */
.process-timeline {
  position: relative;
  padding: var(--space-8) 0;
}

.timeline-item {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-light));
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background: var(--color-secondary);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-xl);
}

.timeline-content h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

/* === FLOATING PARTICLES BACKGROUND === */
.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: float 20s infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* DTF Image Specific Sizing */
#dtf .dept-image-container img {
  object-fit: contain;
  background-color: #f8f9fa;
}

/* === LOADING SKELETON === */
.skeleton {
  background: linear-gradient(90deg, var(--color-gray-200) 25%, var(--color-gray-100) 50%, var(--color-gray-200) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* === TOOLTIP === */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  background-color: var(--color-accent);
  color: var(--color-secondary);
  text-align: center;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  font-size: var(--text-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}

.tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--color-accent);
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* === RESPONSIVE ENHANCEMENTS === */
@media (max-width: 768px) {
  .dept-nav-pills {
    padding: var(--space-4);
  }

  .dept-pill {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-3);
  }

  .dept-card-premium {
    padding: var(--space-6);
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: var(--text-4xl);
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-item::before {
    left: 20px;
  }

  .comparison-table {
    font-size: var(--text-sm);
  }

  .comparison-table th,
  .comparison-table td {
    padding: var(--space-2);
  }
}

/* ===================================
   COMMERCIAL PRINTERS PAGE STYLES
   =================================== */

/* Hero Commercial */
.hero-commercial {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 50%, #000000 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
  contain: layout style paint;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-commercial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/backgrounds/industrial-print-shop.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
  animation: subtleZoom 20s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}

.hero-commercial-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-commercial h1 {
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease-out;
}

.hero-commercial p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-commercial h1 {
    font-size: 3rem;
  }

  .hero-commercial p {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  .hero-commercial {
    min-height: 60vh;
  }

  .hero-commercial h1 {
    font-size: 2.5rem;
  }

  .hero-commercial p {
    font-size: 1.125rem;
  }
}

/* Brand Scroll Section */
.brand-scroll-wrapper {
  background: #000;
}

.brand-scroll-section {
  position: relative;
  height: 200vh;
}

.brand-scroll-container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.brand-scroll-track {
  display: flex;
  height: 100%;
  transition: transform 0.05s linear;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.brand-panel {
  min-width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
}

.brand-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.brand-panel-content {
  max-width: 1400px;
  width: 100%;
  text-align: center;
}

.brand-logo {
  max-width: 250px;
  height: auto;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.brand-images {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.printer-hero-img {
  max-width: 320px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.printer-hero-img:hover {
  transform: scale(1.05);
}

.brand-tagline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Filter Section */
.filter-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  padding: 2.5rem 0;
  border-bottom: 2px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  backdrop-filter: blur(10px);
  contain: layout style;
}

/* Filter Toggle Button */
.filter-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.filter-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

.filter-toggle-btn svg {
  flex-shrink: 0;
}

.filter-arrow {
  margin-left: auto;
  font-size: 0.875rem;
  transition: transform var(--transition-base);
}

.filter-bar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  animation: fadeIn 0.5s ease-out;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.filter-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-gray-800);
  text-transform: uppercase;
  letter-spacing: 0.75px;
  transition: color var(--transition-fast);
}

.filter-group:hover label {
  color: var(--color-primary);
}

.filter-select {
  padding: 0.875rem 1.75rem;
  padding-right: 3rem;
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  background: white;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230a2463" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpolyline points="6 9 12 15 18 9"%3e%3c/polyline%3e%3c/svg%3e');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-base);
  min-width: 200px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.filter-select:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(10, 36, 99, 0.1);
  transform: translateY(-2px);
}

.filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(10, 36, 99, 0.15), 0 4px 12px rgba(10, 36, 99, 0.2);
  transform: translateY(-2px);
}

.filter-select:active {
  transform: translateY(0);
}

/* Product Catalog Section */
.product-catalog-section {
  background: white;
  padding: 4rem 0;
  contain: layout style;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
}

/* Product Card */
.product-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.product-card-image {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #f8f9fa;
  padding: 2rem;
}

.product-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.brand-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.brand-badge.bizhub {
  background: #0a2463;
}

.brand-badge.kyocera {
  background: #1e3a8a;
}

.brand-badge.xerox {
  background: #374151;
}

/* Equipment Type Badges */
.brand-badge.dtf {
  background: #7c3aed;
}

.brand-badge.flex {
  background: #059669;
}

.brand-badge.heatpress {
  background: #dc2626;
}

.brand-badge.uv {
  background: #2563eb;
}

.brand-badge.sublimation {
  background: #d97706;
}

.brand-badge.cutter {
  background: #0891b2;
}

/* Consumable Type Badges */
.brand-badge.toner {
  background: #1e40af;
}

.brand-badge.ink {
  background: #be123c;
}

.brand-badge.paper {
  background: #047857;
}

.brand-badge.maintenance {
  background: #92400e;
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.product-card-desc {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-card .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* Featured Strips */
.featured-strip {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
  margin: 0;
}

.featured-title {
  text-align: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 3rem;
  font-weight: 700;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.featured-grid .product-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.featured-grid .product-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.featured-grid .product-card h3 {
  color: white;
}

.featured-grid .product-card-desc {
  color: rgba(255, 255, 255, 0.7);
}

.featured-grid .product-card-image {
  height: 320px;
  background: rgba(255, 255, 255, 0.03);
}

/* CTA Commercial */
.cta-commercial {
  background: linear-gradient(135deg, #0a2463 0%, #000000 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 2rem;
  font-weight: 700;
}

.cta-content .btn {
  font-size: 1.25rem;
  padding: 1.25rem 3rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 968px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .brand-images {
    flex-direction: column;
  }

  .printer-hero-img {
    max-width: 350px;
  }

  .filter-bar {
    gap: 1rem;
  }

  .filter-select {
    min-width: 150px;
  }

  .brand-panel {
    padding: 2rem 1rem;
  }

  .brand-logo {
    max-width: 200px;
  }
}

@media (max-width: 640px) {

  /* Mobile: 2 cards side-by-side for sexy layout */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* Compact product cards */
  .product-card {
    padding: 0.75rem !important;
  }

  .product-card h3 {
    font-size: 0.875rem !important;
  }

  .product-card p {
    font-size: 0.75rem !important;
  }

  .brand-badge {
    font-size: 0.625rem !important;
    padding: 0.25rem 0.5rem !important;
  }

  /* Department cards - 2 columns */
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .card {
    padding: 1rem !important;
  }

  /* Hero */
  .hero-title-gradient {
    font-size: 1.75rem !important;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    font-size: 0.875rem !important;
  }

  /* Sections */
  .section {
    padding: 2rem 0 !important;
  }

  .container {
    padding: 0 1rem !important;
  }

  /* Images */
  .printer-hero-img {
    max-width: 100%;
  }

  /* Filters */
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-select {
    min-width: 100%;
  }

  .filter-toggle-btn {
    width: 100%;
  }

  /* CTA */
  .cta-content h2 {
    font-size: 1.875rem;
  }

  /* Brand */
  .brand-tagline {
    font-size: 1.1rem;
  }

  /* Stats - 2 columns */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr !important;
  }
}