/* Zenerom Zoho Customization & Automation Page CSS Stylesheet */

:root {
  /* Override global variables for Zoho Page theme - Brand-colored deep dark */
  --bg-dark: #050a12;
  --bg-darker: #020509;
  --bg-nav: rgba(5, 10, 18, 0.85);
  
  /* Zoho Brand Quad-Colors */
  --zoho-red: #F6383E;
  --zoho-blue: #0087FF;
  --zoho-green: #00B15B;
  --zoho-yellow: #FFB800;
  
  --primary: #0087FF;
  --primary-rgb: 0, 135, 255;
  --primary-light: #33A1FF;
  --primary-dark: #005CBA;
  
  --accent: #F6383E;
  --glass-glow: rgba(0, 135, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.06);
}

/* Custom header adjustment for Personal brand */
header .logo {
  border-left: 2px solid rgba(255,255,255,0.1);
  padding-left: 12px;
}

/* Zoho brand colors border-glow cards */
.zoho-glow-card {
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.zoho-glow-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.zoho-glow-card:hover::after {
  background: linear-gradient(135deg, var(--zoho-blue), var(--zoho-green), var(--zoho-yellow), var(--zoho-red));
}

/* Hero Section */
.smm-hero {
  background: radial-gradient(circle at 80% 20%, rgba(0, 135, 255, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(246, 56, 62, 0.04) 0%, transparent 50%);
}

.hero-stats-row {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  flex: 1;
  min-width: 140px;
}

/* 5-Step Automation Loop Flow */
.flow-section {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(0, 177, 91, 0.03) 0%, transparent 70%);
}

.flow-diagram {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  margin-top: 50px;
  position: relative;
}

.flow-step-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  transition: var(--transition-smooth);
}

.flow-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px 4px 0 0;
}

.flow-step-card:nth-child(1)::before { background: var(--zoho-red); }
.flow-step-card:nth-child(2)::before { background: var(--zoho-blue); }
.flow-step-card:nth-child(3)::before { background: var(--zoho-green); }
.flow-step-card:nth-child(4)::before { background: var(--zoho-yellow); }
.flow-step-card:nth-child(5)::before { background: var(--primary-light); }

.flow-step-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.12);
}

.flow-step-num {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.flow-step-card:nth-child(1) .flow-step-num { color: var(--zoho-red); }
.flow-step-card:nth-child(2) .flow-step-num { color: var(--zoho-blue); }
.flow-step-card:nth-child(3) .flow-step-num { color: var(--zoho-green); }
.flow-step-card:nth-child(4) .flow-step-num { color: var(--zoho-yellow); }
.flow-step-card:nth-child(5) .flow-step-num { color: var(--primary-light); }

.flow-step-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.flow-step-card:nth-child(1) .flow-step-icon { color: var(--zoho-red); }
.flow-step-card:nth-child(2) .flow-step-icon { color: var(--zoho-blue); }
.flow-step-card:nth-child(3) .flow-step-icon { color: var(--zoho-green); }
.flow-step-card:nth-child(4) .flow-step-icon { color: var(--zoho-yellow); }
.flow-step-card:nth-child(5) .flow-step-icon { color: var(--primary-light); }

.flow-step-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.flow-step-desc {
  font-size: 13.5px;
  color: var(--text-gray);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .flow-diagram {
    flex-direction: column;
    gap: 24px;
  }
}

/* SMM Process Timeline Styles copied & customized for Zoho theme */
.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 40px;
  margin-top: 40px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--zoho-blue) 0%,
    var(--zoho-green) 50%,
    var(--zoho-yellow) 100%
  );
  border-radius: 2px;
}

.timeline-node {
  position: relative;
  padding: 0 0 40px 40px;
}

.timeline-node:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 3px solid var(--zoho-blue);
  box-shadow: 0 0 12px rgba(0, 135, 255, 0.5);
  transition: all 0.3s ease;
  z-index: 1;
}

.timeline-node:nth-child(2) .timeline-dot { border-color: var(--zoho-green); box-shadow: 0 0 12px rgba(0, 177, 91, 0.5); }
.timeline-node:nth-child(3) .timeline-dot { border-color: var(--zoho-yellow); box-shadow: 0 0 12px rgba(255, 184, 0, 0.5); }

.timeline-node:hover .timeline-dot {
  transform: scale(1.3);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 32px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 135, 255, 0.2);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-step {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--zoho-blue);
  margin-bottom: 8px;
}

.timeline-node:nth-child(2) .timeline-step { color: var(--zoho-green); }
.timeline-node:nth-child(3) .timeline-step { color: var(--zoho-yellow); }

.timeline-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-timeline {
    padding-left: 20px;
  }
  .process-timeline::before {
    left: 5px;
  }
  .timeline-node {
    padding: 0 0 30px 20px;
  }
  .timeline-dot {
    left: -20px;
  }
  .timeline-content {
    padding: 20px;
  }
}

/* Custom dashboard elements */
.dashboard-mockup {
  border-radius: 20px;
  background: rgba(4, 16, 33, 0.65);
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
  padding: 24px;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.dashboard-mockup::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 135, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Problem Cards */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.problem-card {
  padding: 30px;
  transition: var(--transition-smooth);
}

.problem-card:hover {
  border-color: rgba(246, 56, 62, 0.2);
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-4px);
}

.problem-icon {
  font-size: 36px;
  color: var(--zoho-red);
  margin-bottom: 20px;
}

.problem-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.problem-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .problems-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Blueprint card adjustments */
.blueprint-card {
  transition: var(--transition-smooth);
}
.blueprint-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 25px rgba(0, 135, 255, 0.15);
  transform: translateY(-4px);
}

/* Consultant Profile Section */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.profile-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--glass-border);
}

.profile-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.profile-image-container:hover img {
  transform: scale(1.03);
}

.profile-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 18, 0.7) 0%, transparent 40%);
  pointer-events: none;
}

.expertise-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.expertise-tag {
  background: rgba(0, 135, 255, 0.08);
  border: 1px solid rgba(0, 135, 255, 0.25);
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  transition: var(--transition-smooth);
}

.expertise-tag:hover {
  background: rgba(0, 135, 255, 0.15);
  border-color: var(--primary-light);
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.profile-stat-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.profile-stat-num {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--zoho-blue);
  margin-bottom: 4px;
}

.profile-stat-lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Revamped Zoho Hero Graphic */
.zoho-hero-cockpit {
  position: relative;
  background: rgba(4, 16, 33, 0.55);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  overflow: hidden;
  margin-top: 20px;
}

.zoho-center-hub {
  width: 140px;
  height: 140px;
  margin: 10px auto 35px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(0, 135, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 135, 255, 0.1);
  animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 25px rgba(0, 135, 255, 0.1); border-color: rgba(0, 135, 255, 0.3); }
  50% { box-shadow: 0 0 45px rgba(0, 135, 255, 0.25); border-color: rgba(0, 135, 255, 0.6); }
}

.zoho-center-logo {
  width: 95px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.hero-integration-nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.integration-node {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  transition: var(--transition-smooth);
}

.integration-node:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}

.node-icon-wrapper {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
}

.integration-node:nth-child(1) .node-icon-wrapper { color: #1877F2; border-color: rgba(24, 119, 242, 0.3); }
.integration-node:nth-child(2) .node-icon-wrapper { color: #EA4335; border-color: rgba(234, 67, 53, 0.3); }
.integration-node:nth-child(3) .node-icon-wrapper { color: #25D366; border-color: rgba(37, 211, 102, 0.3); }
.integration-node:nth-child(4) .node-icon-wrapper { color: var(--zoho-yellow); border-color: rgba(255, 184, 0, 0.3); }

.node-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.node-subtext {
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 480px) {
  .hero-integration-nodes {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}


