:root {
  /* Brand Colors: Vibrant Blue & CMYK Accents */
  --primary: #2563eb; 
  --primary-dark: #1e40af;
  --secondary: #64748b;
  --dark: #0f172a;
  
  /* CMYK Soft Backgrounds */
  --bg-blue-soft: #dbeafe;
  --bg-pink-soft: #fce7f3;
  --bg-yellow-soft: #fef3c7;
  --bg-purple-soft: #e0e7ff;
  --bg-green-soft: #dcfce7;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: #f8fafc;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: var(--font-heading);
}

/* --- Utilities --- */
.fw-extrabold { font-weight: 800; }
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.text-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-soft-primary { background-color: rgba(37, 99, 235, 0.1); }
.letter-spacing-2 { letter-spacing: 2px; }

/* --- Navbar Glass --- */
.navbar-blur {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1rem 0;
  transition: all 0.3s;
}

/* CMYK Dots Logo */
.cmyk-dots { display: flex; gap: 3px; }
.cmyk-dots span { width: 8px; height: 8px; border-radius: 50%; }
.dot-c { background: cyan; }
.dot-m { background: magenta; }
.dot-y { background: yellow; }
.dot-k { background: black; }

/* --- Hero Section --- */
.hero {
  padding: 8rem 0 5rem 0;
  background: radial-gradient(circle at 10% 20%, rgb(241, 246, 255) 0%, rgb(255, 255, 255) 90%);
  position: relative;
  overflow: hidden;
}
.blob-bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: linear-gradient(45deg, rgba(37, 99, 235, 0.15), rgba(236, 72, 153, 0.15));
  filter: blur(80px);
  border-radius: 50%;
  z-index: -1;
}
.hero-img {
  transform: rotate(-2deg);
  transition: transform 0.5s;
}
.hero-img:hover { transform: rotate(0deg) scale(1.02); }

.float-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  animation: float 4s ease-in-out infinite;
  max-width: 200px;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.icon-box { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }

/* --- Buttons --- */
.btn-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
  border: none;
  color: white;
  transition: all 0.3s;
}
.btn-gradient:hover {
  background: linear-gradient(135deg, #1e40af 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}
.hover-lift { transition: transform 0.3s; }
.hover-lift:hover { transform: translateY(-3px); }

/* --- Services --- */
.service-card {
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: transparent !important;
}
.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
}
/* Colors for icons */
.bg-blue-soft { background: var(--bg-blue-soft); }
.bg-pink-soft { background: var(--bg-pink-soft); }
.bg-yellow-soft { background: var(--bg-yellow-soft); }
.bg-purple-soft { background: var(--bg-purple-soft); }
.bg-green-soft { background: var(--bg-green-soft); }
.bg-dark-soft { background: #e2e8f0; }

/* --- Pricing --- */
.transform-scale {
  transform: scale(1.05);
  z-index: 2;
  border: 2px solid var(--primary) !important;
}
@media (max-width: 991px) { .transform-scale { transform: scale(1); } }

/* --- Gallery --- */
.gallery-item {
  position: relative;
  cursor: pointer;
}
.gallery-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item img { transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }

/* --- CTA Fixed --- */
.cta-fixed {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1050;
  text-decoration: none;
}
.btn-cta-pulse {
  width: 60px; height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Footer --- */
.hover-white:hover { color: white !important; }