/*
Theme Name: DCM 24/7 Service Desk
Theme URI: https://dcmhub.com
Author: DCM Hub — Digital Cloud Management Ltd
Author URI: https://dcmhub.com
Description: Professional, modern service desk theme for DCM 24/7. Clean, fast, no emoji. Navigation built-in with Client and Agent portal links.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: dcm-servicedesk
*/

/* ============================================================
   RESET & CUSTOM PROPERTIES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1565C0;
  --blue-dark:   #0D47A1;
  --blue-mid:    #1976D2;
  --blue-light:  #E3F2FD;
  --orange:      #F57C00;
  --orange-light:#FFF3E0;
  --purple:      #6A1B9A;
  --teal:        #00838F;
  --green:       #2E7D32;
  --red:         #C62828;
  --dark:        #0A1628;
  --dark-2:      #111C32;
  --text:        #1E293B;
  --muted:       #64748B;
  --border:      #E2E8F0;
  --bg-light:    #F8FAFF;
  --white:       #FFFFFF;
  --font:        'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-h:      'Poppins', 'Segoe UI', system-ui, sans-serif;
  --r:           12px;
  --r-lg:        20px;
  --shadow:      0 4px 20px rgba(21,101,192,.12);
  --shadow-lg:   0 16px 48px rgba(21,101,192,.20);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: #fff; line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: color .2s; }
ul   { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); font-weight: 800; line-height: 1.2; color: var(--dark); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section        { padding: 88px 0; }
.section-sm     { padding: 56px 0; }
.text-center    { text-align: center; }
.text-white     { color: #fff !important; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.tag-white {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
}

.section-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .22s ease;
  border-radius: var(--r);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #E65100);
  color: #fff;
  font-size: 14px;
  padding: 13px 28px;
  box-shadow: 0 6px 20px rgba(245,124,0,.30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,124,0,.40); color:#fff; }

.btn-primary-lg {
  font-size: 16px;
  padding: 17px 36px;
  font-weight: 800;
}

.btn-outline-white {
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 14px;
  padding: 13px 28px;
  border: 2px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); transform: translateY(-2px); color:#fff; }

.btn-outline-white-lg { font-size: 16px; padding: 17px 36px; font-weight: 800; }

.btn-login {
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  letter-spacing: .2px;
}
.btn-login:hover { background: rgba(255,255,255,.22); color: #fff; }

.btn-login-agent {
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  letter-spacing: .2px;
}
.btn-login-agent:hover { background: #e65100; color: #fff; transform: translateY(-1px); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 10px 0;
  transition: all .3s ease;
}

#site-header.header-transparent { background: transparent; }

#site-header.header-solid {
  background: rgba(10, 22, 40, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  padding: 7px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 2px;
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.2px;
}

.logo-sub {
  font-size: 9.5px;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* WordPress nav menu - primary location */
.header-nav { flex: 1; display: flex; justify-content: center; }

#primary-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

#primary-menu li a {
  color: rgba(255,255,255,.85);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 7px;
  display: block;
  transition: all .18s;
}

#primary-menu li a:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* Services dropdown */
#primary-menu li.menu-item-has-children { position: relative; }

#primary-menu li.menu-item-has-children > .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  min-width: 220px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

#primary-menu li.menu-item-has-children:hover > .sub-menu { display: block; }

#primary-menu .sub-menu li a {
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 7px;
  color: rgba(255,255,255,.8);
}

#primary-menu .sub-menu li a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* Portal login buttons in header */
.header-portals {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: .2s;
  margin-left: auto;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* Hero background layers */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #040c20 0%,
    #071840 25%,
    #0d3580 55%,
    #1050a8 75%,
    #0d3070 100%
  );
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-bg-radials {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(21,101,192,.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 75%, rgba(106,27,154,.25) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 85% 80%, rgba(0,131,143,.2) 0%, transparent 60%);
}

/* Hero image panel — right side */
.hero-img-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 46%;
  overflow: hidden;
}

.hero-img-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, rgba(4,12,32,.6) 30%, transparent 100%);
  z-index: 1;
}

.hero-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .55;
}

/* Hero CSS illustration fallback when no image */
.hero-illustration {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 46%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-illustration::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, rgba(4,12,32,.4) 40%, transparent 100%);
  z-index: 1;
}

/* Animated circles in hero bg */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .07;
  animation: spin-slow 20s linear infinite;
}

.hero-circle-1 {
  width: 600px; height: 600px;
  border: 2px solid rgba(100,149,237,.6);
  top: 50%; right: -150px;
  transform: translateY(-50%);
}

.hero-circle-2 {
  width: 400px; height: 400px;
  border: 2px solid rgba(245,124,0,.5);
  top: 50%; right: -50px;
  transform: translateY(-50%);
  animation-direction: reverse;
  animation-duration: 15s;
}

@keyframes spin-slow {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* Dashboard visual card */
.hero-dashboard {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 400px;
}

.hdash-card {
  background: rgba(10, 20, 50, .85);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}

.hdash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hdash-title {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-h);
}

.live-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #4CAF50;
  letter-spacing: .5px;
}

.live-dot::before {
  content: '';
  width: 7px; height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

.hdash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.hdash-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}

.hdash-stat-num {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-h);
  line-height: 1;
}

.hdash-stat-num.orange { color: #FF9800; }
.hdash-stat-num.green  { color: #4CAF50; }
.hdash-stat-num.blue   { color: #64B5F6; }

.hdash-stat-lbl {
  font-size: 9px;
  color: rgba(255,255,255,.5);
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-top: 3px;
}

.hdash-tickets { display: flex; flex-direction: column; gap: 8px; }

.hticket {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 9px;
  padding: 10px 12px;
}

.hticket-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hticket-dot.green  { background: #4CAF50; }
.hticket-dot.orange { background: #FF9800; }
.hticket-dot.blue   { background: #42A5F5; }

.hticket-info { flex: 1; min-width: 0; }
.hticket-name {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hticket-ref {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  font-family: monospace;
}

.hticket-status {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  flex-shrink: 0;
}
.hs-resolved { background: rgba(76,175,80,.2);  color: #81C784; }
.hs-progress { background: rgba(255,152,0,.2);  color: #FFB74D; }
.hs-new      { background: rgba(66,165,245,.2); color: #90CAF9; }

.hdash-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hdash-uptime {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  font-weight: 600;
}

.hdash-uptime strong { color: #4CAF50; }

.hdash-response {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  font-weight: 600;
}
.hdash-response strong { color: #FF9800; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 130px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}

.status-green {
  width: 7px; height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

.hero-title {
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}

.hero-title .accent {
  background: linear-gradient(135deg, #FF9800, #FF5722);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  margin-bottom: 38px;
  line-height: 1.85;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }

.hero-stat-item { text-align: center; }

.hero-stat-num {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-h);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,.55);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.35);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scroll-bounce 2.5s ease-in-out infinite;
}

.scroll-cue-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid rgba(255,255,255,.3);
  border-bottom: 2px solid rgba(255,255,255,.3);
  transform: rotate(45deg);
}

@keyframes scroll-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: .5; }
  50%      { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
#trust-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 0;
  overflow: hidden;
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.55);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  padding: 18px 36px;
  border-right: 1px solid rgba(255,255,255,.06);
  letter-spacing: .3px;
}

.trust-item-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.trust-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(76,175,80,.2);
  border: 1.5px solid rgba(76,175,80,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-check svg { width: 10px; height: 10px; stroke: #4CAF50; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services { background: var(--bg-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: all .28s ease;
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.svc-icon svg { width: 28px; height: 28px; }

.si-blue    { background: linear-gradient(135deg, #E3F2FD, #BBDEFB); }
.si-purple  { background: linear-gradient(135deg, #F3E5F5, #E1BEE7); }
.si-orange  { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.si-teal    { background: linear-gradient(135deg, #E0F7FA, #B2EBF2); }
.si-green   { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }
.si-red     { background: linear-gradient(135deg, #FCE4EC, #F8BBD9); }

.svc-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 9px;
}

.svc-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.svc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}
.svc-link:hover { gap: 9px; color: var(--blue-dark); }

.svc-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ============================================================
   STATS BAR
   ============================================================ */
#stats-bar {
  background: linear-gradient(135deg, var(--blue-dark), #0d47a1, #1565c0);
  position: relative;
  overflow: hidden;
}

#stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.stat-block {
  text-align: center;
  padding: 48px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.stat-block:last-child { border-right: none; }

.stat-big {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  font-family: var(--font-h);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-big .accent { color: #FFB74D; }

.stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us { background: #fff; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Visual panel */
.why-visual { position: relative; }

.why-main-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 40px;
  color: #fff;
}

.why-main-img::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}

.why-main-img::before {
  content: '';
  position: absolute;
  bottom: -50px; left: -40px;
  width: 160px; height: 160px;
  background: rgba(106,27,154,.15);
  border-radius: 50%;
}

.why-img-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.why-img-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2; }

.why-main-img h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.why-main-img p {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.why-float {
  position: absolute;
  background: #fff;
  border-radius: var(--r);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-float.top-right { top: -18px; right: -18px; }
.why-float.bot-left  { bottom: -18px; left: -18px; }

.wf-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wf-blue   { background: #E3F2FD; }
.wf-green  { background: #E8F5E9; }
.wf-orange { background: #FFF3E0; }

.wf-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.wf-blue   svg { stroke: var(--blue); }
.wf-green  svg { stroke: var(--green); }
.wf-orange svg { stroke: var(--orange); }

.wf-num { font-size: 18px; font-weight: 900; color: var(--dark); line-height: 1; }
.wf-lbl { font-size: 11px; color: var(--muted); font-weight: 600; }

/* Why points */
.why-points { display: flex; flex-direction: column; gap: 22px; }

.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all .25s;
}

.why-point:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.wp-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(21,101,192,.25);
}

.wp-icon-wrap svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; }

.wp-text h4 { font-size: 16px; font-weight: 800; margin-bottom: 5px; }
.wp-text p  { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta-section {
  background: linear-gradient(135deg, #040c20, #0d3580, #1050a8, #6A1B9A);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

#cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.12;
}

.cta-inner p { color: rgba(255,255,255,.72); font-size: 17px; margin-bottom: 38px; line-height: 1.8; }

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 24px 18px;
  text-align: center;
  transition: all .25s;
}

.contact-card:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }

.cc-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.cc-icon-wrap svg { width: 22px; height: 22px; stroke: rgba(255,255,255,.8); fill: none; stroke-width: 2; }

.cc-title { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.cc-value { font-size: 14.5px; font-weight: 800; color: #fff; }
.cc-value a { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
}

.footer-main { padding: 64px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1.5fr;
  gap: 48px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-wrap img {
  width: 46px; height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 2px;
}

.footer-logo-name { font-family: var(--font-h); font-size: 15px; font-weight: 900; color: #fff; }
.footer-logo-sub  { font-size: 9px; color: rgba(255,255,255,.4); letter-spacing: 1.8px; text-transform: uppercase; }

.footer-desc { font-size: 13.5px; line-height: 1.8; margin-bottom: 22px; max-width: 280px; }

.footer-col h5 {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 9px; }

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-links a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .2s;
}

.footer-links a:hover { color: #fff; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item { display: flex; gap: 12px; }

.fci-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.fci-icon svg { width: 16px; height: 16px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 2; }

.fci-text { font-size: 13px; line-height: 1.7; }
.fci-label { color: rgba(255,255,255,.35); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2px; }
.fci-value { color: rgba(255,255,255,.75); }
.fci-value a { color: rgba(255,255,255,.75); }
.fci-value a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,.35);
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.65); }

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 120px 0 56px;
  text-align: center;
  color: #fff;
}

.page-hero h1 { color: #fff; font-size: 40px; }
.page-hero p  { color: rgba(255,255,255,.72); font-size: 16px; margin-top: 10px; }

.page-body { padding: 64px 0; }
.entry-wrap { max-width: 760px; margin: 0 auto; }
.entry-wrap h2 { font-size: 26px; margin: 28px 0 12px; }
.entry-wrap p  { color: var(--muted); margin-bottom: 16px; line-height: 1.85; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-dashboard { display: none; }
  .hero-illustration { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-block:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .contact-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .services-grid  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .hero-cta       { flex-direction: column; align-items: flex-start; }
  .hero-stats     { gap: 20px; }
  .header-nav     { display: none; }
  .header-portals { margin-left: auto; }
  .nav-toggle     { display: flex; }
  .section        { padding: 60px 0; }
  .hero-title     { font-size: 36px; letter-spacing: -.5px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .trust-item     { padding: 16px 20px; }

  /* Mobile nav open */
  .header-nav.nav-open {
    display: block;
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: rgba(10,22,40,.98);
    backdrop-filter: blur(16px);
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .header-nav.nav-open #primary-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .header-nav.nav-open #primary-menu li a {
    display: block;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .hero-stats      { flex-wrap: wrap; gap: 16px; }
  .stats-grid      { grid-template-columns: 1fr 1fr; }
  .hero-title      { font-size: 30px; }
  .hero-desc       { font-size: 15px; }
  .cta-inner h2    { font-size: 24px; }
  .header-portals  { gap: 6px; }
  .btn-login, .btn-login-agent { font-size: 12px; padding: 7px 12px; }
}
