/* ==========================================================================
   Step Up Innovations - Premium Print, Apparel, Gifts & Studio CSS
   Visual Design Inspired by Reference Layout (Gradient Accents, Floating Badges)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Caveat:wght@600;700&display=swap');

:root {
  --primary-purple: #7C3AED;
  --primary-purple-hover: #6D28D9;
  --vivid-pink: #EC4899;
  --vivid-magenta: #FF2A85;
  --gradient-main: linear-gradient(135deg, #7C3AED 0%, #D946EF 50%, #EC4899 100%);
  --gradient-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
  --gradient-hero-badge: linear-gradient(135deg, rgba(124, 58, 237, 0.85) 0%, rgba(217, 70, 239, 0.88) 60%, rgba(236, 72, 153, 0.9) 100%);
  
  --dark-bg: #0F172A;
  --card-bg: #FFFFFF;
  --body-bg: #F8FAFC;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(124, 58, 237, 0.12);
  --shadow-lg: 0 20px 40px -15px rgba(124, 58, 237, 0.2);
  --shadow-glow: 0 0 35px rgba(236, 72, 153, 0.35);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

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

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--body-bg);
  font-size: 16px;
}

body {
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   SHARED BUTTONS & SECTION HEADERS (used across every page)
   ========================================================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-main);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}

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

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  color: #0F172A;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
}

.btn-white:hover {
  background: #F8FAFC;
}

.section-tagline {
  display: inline-block;
  background: rgba(124, 58, 237, 0.08);
  color: var(--primary-purple);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
  margin-bottom: 16px;
}

/* ==========================================================================
   1. TOP BAR & NAVBAR
   ========================================================================== */

.top-bar {
  background: var(--gradient-main);
  color: #FFFFFF;
  font-size: 0.85rem;
  padding: 8px 0;
  font-weight: 500;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-right a:hover {
  opacity: 0.8;
}

/* ==========================================================================
   1. TOP BAR & NAVBAR WITH HANGING LOGO
   ========================================================================== */

.top-bar {
  background: #FF007F;
  color: #FFFFFF;
  font-size: 0.82rem;
  padding: 6px 0;
  font-weight: 500;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

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

/* Hanging Shield Logo Badge */
.logo-brand-hanging {
  position: relative;
  top: 18px;
  background: linear-gradient(180deg, #7C3AED 0%, #6366F1 100%);
  padding: 16px 24px 22px;
  border-radius: 0 0 16px 16px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
  z-index: 110;
  text-decoration: none;
  transition: var(--transition);
}

.logo-brand-hanging:hover {
  transform: translateY(2px);
}

.logo-cmyk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  width: 22px;
  height: 22px;
  margin-bottom: 6px;
}

.cmyk-sq-1 { background: #EC4899; border-radius: 2px; }
.cmyk-sq-2 { background: #EAB308; border-radius: 2px; }
.cmyk-sq-3 { background: #06B6D4; border-radius: 2px; }
.cmyk-sq-4 { background: #A855F7; border-radius: 2px; }

.logo-brand-hanging-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: white;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1E293B;
  position: relative;
  padding: 6px 0;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.action-icon-btn-minimal {
  font-size: 1.2rem;
  color: #1E293B;
  position: relative;
  background: none;
  border: none;
  padding: 6px;
}

.action-icon-btn-minimal:hover {
  color: var(--primary-purple);
}

.badge-count-red {
  position: absolute;
  top: -2px;
  right: -6px;
  background: #EF4444;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-talk-btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}

.talk-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1E293B;
}

.chat-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #7C3AED;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
  transition: var(--transition);
}

.chat-circle-btn:hover {
  background: #EC4899;
  transform: scale(1.05);
}

/* ==========================================================================
   2. HERO SECTION MATCHING REFERENCE
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 100px 0 120px;
  background: #111827;
  color: white;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero-bg-image-bw {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15) brightness(0.85);
  opacity: 0.75;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

/* Organic Gradient Blob */
.hero-organic-blob {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.9) 0%, rgba(168, 85, 247, 0.88) 50%, rgba(99, 102, 241, 0.9) 100%);
  border-radius: 46% 54% 60% 40% / 45% 45% 55% 55%;
  padding: 60px 50px;
  max-width: 580px;
  box-shadow: 0 25px 60px rgba(236, 72, 153, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: blobFloat 7s ease-in-out infinite alternate;
}

@keyframes blobFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(-1.5deg); }
}

.blob-pill-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.blob-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.blob-desc {
  font-size: 1.02rem;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 30px;
}

.blob-cta-btn {
  background: #FFFFFF;
  color: #0F172A;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 14px 34px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  display: inline-block;
  transition: var(--transition);
}

.blob-cta-btn:hover {
  background: #0F172A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Angled Script Text Right */
.hero-script-angled {
  font-family: 'Caveat', cursive;
  font-size: 8.5rem;
  color: #FFFFFF;
  transform: rotate(-60deg);
  position: absolute;
  right: 5%;
  top: 15%;
  white-space: nowrap;
  pointer-events: none;
  font-weight: 700;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero-script-angled::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #7C3AED, #EC4899);
  border-radius: 4px;
}

/* Scroll Down Cutout */
.scroll-down-cutout {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  padding: 12px 30px 8px;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.06);
  text-align: center;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-down-cutout i {
  font-size: 1.1rem;
  color: var(--primary-purple);
  margin-bottom: 2px;
}

.scroll-down-cutout span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.hero-service-cards-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 480px;
}

.hero-preview-mini-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.hero-preview-mini-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.hero-preview-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-preview-title {
  font-size: 1.05rem;
  font-weight: 700;
}

/* Slider Controls */
.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 32px;
  border-radius: var(--radius-pill);
  background: white;
}

/* ==========================================================================
   3. VALUE PROPOSITION BAR
   ========================================================================== */

.value-bar-section {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.value-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.val-icon-1 { background: rgba(124, 58, 237, 0.1); color: var(--primary-purple); }
.val-icon-2 { background: rgba(236, 72, 153, 0.1); color: var(--vivid-pink); }
.val-icon-3 { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.val-icon-4 { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }

.value-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.value-info p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* ==========================================================================
   4. ABOUT / AGENCY OVERVIEW SECTION (1:1 REPLICA OF REFERENCE)
   ========================================================================== */

.about-section {
  padding: 120px 0;
  position: relative;
  background: #FFFFFF;
  overflow: hidden;
}

.watermark-bg-outline {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 7.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #F1F5F9;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 4px;
}

.floating-orb-blue {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #38BDF8, #0284C7);
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.4);
  animation: orbFloat 5s ease-in-out infinite alternate;
}

.floating-orb-pink-glow {
  position: absolute;
  top: 40%;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes orbFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left-collage-precise {
  position: relative;
  height: 480px;
}

.collage-top-img-box {
  position: absolute;
  top: 0;
  left: 40px;
  width: 260px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  z-index: 2;
}

.collage-top-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-bottom-img-box {
  position: absolute;
  bottom: 0;
  left: 170px;
  width: 280px;
  height: 310px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  z-index: 3;
}

.collage-bottom-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-cutout-cap {
  position: absolute;
  bottom: 60px;
  left: -20px;
  width: 90px;
  height: 90px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  background: white;
  padding: 6px;
  z-index: 4;
}

.floating-cutout-cap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.floating-cutout-bag {
  position: absolute;
  bottom: -10px;
  left: 80px;
  width: 80px;
  height: 80px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  background: white;
  padding: 6px;
  z-index: 4;
}

.floating-cutout-bag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Right Content */
.about-right-precise {
  padding-left: 20px;
}

.pink-pill-tag {
  display: inline-block;
  background: rgba(236, 72, 153, 0.08);
  color: #EC4899;
  border: 1px solid rgba(236, 72, 153, 0.2);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-title-bold {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 22px;
}

.quote-subtext-box {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.quote-vertical-bar {
  width: 3px;
  background: #CBD5E1;
  border-radius: 2px;
  flex-shrink: 0;
}

.quote-subtext-box p {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.6;
}

.two-feature-cards-row {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.feature-card-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FAFAFA;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid #F1F5F9;
}

.feature-box-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #EC4899, #A855F7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.feature-box-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: #1E293B;
}

.checklist-and-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.bullets-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.bullet-item i {
  color: #6366F1;
  font-size: 1.05rem;
}

.services-stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 20px;
}

.stat-divider-line {
  width: 3px;
  height: 50px;
  background: #EC4899;
  border-radius: 2px;
}

.stat-num-big {
  font-size: 3.2rem;
  font-weight: 800;
  color: #7C3AED;
  line-height: 1;
}

.stat-num-big sup {
  font-size: 1.6rem;
  color: #6366F1;
}

.stat-text-label {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1E293B;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-main);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  margin-top: 36px;
}

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

/* ==========================================================================
   5. INFINITE MARQUEE TICKER
   ========================================================================== */

.marquee-section {
  background: var(--gradient-main);
  padding: 22px 0;
  overflow: hidden;
  color: white;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  font-size: 1.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.marquee-sep {
  opacity: 0.6;
}

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

/* ==========================================================================
   6. FEATURED SERVICES & PRODUCTS CATALOG
   ========================================================================== */

.catalog-section {
  padding: 100px 0;
}

.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

/* Category Filter Tabs */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: white;
  border: 1px solid var(--border-color);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124, 58, 237, 0.3);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--vivid-pink);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
  text-transform: uppercase;
}

.product-img-wrapper {
  position: relative;
  height: 220px;
  background: #F1F5F9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}

.product-actions-hover {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.product-card:hover .product-actions-hover {
  bottom: 0;
}

.hover-act-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 0.9rem;
}

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

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--vivid-pink);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.product-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.product-rating {
  color: #F59E0B;
  font-size: 0.85rem;
}

/* ==========================================================================
   8. PORTFOLIO & SHOWCASE GALLERY
   ========================================================================== */

.portfolio-section {
  padding: 100px 0;
  background: #FAFAFA;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-md);
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: white;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--vivid-pink);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 800;
}

/* ==========================================================================
   9. STATS COUNTER BANNER
   ========================================================================== */

.stats-banner {
  background: var(--dark-bg);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: rgba(124, 58, 237, 0.3);
  filter: blur(100px);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.stats-text-heading {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.3;
}

.stat-box {
  border-left: 3px solid var(--vivid-pink);
  padding-left: 24px;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #94A3B8;
  font-weight: 600;
}

/* ==========================================================================
   10. TESTIMONIAL SECTION
   ========================================================================== */

.testimonial-section {
  padding: 100px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-photo-wrap {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 0 auto;
}

.testimonial-photo-blob {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.18) 0%, rgba(124, 58, 237, 0.15) 100%);
}

.testimonial-dashed-circle {
  position: absolute;
  inset: -18px;
  border: 2px dashed var(--vivid-pink);
  border-radius: 50%;
  opacity: 0.55;
}

.testimonial-photo {
  position: absolute;
  inset: 30px;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  box-shadow: var(--shadow-lg);
}

.testimonial-float-avatar {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-purple);
  border: 3px solid white;
}

.avatar-top-left {
  top: 0;
  left: -20px;
}

.avatar-bottom-right {
  bottom: 0;
  right: -20px;
}

.testimonial-quote-icon {
  font-size: 2.2rem;
  color: var(--primary-purple);
  margin-bottom: 18px;
}

.testimonial-heading {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.testimonial-author-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-author-divider {
  width: 24px;
  height: 2px;
  background: var(--border-color);
}

.testimonial-author-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   11. CONTACT SECTION ("SEND US MESSAGE")
   ========================================================================== */

.contact-section {
  padding: 100px 0;
  background: #FAFAFA;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-soft);
  color: var(--primary-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-details h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-details p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-full {
  grid-column: span 2;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  background: #F8FAFC;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-purple);
  background: white;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

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

/* ==========================================================================
   12. FOOTER
   ========================================================================== */

.main-footer {
  background: #0B0F19;
  color: #94A3B8;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--vivid-pink);
  transform: translateX(4px);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-input {
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.85rem;
  outline: none;
  flex-grow: 1;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-card {
  background: white;
  width: 90%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-content-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #0F172A;
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  border-left: 4px solid var(--vivid-pink);
  animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   SERVICE DIVISION PAGES (Printing / Apparel / Corporate Gifts / Photo Studio)
   ========================================================================== */

.page-banner {
  position: relative;
  padding: 130px 0 70px;
  background: #111827;
  color: white;
  overflow: hidden;
  text-align: center;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15) brightness(0.4);
  opacity: 0.7;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.page-banner-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.page-banner-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.page-banner-desc {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.6;
}

.page-breadcrumb {
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.75;
}

.page-breadcrumb a {
  color: #FFFFFF;
}

.page-breadcrumb a:hover {
  color: var(--vivid-pink);
}

.services-body-section {
  padding: 90px 0 40px;
}

.service-category-block {
  margin-bottom: 60px;
}

.service-category-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 26px;
}

.service-category-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gradient-main);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.service-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-item-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(124, 58, 237, 0.3);
}

.service-item-img-wrap {
  height: 150px;
  overflow: hidden;
  background: #F1F5F9;
}

.service-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-item-card:hover .service-item-img-wrap img {
  transform: scale(1.08);
}

.service-item-body {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.service-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gradient-soft);
  color: var(--primary-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.service-item-name {
  font-weight: 700;
  font-size: 0.87rem;
  color: #1E293B;
  line-height: 1.35;
}

.division-cta {
  background: var(--gradient-main);
  color: white;
  padding: 70px 0;
  text-align: center;
}

.division-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.division-cta p {
  opacity: 0.92;
  margin-bottom: 30px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   MOBILE & RESPONSIVE MEDIA QUERIES (100% MOBILE PERFECT)
   ========================================================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
    font-size: 1.2rem;
    color: #1E293B;
  }
  
  .desktop-only-btn, .header-talk-btn-group {
    display: none;
  }

  .main-header {
    height: 70px;
  }

  .header-container {
    height: 70px;
  }

  /* Hanging Logo Badge on Mobile */
  .logo-brand-hanging {
    top: 10px;
    padding: 10px 16px 14px;
    border-radius: 0 0 12px 12px;
  }

  .logo-brand-hanging-text {
    font-size: 1.1rem;
  }

  .logo-cmyk-grid {
    width: 18px;
    height: 18px;
    margin-bottom: 4px;
  }

  /* Mobile Slide-Down Navigation Menu */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
    border-bottom: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s ease-in-out;
    z-index: 99;
  }

  .nav-menu.mobile-open {
    max-height: 440px;
    opacity: 1;
  }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
    font-size: 1rem;
  }
}

/* Category Filter Tabs Horizontal Touch Scroll */
.category-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 36px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* 1024px Tablets & Medium Displays */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .testimonial-author {
    justify-content: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    margin-top: 10px;
    overflow: hidden;
  }

  .hero-script-angled {
    font-size: 5.5rem;
    position: relative;
    top: auto;
    right: auto;
    transform: rotate(-20deg);
  }

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

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

  .page-banner-title {
    font-size: 2.3rem;
  }

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

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

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

/* 640px Mobile Phones (Preserves Signature Hero Blob & Script Layout) */
@media (max-width: 640px) {
  .top-bar {
    display: none;
  }

  /* Hero Section Mobile Perfection */
  .hero-section {
    padding: 60px 0 90px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-left {
    width: 100%;
  }

  /* Organic Blob preserved on Mobile */
  .hero-organic-blob {
    padding: 36px 24px;
    border-radius: 36px 36px 36px 36px / 36px;
    max-width: 100%;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.35);
  }

  .blob-pill-tag {
    font-size: 0.72rem;
    padding: 4px 14px;
    margin-bottom: 14px;
  }

  .blob-title {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .blob-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .blob-cta-btn {
    padding: 12px 26px;
    font-size: 0.85rem;
  }

  /* Angled Script "Printing" Preserved on Mobile */
  .hero-right {
    position: relative;
    height: 90px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
  }

  .hero-script-angled {
    font-size: 4rem;
    position: relative;
    top: auto;
    right: auto;
    transform: rotate(-20deg);
    opacity: 0.9;
    text-shadow: 0 6px 15px rgba(0,0,0,0.5);
  }

  .hero-script-angled::after {
    height: 4px;
    bottom: 4px;
  }

  /* Scroll Down Cutout on Mobile */
  .scroll-down-cutout {
    padding: 8px 22px 6px;
    border-radius: 30px 30px 0 0;
  }

  .scroll-down-cutout i {
    font-size: 0.95rem;
  }

  .scroll-down-cutout span {
    font-size: 0.68rem;
  }

  /* Value Bar Mobile */
  .value-bar-section {
    margin-top: -25px;
  }

  .value-bar-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .value-card {
    padding: 18px;
  }

  /* About Collage Mobile Responsive Adjustment */
  .about-section {
    padding: 70px 0;
  }

  .watermark-bg-outline {
    font-size: 3.5rem;
    top: 20px;
  }

  .about-left-collage-precise {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .collage-top-img-box {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 220px;
  }

  .collage-bottom-img-box {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 240px;
  }

  .floating-cutout-cap, .floating-cutout-bag {
    display: none;
  }

  .about-right-precise {
    padding-left: 0;
    margin-top: 30px;
  }

  .about-title-bold {
    font-size: 1.8rem;
  }

  .two-feature-cards-row {
    flex-direction: column;
    gap: 12px;
  }

  .checklist-and-stat-row {
    flex-direction: column;
    gap: 24px;
  }

  .services-stat-box {
    padding-left: 0;
  }

  /* Catalog & Products Mobile */
  .catalog-section {
    padding: 70px 0;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Service Division Pages Mobile */
  .page-banner {
    padding: 100px 0 50px;
  }

  .page-banner-title {
    font-size: 1.8rem;
  }

  .services-body-section {
    padding: 60px 0 20px;
  }

  .service-category-title {
    font-size: 1.2rem;
  }

  .service-items-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .division-cta h2 {
    font-size: 1.5rem;
  }

  /* Form & Footer Mobile */
  .contact-form-card {
    padding: 24px 20px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .testimonial-photo-wrap {
    width: 240px;
    height: 240px;
  }

  .testimonial-float-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .testimonial-heading {
    font-size: 1.4rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
}


