/* ══════════════════════════════════════════════════════════════
   xidmetler-04.css
   Monitorinq və Qiymətləndirmə xidmət səhifəsi — page-specific styles
   Rəng palitrası: navy-blue + gold (saytın əsas rəngləri)
   ══════════════════════════════════════════════════════════════ */
 
/* ── HERO — navy-blue/teal qradient (xidmet-03 ilə uyğun) ── */
.hero {
  background: linear-gradient(135deg, #0b2340 0%, #1b4280 55%, #1a6b8a 100%) !important;
}
.dark-mode .hero {
  background: linear-gradient(135deg, #060d18 0%, #0c2040 55%, #0f3d52 100%) !important;
}
 
/* Accent dots */
.hero-badge-dot,
.hero-eyebrow-dot,
.section-eyebrow-dot { background: var(--gold) !important; }
 
/* ── STAT CARDS ──────────────────────────────────────────── */
.hero-stat-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.hero-stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(200,146,42,0.35);
}
.hero-stat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(200,146,42,0.22);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-stat-icon svg {
  width: 20px; height: 20px; stroke: var(--gold); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.hero-stat-value { font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.72); margin-top: 3px; font-weight: 500; letter-spacing: .04em; }
 
/* ── PILLAR SECTION ──────────────────────────────────────── */
.pillar-section { background: var(--bg-section); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative; overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.pillar-num {
  font-size: 3rem; font-weight: 900; color: var(--accent);
  opacity: 0.1; line-height: 1; position: absolute; top: 16px; right: 24px;
}
.dark-mode .pillar-num { color: var(--gold); opacity: 0.08; }
.pillar-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.dark-mode .pillar-icon { background: rgba(26,86,219,0.18); }
.pillar-icon i { font-size: 1.3rem; color: var(--accent); }
.dark-mode .pillar-icon i { color: var(--accent); }
.pillar-title {
  font-size: 1.05rem; font-weight: 700; color: var(--heading); margin-bottom: 10px; line-height: 1.4;
}
.pillar-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.pillar-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.pillar-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: .05em;
  padding: 4px 10px; border-radius: 100px;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(26,86,219,0.15);
}
.dark-mode .pillar-tag {
  background: rgba(77,135,245,0.1);
  color: var(--accent);
  border-color: rgba(77,135,245,0.2);
}
 
/* ── PROCESS SECTION ─────────────────────────────────────── */
.process-section { background: var(--bg); }
.process-grid {
  position: relative;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Vertical timeline line */
.process-grid::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--gold) 100%);
  opacity: 0.25;
  z-index: 0;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  cursor: pointer;
  outline: none;
  border-radius: var(--radius-md);
  transition: background 0.3s ease;
}
.process-step:hover { background: rgba(27,66,128,0.03); }
.dark-mode .process-step:hover { background: rgba(77,135,245,0.04); }
.process-step:focus-visible { box-shadow: 0 0 0 3px rgba(27,66,128,0.25); }
 
/* Step number badge */
.process-step-num {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 50%;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.04em;
  z-index: 2;
  margin-top: 20px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px var(--bg);
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.process-step.ps-open .process-step-num,
.process-step:hover .process-step-num {
  background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 0 0 6px var(--bg), 0 6px 20px rgba(27,66,128,0.28);
}
.dark-mode .process-step-num {
  background: var(--bg-card);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 6px var(--bg);
}
.dark-mode .process-step.ps-open .process-step-num,
.dark-mode .process-step:hover .process-step-num {
  background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%);
  border-color: var(--navy);
}
 
/* Right panel */
.process-step-body {
  flex: 1;
  margin-left: 22px;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s ease;
}
.process-step:last-child .process-step-body { border-bottom: none; }
.process-step.ps-open .process-step-body { border-color: rgba(200,146,42,0.22); }
 
/* Header row */
.process-step-header {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 0;
  user-select: none;
}
 
/* Icon */
.process-step-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.35s ease;
}
.dark-mode .process-step-icon { background: rgba(26,86,219,0.12); }
.process-step-icon i {
  font-size: 1.1rem; color: var(--accent);
  transition: color 0.35s ease;
}
.dark-mode .process-step-icon i { color: var(--accent); }
.process-step.ps-open .process-step-icon,
.process-step:hover .process-step-icon {
  background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%);
}
.process-step.ps-open .process-step-icon i,
.process-step:hover .process-step-icon i { color: #fff; }
 
/* Title text */
.process-step-title {
  flex: 1; font-size: 1rem; font-weight: 700;
  color: var(--heading); line-height: 1.35;
  transition: color 0.3s ease;
}
.process-step.ps-open .process-step-title { color: var(--navy); }
.dark-mode .process-step.ps-open .process-step-title { color: var(--accent); }
 
/* Chevron */
.process-step-chevron {
  width: 30px; height: 30px; min-width: 30px;
  border-radius: 50%;
  background: var(--bg-section, #f6f7f9);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-right: 6px;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), background 0.3s ease, border-color 0.3s ease;
}
.process-step-chevron i {
  font-size: 0.65rem; color: var(--text-muted);
  transition: color 0.3s ease; pointer-events: none;
}
.dark-mode .process-step-chevron {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.process-step.ps-open .process-step-chevron {
  transform: rotate(180deg);
  background: var(--gold);
  border-color: var(--gold);
}
.process-step.ps-open .process-step-chevron i { color: #fff; }
 
/* Panel */
.process-step-panel {
  overflow: hidden;
  max-height: 0; opacity: 0; padding-bottom: 0;
  transition: max-height 0.44s cubic-bezier(0.4,0,0.2,1), opacity 0.36s ease, padding-bottom 0.38s ease;
}
.process-step.ps-open .process-step-panel {
  max-height: 280px; opacity: 1; padding-bottom: 24px;
}
 
/* Description text */
.process-step-desc {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.78;
  padding-left: 58px;
  border-left: 3px solid var(--gold);
  padding-right: 40px;
}
 
/* ── MQ YANAŞMALARI ──────────────────────────────────────── */
.mq-approach-section { background: var(--bg-section); }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.approach-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative; overflow: hidden;
}
.approach-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--navy);
}
.dark-mode .approach-card:hover { border-color: var(--accent); }
.approach-card:hover::after { opacity: 1; }
.approach-card-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.35s ease;
}
.dark-mode .approach-card-icon { background: rgba(26,86,219,0.14); }
.approach-card:hover .approach-card-icon {
  background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%);
}
.approach-card-icon i {
  font-size: 1.2rem; color: var(--accent);
  transition: color 0.35s ease;
}
.dark-mode .approach-card-icon i { color: var(--accent); }
.approach-card:hover .approach-card-icon i { color: #fff; }
.approach-card-title {
  font-size: 0.97rem; font-weight: 700; color: var(--heading); line-height: 1.35;
}
.approach-card-desc {
  font-size: 0.86rem; color: var(--text-muted); line-height: 1.72;
}
 
/* ── BENEFITS SECTION ────────────────────────────────────── */
.benefits-section { background: var(--bg); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.benefits-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.benefits-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.benefits-block-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.benefits-block-icon {
  width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%);
  display: flex; align-items: center; justify-content: center;
}
.benefits-block-icon i { color: #fff; font-size: 1.05rem; }
.benefits-block-title { font-size: 1rem; font-weight: 700; color: var(--heading); }
.benefits-list { display: flex; flex-direction: column; gap: 10px; }
.benefits-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.6;
}
.benefits-list li i {
  color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0;
}
.dark-mode .benefits-list li i { color: var(--gold); }
 
/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section { background: var(--bg-section); padding: 80px 0; }
.cta-box {
  max-width: 760px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0f4a3a, var(--gold));
}
.cta-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.cta-title {
  font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 800;
  color: var(--heading); margin-bottom: 14px; line-height: 1.3;
}
.cta-title em { color: var(--accent); font-style: normal; }
.dark-mode .cta-title em { color: var(--gold); }
.cta-desc {
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
 
/* ── SECTION HELPERS ─────────────────────────────────────── */
.section { padding: 88px 0; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--eyebrow, var(--accent));
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; color: var(--heading); line-height: 1.2; margin-bottom: 16px;
}
.section-title em { color: var(--gold); font-style: normal; }
.dark-mode .section-title em { color: var(--gold); }
.section-subtitle { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin: auto; }
 
/* ── HERO LAYOUT ─────────────────────────────────────────── */
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 120px 24px 100px;
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.12;
  filter: grayscale(30%);
}
 
/* ── PROCESS SECTION — responsive ───────────────────────── */
@media (max-width: 768px) {
  .process-section { padding: 60px 0; }
  .process-grid { margin-top: 40px; }
  .process-grid::before { left: 21px; }
  .process-step-num {
    width: 42px; height: 42px; min-width: 42px;
    font-size: 0.75rem; margin-top: 18px;
    box-shadow: 0 0 0 4px var(--bg);
  }
  .process-step-body { margin-left: 14px; }
  .process-step-icon { width: 38px; height: 38px; min-width: 38px; }
  .process-step-icon i { font-size: 0.95rem; }
  .process-step-title { font-size: 0.93rem; }
  .process-step-desc { padding-left: 46px; padding-right: 8px; font-size: 0.84rem; }
  .process-step-header { gap: 10px; padding: 16px 0; }
  .mq-approach-section { padding: 60px 0; }
}
 
@media (max-width: 480px) {
  .process-grid::before { left: 18px; }
  .process-step-num {
    width: 36px; height: 36px; min-width: 36px;
    font-size: 0.7rem; margin-top: 18px;
    box-shadow: 0 0 0 3px var(--bg);
  }
  .process-step-body { margin-left: 10px; }
  .process-step-icon { width: 34px; height: 34px; min-width: 34px; border-radius: 8px; }
  .process-step-desc { padding-left: 38px; padding-right: 0; }
  .process-step-chevron { width: 26px; height: 26px; min-width: 26px; }
  .cta-box { padding: 36px 22px; }
  .approach-grid { grid-template-columns: 1fr; }
}
 
@media (max-width: 600px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}
