/* ============================================================
   PAGE-SPECIFIC STYLES — CCTV Installation Pulpally landing page
   Extends ../style.css — reuses the same CSS variables, fonts,
   and component patterns already defined site-wide.
   ============================================================ */

/* Breadcrumb */
.page-breadcrumb {
  background: var(--light);
  padding: 0.85rem 0;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 64px; /* clears fixed navbar */
}
.page-breadcrumb a { color: var(--blue); font-weight: 600; }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-breadcrumb .sep { margin: 0 0.4rem; color: var(--gray); }

/* Audience strip */
.audience-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.8rem 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.audience-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.05rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

/* Installation process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}
.process-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.45rem; }
.process-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* Why CCTV matters — benefit list */
.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.benefit-item h3 { font-size: 0.96rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.benefit-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.55; }

/* Service areas */
.area-intro {
  max-width: 680px;
  margin: 0 auto 1.6rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

/* FAQ accordion (native details/summary — no JS required) */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rad);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blue);
  transition: transform 0.25s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.4rem 1.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Final CTA helper links (on dark background) */
.final-links {
  text-align: center;
  margin-top: 1.8rem;
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.final-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.final-links a:hover { color: #fff; }

@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .benefit-list { grid-template-columns: 1fr; }
  .page-breadcrumb { font-size: 0.76rem; }
}
