﻿/* ============================================================
   Centotech â€” Inner Pages Shared Styles
   css/pages.css
   ============================================================ */

/* â”€â”€ Page Hero â”€â”€ */
.page-hero {
  background: linear-gradient(135deg, #050b1a 0%, #0a1a3a 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,82,204,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}

/* Breadcrumb */
.page-breadcrumb { margin-bottom: 16px; }
.page-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
}
.page-breadcrumb a:hover { color: #00b4d8; }
.page-breadcrumb span {
  color: rgba(255,255,255,0.3);
  margin: 0 8px;
  font-size: 0.85rem;
}
.page-breadcrumb .current {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

/* â”€â”€ Buttons â”€â”€ */
.page-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1a3a6b; color: #fff;
  padding: 13px 30px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(26,58,107,0.35);
}
.page-btn-primary:hover {
  background: #142d54; color: #fff;
  transform: translateY(-2px);
}
.page-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff; padding: 11px 28px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.page-btn-outline:hover {
  border-color: #fff; color: #fff;
  background: rgba(255,255,255,0.08);
}

/* â”€â”€ Section common â”€â”€ */
.page-section {
  padding: 90px 0;
  background: #fff;
}
.page-section-alt {
  padding: 90px 0;
  background: #f8faff;
}
.page-label {
  display: inline-block;
  background: rgba(0,82,204,0.08);
  color: #0052cc;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-sec-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: #0a0e1a;
  line-height: 1.3;
  margin-bottom: 16px;
}

/* â”€â”€ Feature cards â”€â”€ */
.page-feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,82,204,0.06);
}
.page-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,82,204,0.12);
}
.page-feat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0052cc, #00b4d8);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
  margin-bottom: 18px;
}
.page-feature-card h5 {
  font-size: 1rem; font-weight: 700;
  color: #0a0e1a; margin-bottom: 10px;
}
.page-feature-card p {
  font-size: 0.875rem; color: #5a6a85;
  line-height: 1.7; margin: 0;
}

/* â”€â”€ CTA band â”€â”€ */
.page-cta-band {
  background: linear-gradient(135deg, #050b1a, #0a1a3a);
  padding: 80px 0;
}
.page-cta-band h2 {
  color: #fff; font-size: 2rem; font-weight: 800;
}
.page-cta-band p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem; margin-bottom: 0;
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 767px) {
  .page-hero { padding: 120px 0 60px; }
  .page-hero-title { font-size: 1.8rem; }
  .page-section { padding: 60px 0; }
  .page-cta-band { padding: 60px 0; }
}

/* â”€â”€ Hero with background image support â”€â”€ */
.page-hero[style*="background"] {
  background-size: cover !important;
  background-position: center !important;
}

