/* BrightCore Electrical Services - Main Stylesheet */

:root {
  --primary: #0080CA;
  --primary-dark: #005fa0;
  --primary-light: #e6f4fc;
  --secondary: #DD4C06;
  --secondary-dark: #b53d04;
  --secondary-light: #fff0ea;
  --dark: #0c1a28;
  --dark-2: #162335;
  --dark-3: #1e3148;
  --text: #1e2d3d;
  --text-muted: #64778d;
  --border: #dde5ef;
  --white: #ffffff;
  --off-white: #f5f8fc;
  --shadow-sm: 0 2px 12px rgba(12,26,40,0.08);
  --shadow-md: 0 6px 28px rgba(12,26,40,0.13);
  --shadow-lg: 0 16px 56px rgba(12,26,40,0.18);
  --shadow-xl: 0 24px 80px rgba(12,26,40,0.25);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --ease: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Inter', sans-serif;
  --font-h: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4,h5 { font-family: var(--font-h); line-height: 1.2; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.93rem;
  border: 2px solid transparent;
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,128,202,0.35); }
.btn-secondary { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(221,76,6,0.38); }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-ghost-white { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.35); backdrop-filter: blur(4px); }
.btn-ghost-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: var(--primary-light); }
.btn-hero { padding: 16px 32px; font-size: 1rem; border-radius: 10px; }

/* SECTION LABELS */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.section-label::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.label-light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.label-light::before { background: var(--secondary); }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.4rem; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-header-light h2 { color: var(--white); }
.section-header-light p { color: rgba(255,255,255,0.7); }

/* REVEAL ANIMATIONS — only animate when JS has loaded and marked element as ready */
[data-reveal].will-animate, [data-reveal-right].will-animate {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal-right].will-animate { transform: translateX(40px); }
[data-reveal].revealed, [data-reveal-right].revealed { opacity: 1; transform: none; }

/* TOP BAR */
.top-bar {
  background: var(--dark);
  padding: 10px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.top-bar-left a,
.top-bar-right a,
.top-bar-left span { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.7); transition: color var(--ease); }
.top-bar-left a:hover, .top-bar-right a:hover { color: var(--white); }
.top-phone { color: var(--white) !important; font-weight: 600; font-size: 0.9rem; }
.divider { opacity: 0.3; }
.top-bar i { color: var(--secondary); font-size: 0.82rem; }
.hours-badge { display: flex; align-items: center; gap: 7px; }
.emergency-tag { background: var(--secondary); color: var(--white) !important; padding: 5px 14px; border-radius: 5px; font-weight: 700; }
.emergency-tag i { color: var(--white) !important; }

/* NAVBAR */
.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
  transition: box-shadow var(--ease);
}
.nav-inner { display: flex; align-items: center; gap: 20px; padding: 10px 24px; max-width: 1200px; margin: 0 auto; }
.nav-logo img { height: 64px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 2px; margin-left: auto; }
.nav-links a { padding: 9px 14px; border-radius: 7px; font-weight: 600; font-size: 0.88rem; color: var(--text); transition: all var(--ease); }
.nav-links a:hover { color: var(--primary); background: var(--primary-light); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem; color: var(--dark); transition: color var(--ease); }
.nav-phone i { color: var(--secondary); }
.nav-phone:hover { color: var(--primary); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--ease); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  animation: slowzoom 15s ease-in-out infinite alternate, crossfade 15s ease-in-out infinite;
}
.hero-slide-1 {
  background: url('images/slider.jpeg') center / cover no-repeat;
  animation-delay: 0s, 0s;
}
.hero-slide-2 {
  background: url('images/1new.jpeg') center / cover no-repeat;
  animation-delay: 0s, -10s;
}
.hero-slide-3 {
  background: url('images/2new.jpeg') center / cover no-repeat;
  animation-delay: 0s, -5s;
}
@keyframes slowzoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
@keyframes crossfade {
  0%, 28%  { opacity: 1; }
  33%, 95% { opacity: 0; }
  100%     { opacity: 1; }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(12,26,40,0.70) 0%, rgba(0,64,110,0.55) 50%, rgba(0,90,150,0.40) 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; background: var(--secondary); opacity: 0.12; animation: floatAnim linear infinite; }
.p1 { width: 300px; height: 300px; top: -10%; left: 60%; animation-duration: 18s; }
.p2 { width: 180px; height: 180px; top: 60%; left: -5%; animation-duration: 22s; animation-delay: -4s; opacity: 0.08; background: var(--primary); }
.p3 { width: 120px; height: 120px; top: 20%; left: 80%; animation-duration: 14s; animation-delay: -8s; }
.p4 { width: 60px; height: 60px; top: 75%; left: 55%; animation-duration: 16s; animation-delay: -2s; opacity: 0.15; }
.p5 { width: 220px; height: 220px; top: -15%; left: -8%; animation-duration: 25s; animation-delay: -12s; opacity: 0.06; background: var(--primary); }
@keyframes floatAnim { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-40px) rotate(180deg); } }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(221,76,6,0.15);
  border: 1px solid rgba(221,76,6,0.35);
  color: #ffb38f;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}
.h1-line { display: block; }
.h1-accent {
  display: block;
  background: linear-gradient(120deg, #5bc8ff 0%, #ffffff 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { color: rgba(255,255,255,0.78); font-size: 1.08rem; max-width: 520px; margin-bottom: 34px; line-height: 1.75; }
.hero-desc strong { color: rgba(255,255,255,0.95); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px 24px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}
.proof-item { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 140px; }
.proof-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(221,76,6,0.2);
  color: #ff8c4f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.proof-text { display: flex; flex-direction: column; }
.proof-text strong { color: var(--white); font-size: 0.88rem; font-weight: 700; }
.proof-text span { color: rgba(255,255,255,0.55); font-size: 0.77rem; }
.proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* FORM CARD */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: transform var(--ease);
}
.form-card:hover { transform: translateY(-4px); }
.form-card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.form-card-header h3 { color: var(--white); font-size: 1.15rem; font-weight: 700; margin-bottom: 3px; }
.form-card-header p { color: rgba(255,255,255,0.75); font-size: 0.82rem; }
.quote-form { padding: 22px 28px; display: flex; flex-direction: column; gap: 14px; }

/* FORM FIELDS */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-h);
}
.form-field input,
.form-field select,
.form-field textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d1dbe8;
  border-radius: 10px;
  font-size: 0.93rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #a0b0c0; }
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: #b0c4d8; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,128,202,0.1);
  background: var(--white);
}
/* Custom select arrow */
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364778d' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.form-field textarea { resize: vertical; min-height: 110px; }
.btn-submit { border-radius: 10px; font-size: 1rem; padding: 15px 28px; }

/* Form feedback messages */
.form-feedback {
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}
.form-feedback--success {
  display: block;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  color: #15803d;
}
.form-feedback--error {
  display: block;
  background: #fef2f2;
  border: 1.5px solid #fecaca;
  color: #dc2626;
}
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 4px;
}
.form-note i { color: var(--primary); }

/* SCROLL CUE */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  animation: bounceAnim 2s ease infinite;
}
@keyframes bounceAnim { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

/* QUICK SERVICES STRIP */
.quick-services { background: var(--primary); }
.qs-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.qs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 22px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-right: 1px solid rgba(255,255,255,0.13);
  transition: background var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.qs-item:last-child { border-right: none; }
.qs-item:hover { background: rgba(255,255,255,0.12); }
.qs-item > i:first-child { font-size: 1.1rem; opacity: 0.9; flex-shrink: 0; }
.qs-item > span { flex: 1; }
.qs-arrow { margin-left: auto; font-size: 0.7rem; opacity: 0.6; transition: transform var(--ease); }
.qs-item:hover .qs-arrow { transform: translateX(4px); opacity: 1; }
.qs-emergency { background: rgba(221,76,6,0.3); }
.qs-emergency:hover { background: rgba(221,76,6,0.5) !important; }

/* ABOUT */
.about { padding: 110px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }

.about-img-stack { position: relative; border-radius: var(--radius-xl); margin-bottom: 20px; }
.about-img-main { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }
.about-img-overlay { position: absolute; inset: 0; border-radius: var(--radius-xl); background: linear-gradient(180deg, transparent 50%, rgba(12,26,40,0.6) 100%); }
.about-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-card { top: -18px; right: -18px; }
.bottom-card { bottom: 20px; left: -18px; text-align: center; flex-direction: column; gap: 4px; }
.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.top-card strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.top-card span { font-size: 0.77rem; color: var(--text-muted); }
.float-stat { font-family: var(--font-h); font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.float-stat span { font-size: 1.2rem; }
.float-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }

.about-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mini-stat {
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 16px;
  text-align: center;
  transition: all var(--ease);
}
.mini-stat:hover { border-color: var(--primary); background: var(--primary-light); }
.mini-num { font-family: var(--font-h); font-size: 1.7rem; font-weight: 800; color: var(--primary); }
.mini-lbl { font-size: 0.77rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

.about-text h2 { font-size: 2.3rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.about-text h2 span { color: var(--primary); }
.about-lead { font-size: 1.05rem; color: var(--text); margin-bottom: 14px; line-height: 1.75; }
.about-text > p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.75; }
.about-checklist { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem; color: var(--text); }
.check-item i { color: var(--primary); margin-top: 3px; flex-shrink: 0; font-size: 1rem; }
.about-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* SERVICES */
.services { padding: 110px 0; background: var(--off-white); position: relative; }

/* ---- SERVICE CARD GRID ---- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: rgba(0,128,202,0.25);
}

/* Image area */
.svc-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.svc-card:hover .svc-card-img img { transform: scale(1.07); }

.svc-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,25,45,0.18) 0%, rgba(10,25,45,0.55) 100%);
}

/* Icon on image */
.svc-card-icon {
  position: absolute;
  bottom: 16px;
  left: 18px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: background 0.3s ease, transform 0.3s ease;
}
.svc-card:hover .svc-card-icon { background: var(--secondary); transform: scale(1.1); }

/* Badge on image */
.svc-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(10,25,45,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.svc-badge-hot {
  background: var(--secondary);
  border-color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.svc-badge-hot i { font-size: 0.6rem; }

/* Body area */
.svc-card-body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card-body h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 9px;
  line-height: 1.3;
}
.svc-card-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.svc-points {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  flex: 1;
}
.svc-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--text);
}
.svc-points li i { color: var(--primary); font-size: 0.78rem; flex-shrink: 0; }

.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  transition: gap 0.25s ease, color 0.25s ease;
}
.svc-card-cta:hover { gap: 12px; color: var(--primary-dark); }

/* Emergency card */
.svc-card-emergency {
  background: linear-gradient(145deg, #0a1f35 0%, var(--dark-2) 100%);
  border-color: rgba(221,76,6,0.3);
  padding: 34px 28px 28px;
}
.svc-card-emergency:hover { border-color: rgba(221,76,6,0.6); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.svc-card-emergency h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.svc-card-emergency p  { color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.svc-emg-pulse-sm {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--secondary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 22px;
  animation: emergencyPulse 2s ease infinite;
  box-shadow: 0 0 0 0 rgba(221,76,6,0.6);
}
@keyframes emergencyPulse {
  0%   { box-shadow: 0 0 0 0   rgba(221,76,6,0.6); }
  70%  { box-shadow: 0 0 0 16px rgba(221,76,6,0); }
  100% { box-shadow: 0 0 0 0   rgba(221,76,6,0); }
}
.svc-emg-detail {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  margin-bottom: 22px; margin-top: auto;
}
.svc-emg-detail i { color: var(--secondary); }
.svc-emg-btn { border-radius: 10px; color: var(--secondary) !important; font-size: 0.93rem; }
.svc-emg-btn:hover { background: var(--secondary) !important; color: var(--white) !important; border-color: var(--secondary) !important; }

/* WHY US */
.why-us {
  padding: 110px 0;
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  position: relative;
  overflow: hidden;
}
.why-us > .container { position: relative; z-index: 1; }
.why-us::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,128,202,0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}
.why-us::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221,76,6,0.1) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.why-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 30px 32px;
  transition: all var(--ease);
  overflow: hidden;
}
.why-card:hover { border-color: rgba(0,128,202,0.3); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.why-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0,128,202,0.35);
}
.why-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* GUARANTEE STRIP */
.guarantee-strip {
  background: linear-gradient(135deg, var(--secondary) 0%, #c43a00 100%);
  padding: 50px 0;
}
.guarantee-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.guarantee-text { display: flex; align-items: flex-start; gap: 20px; flex: 1; }
.guarantee-text > i { font-size: 2.5rem; color: rgba(255,255,255,0.5); flex-shrink: 0; margin-top: 4px; }
.guarantee-text h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.guarantee-text p { color: rgba(255,255,255,0.82); font-size: 0.95rem; line-height: 1.65; max-width: 620px; }

/* COVERAGE */
.coverage { padding: 110px 0; background: var(--white); }
.coverage-map-wrap { max-width: 900px; margin: 0 auto; }
.coverage-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 24px; }
.cov-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 13px 16px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  transition: all var(--ease);
  cursor: default;
}
.cov-item:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.cov-item i { color: var(--secondary); font-size: 0.82rem; flex-shrink: 0; }
.primary-area { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.base-tag {
  margin-left: auto;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.65rem;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.cov-more { border-style: dashed; color: var(--text-muted); }
.coverage-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 14px 24px;
  border: 1px solid var(--border);
}
.coverage-note i { color: var(--primary); }
.coverage-note a { color: var(--primary); font-weight: 600; }

/* CERTIFICATIONS */
.accreditations { padding: 100px 0; background: var(--off-white); }
.accred-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.accred-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 34px 22px;
  text-align: center;
  transition: all var(--ease);
  box-shadow: var(--shadow-sm);
}
.accred-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.accred-logo-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.accred-logo {
  max-height: 70px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter var(--ease), transform var(--ease);
}
.accred-card:hover .accred-logo { filter: grayscale(0%); transform: scale(1.05); }
.accred-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto;
  transition: all var(--ease);
}
.napit { background: rgba(0,128,202,0.1); color: var(--primary); }
.cityg { background: rgba(221,76,6,0.1); color: var(--secondary); }
.jib { background: rgba(0,128,202,0.1); color: var(--primary); }
.partp { background: rgba(22,163,74,0.1); color: #16a34a; }
.ins { background: rgba(100,77,237,0.1); color: #644ded; }
.accred-card:hover .accred-icon { transform: scale(1.1); }
.accred-title { font-family: var(--font-h); font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.accred-sub { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.accred-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }

/* TESTIMONIALS */
.testimonials { padding: 110px 0; background: var(--white); }
.rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 0 auto 52px;
  flex-wrap: wrap;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 40px;
  max-width: 700px;
}
.rating-score { text-align: center; }
.big-score { font-family: var(--font-h); font-size: 3.4rem; font-weight: 900; color: var(--dark); display: block; line-height: 1; }
.big-stars { color: #f59e0b; font-size: 1.1rem; margin: 6px 0; }
.rating-count { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }
.rating-platforms { display: flex; flex-direction: column; gap: 10px; }
.platform-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
}
.platform-badge i { color: var(--primary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 28px;
  transition: all var(--ease);
}
.tcard:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tcard-featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: transparent;
}
.tcard-featured:hover { border-color: transparent; }
.tcard-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.tcard-stars { color: #f59e0b; font-size: 0.9rem; }
.tcard-featured .tcard-stars { color: #fde68a; }
.tcard-src { color: var(--text-muted); font-size: 1rem; }
.tcard-featured .tcard-src { color: rgba(255,255,255,0.6); }
.tcard p { font-size: 0.9rem; color: var(--text); line-height: 1.72; font-style: italic; margin-bottom: 22px; }
.tcard-featured p { color: rgba(255,255,255,0.88); }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}
.tcard-featured .tcard-avatar { background: rgba(255,255,255,0.2); }
.tcard-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.tcard-featured .tcard-author strong { color: var(--white); }
.tcard-author span { font-size: 0.78rem; color: var(--text-muted); }
.tcard-featured .tcard-author span { color: rgba(255,255,255,0.65); }

/* FAQ */
.faq { padding: 110px 0; background: var(--off-white); position: relative; overflow: hidden; }
.faq-decoration {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,128,202,0.06) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.faq-grid { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.faq-left h2 { font-size: 2.1rem; font-weight: 800; color: var(--dark); margin-bottom: 14px; line-height: 1.25; }
.faq-left p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.faq-left .btn { display: flex; margin-bottom: 12px; }
.faq-items { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 16px;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--primary); }
.faq-q.active { color: var(--primary); }
.faq-q i { flex-shrink: 0; font-size: 0.82rem; color: var(--primary); transition: transform var(--ease); }
.faq-q.active i { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; }
.faq-a.open { display: block; animation: fadeInUp 0.25s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq-a p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }

/* CONTACT */
.contact { background: var(--white); }
.contact-top {
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark-2) 50%, #0a2845 100%);
  padding: 110px 0;
}
.contact-top-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info-card h2 { font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.contact-info-card > p { color: rgba(255,255,255,0.7); margin-bottom: 38px; line-height: 1.7; font-size: 1rem; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; color: inherit; transition: opacity var(--ease); }
a.contact-row:hover { opacity: 0.85; }
.crow-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-row strong { display: block; color: rgba(255,255,255,0.55); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; font-weight: 600; }
.contact-row span { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
a.contact-row span { color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 600; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 38px 36px;
  box-shadow: var(--shadow-xl);
}
.contact-form-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }

/* FOOTER */
.footer { background: var(--dark); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
  padding: 72px 24px 44px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo { height: 56px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-brand > p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }
.footer-contact-quick { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.footer-contact-quick a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--ease); }
.footer-contact-quick a:hover { color: var(--white); }
.footer-contact-quick i { color: var(--secondary); font-size: 0.85rem; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--ease);
}
.footer-socials a:hover { background: var(--primary); color: var(--white); }
.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.5); font-size: 0.87rem; transition: all var(--ease); }
.footer-col ul li a i { font-size: 0.65rem; color: var(--secondary); opacity: 0; transition: opacity var(--ease); }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }
.footer-col ul li a:hover i { opacity: 1; }
.footer-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 12px;
}
.footer-badge i { color: var(--secondary); font-size: 1rem; flex-shrink: 0; }
.footer-badge span { color: rgba(255,255,255,0.65); font-size: 0.77rem; line-height: 1.3; }
.footer-bottom { background: rgba(0,0,0,0.25); padding: 18px 24px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-btm-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.footer-btm-inner p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* MOBILE STICKY BAR */
.mobile-sticky { display: none; }

/* BACK TO TOP */
.btt {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(0,128,202,0.4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--ease);
}
.btt.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.btt:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-content h1 { font-size: 3rem; }
  .accred-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-wrap { max-width: 560px; margin: 0 auto; }
  .hero-content h1 { font-size: 2.6rem; }
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-img-main { height: 340px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-top-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 12px 16px 16px;
    gap: 2px;
  }
  .navbar .nav-links.open { display: flex; }
  .nav-inner { position: relative; flex-wrap: wrap; padding: 10px 16px; }
  .hamburger { display: flex; }
  .nav-actions .nav-phone { display: none; }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding: 70px 0 0; }
  .hero-content h1 { font-size: 2.1rem; }
  .proof-divider { display: none; }
  .hero-proof { gap: 12px; }
  .proof-item { min-width: 120px; }
  .qs-grid { grid-template-columns: 1fr 1fr; }
  .qs-item:last-child { grid-column: span 2; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .accred-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-btm-inner { flex-direction: column; text-align: center; gap: 4px; }
  .guarantee-inner { flex-direction: column; text-align: center; }
  .guarantee-text { flex-direction: column; align-items: center; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .rating-bar { flex-direction: column; gap: 20px; padding: 24px; }
  .rating-platforms { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .mobile-sticky {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 56px;
  }
  .mobile-sticky a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-h);
    background: var(--primary);
  }
  .mobile-sticky .ms-quote { background: var(--secondary); }
  body { padding-bottom: 56px; }
  .btt { bottom: 72px; right: 16px; }
  .about-stats-row { grid-template-columns: repeat(3, 1fr); }
  .about-float-card { display: none; }
  .scroll-cue { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section-header h2 { font-size: 1.9rem; }
  .hero-content h1 { font-size: 1.85rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .accred-grid { grid-template-columns: 1fr 1fr; }
  .about-stats-row { grid-template-columns: 1fr; }
  .top-bar-left { display: none; }
}

/* ==============================================
   ABOUT PAGE STYLES
   ============================================== */

/* Active nav link */
.nav-active { color: var(--primary) !important; background: var(--primary-light); border-radius: 7px; }

/* PAGE HERO BANNER */
.page-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-img {
  position: absolute; inset: 0;
  background: url('images/2new.jpeg') center / cover no-repeat;
  transform: scale(1.04);
  animation: slowzoom 22s ease-in-out infinite alternate;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,22,36,0.97) 0%, rgba(0,60,110,0.92) 55%, rgba(0,80,140,0.80) 100%);
}
.page-hero-inner {
  position: relative; z-index: 2;
  padding-top: 0;
}
.page-hero-content { max-width: 720px; }
.page-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--ease); }
.page-breadcrumb a:hover { color: var(--white); }
.page-breadcrumb i { font-size: 0.65rem; }
.page-hero-content h1 {
  font-size: 3.8rem; font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 18px;
}
.page-hero-content h1 span {
  background: linear-gradient(120deg, #5bc8ff 0%, #ffffff 65%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; line-height: 1.7; margin-bottom: 32px; max-width: 580px; }
.page-hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.phb-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88); font-size: 0.82rem; font-weight: 600;
  padding: 8px 16px; border-radius: 30px; backdrop-filter: blur(6px);
  transition: all var(--ease);
}
.phb-item:hover { background: rgba(255,255,255,0.18); }
.phb-item i { color: var(--secondary); font-size: 0.85rem; }
.page-hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; line-height: 0;
}
.page-hero-wave svg { width: 100%; height: 56px; }

/* OUR STORY */
.ab-story { padding: 100px 0; background: var(--white); }
.ab-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.ab-story-visual { position: relative; }
.ab-img-primary {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-xl);
}
.ab-img-primary img { width: 100%; height: 500px; object-fit: cover; display: block; }
.ab-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white); border-radius: var(--radius);
  padding: 14px 18px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-lg);
}
.ab-img-badge > i {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--secondary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ab-img-badge strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.ab-img-badge span { font-size: 0.78rem; color: var(--text-muted); }
.ab-img-secondary {
  position: absolute; bottom: -28px; right: -28px;
  width: 210px; height: 160px; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}
.ab-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.ab-story-text h2 { font-size: 2.3rem; font-weight: 800; color: var(--dark); margin-bottom: 18px; line-height: 1.22; }
.ab-story-text h2 span { color: var(--primary); }
.ab-lead { font-size: 1.05rem; color: var(--text); margin-bottom: 16px; line-height: 1.75; font-weight: 500; }
.ab-story-text > p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.ab-story-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* STATS BAND */
.ab-stats-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
}
.ab-stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.ab-stat {
  text-align: center; padding: 30px 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background var(--ease);
}
.ab-stat:last-child { border-right: none; }
.ab-stat:hover { background: rgba(255,255,255,0.08); }
.ab-stat-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(255,255,255,0.15); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin: 0 auto 14px;
}
.ab-stat-num {
  font-family: var(--font-h); font-size: 2.6rem; font-weight: 900;
  color: var(--white); line-height: 1; display: inline;
}
.ab-stat-suffix {
  font-family: var(--font-h); font-size: 1.6rem; font-weight: 700;
  color: rgba(255,255,255,0.8); display: inline;
}
.ab-stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; margin-top: 6px;
}

/* OUR VALUES */
.ab-values { padding: 100px 0; background: var(--off-white); }
.ab-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ab-val-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 40px 28px 32px; border: 1.5px solid var(--border);
  position: relative; overflow: hidden;
  transition: all var(--ease);
}
.ab-val-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,128,202,0.2); }
.ab-val-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
}
.ab-val-card:hover .ab-val-line { transform: scaleX(1); }
.ab-val-icon-wrap { position: relative; width: 60px; height: 60px; margin-bottom: 22px; }
.ab-val-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; position: relative; z-index: 1;
  transition: transform var(--ease);
}
.ab-val-card:hover .ab-val-icon { transform: scale(1.08); }
.ab-val-icon-2 { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }
.ab-val-icon-3 { background: linear-gradient(135deg, #16a34a, #15803d); }
.ab-val-icon-4 { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.ab-val-glow {
  position: absolute; inset: -6px; border-radius: 20px;
  background: rgba(0,128,202,0.15); filter: blur(8px); z-index: 0;
  opacity: 0; transition: opacity var(--ease);
}
.ab-val-glow-2 { background: rgba(221,76,6,0.15); }
.ab-val-glow-3 { background: rgba(22,163,74,0.15); }
.ab-val-glow-4 { background: rgba(124,58,237,0.15); }
.ab-val-card:hover .ab-val-glow { opacity: 1; }
.ab-val-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.ab-val-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* WHAT SETS US APART */
.ab-apart {
  padding: 100px 0; position: relative; overflow: hidden;
}
.ab-apart-bg {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark-2) 55%, #0a2845 100%);
}
.ab-apart-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 1;
}
.ab-apart-text h2 { font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.25; }
.ab-apart-text > p { color: rgba(255,255,255,0.68); margin-bottom: 36px; line-height: 1.75; font-size: 1rem; }
.ab-apart-list { display: flex; flex-direction: column; gap: 22px; }
.ab-apart-item { display: flex; gap: 16px; align-items: flex-start; }
.ab-apart-check {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: rgba(0,128,202,0.25); border: 1px solid rgba(0,128,202,0.4);
  color: #5bc8ff; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; margin-top: 2px;
}
.ab-apart-item strong { display: block; color: var(--white); font-size: 0.97rem; font-weight: 700; margin-bottom: 4px; }
.ab-apart-item p { color: rgba(255,255,255,0.6); font-size: 0.87rem; line-height: 1.65; margin: 0; }

.ab-apart-img-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); margin-bottom: 16px;
}
.ab-apart-img-wrap img { width: 100%; height: 340px; object-fit: cover; display: block; }
.ab-apart-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,26,40,0.5) 100%);
}
.ab-apart-cards { display: flex; flex-direction: column; gap: 10px; }
.ab-acard {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  transition: all var(--ease);
}
.ab-acard:hover { background: rgba(255,255,255,0.12); border-color: rgba(0,128,202,0.3); }
.ab-acard > i {
  font-size: 1.1rem; color: var(--primary); flex-shrink: 0;
  width: 36px; text-align: center;
}
.ab-acard-orange > i { color: var(--secondary); }
.ab-acard strong { display: block; color: var(--white); font-size: 0.9rem; font-weight: 700; }
.ab-acard span { color: rgba(255,255,255,0.55); font-size: 0.78rem; }

/* TEAM */
.ab-team { padding: 100px 0; background: var(--white); }
.ab-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ab-team-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1.5px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.ab-team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ab-team-img { position: relative; height: 240px; overflow: hidden; }
.ab-team-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.6s ease; }
.ab-team-card:hover .ab-team-img img { transform: scale(1.06); }
.ab-team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,26,40,0.65) 100%);
}
.ab-team-quals {
  position: absolute; bottom: 12px; left: 12px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.ab-team-quals span {
  background: rgba(0,128,202,0.9); color: var(--white);
  font-size: 0.67rem; font-weight: 700; padding: 3px 9px;
  border-radius: 4px; letter-spacing: 0.3px;
}
.ab-team-body { padding: 22px 20px 20px; }
.ab-team-body h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.ab-team-role {
  font-size: 0.78rem; font-weight: 600; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px;
}
.ab-team-body p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.ab-team-creds { display: flex; flex-direction: column; gap: 5px; }
.ab-team-creds span {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: var(--text-muted); font-weight: 500;
}
.ab-team-creds i { color: var(--primary); font-size: 0.75rem; width: 14px; flex-shrink: 0; }

/* ABOUT ACCREDITATIONS spacing override */
.ab-accred { background: var(--off-white); }

/* REVIEWS ON ABOUT PAGE */
.ab-reviews { padding: 100px 0; background: var(--white); }
.ab-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* CTA BAND */
.ab-cta-band {
  padding: 80px 0; position: relative; overflow: hidden;
}
.ab-cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #003d7a 100%);
}
.ab-cta-bg::before {
  content: '';
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px; right: -100px;
}
.ab-cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.ab-cta-text h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.ab-cta-text p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.ab-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ABOUT PAGE RESPONSIVE */
@media (max-width: 1100px) {
  .ab-values-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-team-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .ab-stats-grid .ab-stat:nth-child(4) { border-right: 1px solid rgba(255,255,255,0.15); }
  .ab-stats-grid .ab-stat:nth-child(3),
  .ab-stats-grid .ab-stat:nth-child(5) { border-right: none; }
}
@media (max-width: 900px) {
  .page-hero-content h1 { font-size: 2.8rem; }
  .ab-story-grid { grid-template-columns: 1fr; gap: 60px; }
  .ab-img-secondary { display: none; }
  .ab-apart-grid { grid-template-columns: 1fr; gap: 52px; }
  .ab-reviews-grid { grid-template-columns: 1fr; }
  .ab-cta-inner { flex-direction: column; text-align: center; }
  .ab-cta-actions { justify-content: center; }
}
@media (max-width: 768px) {
  .page-hero { padding: 90px 0 60px; }
  .page-hero-content h1 { font-size: 2.2rem; }
  .ab-values-grid { grid-template-columns: 1fr; }
  .ab-team-grid { grid-template-columns: 1fr; }
  .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-stats-grid .ab-stat { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.1); }
  .ab-stats-grid .ab-stat:nth-child(even) { border-right: none; }
  .ab-apart-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .page-hero-content h1 { font-size: 1.9rem; }
  .ab-stats-grid { grid-template-columns: 1fr; }
  .ab-stats-grid .ab-stat { border-right: none; }
  .ab-cta-actions { flex-direction: column; width: 100%; }
  .ab-cta-actions .btn { justify-content: center; }
  .page-hero-badges { gap: 8px; }
}
