/*
Theme Name: White Glove Private Nurse
Theme URI: https://whitegloveprivatenurse.com
Author: PivotWorks Group LLC
Description: Premium Bootstrap 5 private duty nursing theme
Version: 2.0.0
Text Domain: wgpn
*/

/* --- Custom Properties ------------------------------------------- */
:root {
  --wg-navy:       #0C2461;
  --wg-navy-dark:  #08193f;
  --wg-navy-mid:   #122d74;
  --wg-gold:       #C8923A;
  --wg-gold-light: #d9a84f;
  --wg-gold-pale:  rgba(200,146,58,.12);
  --wg-white:      #ffffff;
  --wg-gray:       #F5F5F5;
  --wg-gray-mid:   #e4e4e4;
  --wg-text:       #1c1c2e;
  --wg-muted:      #5a5a72;
  --wg-radius:     10px;
  --wg-radius-lg:  20px;
  --wg-shadow:     0 4px 28px rgba(12,36,97,.10);
  --wg-shadow-lg:  0 16px 56px rgba(12,36,97,.16);
  --wg-transition: .28s cubic-bezier(.4,0,.2,1);
}

/* --- Base -------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--wg-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: color var(--wg-transition); }

/* --- Typography -------------------------------------------------- */
.font-serif { font-family: 'Playfair Display', Georgia, serif; }

h1,h2,h3,.h1,.h2,.h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--wg-navy);
  line-height: 1.18;
}

.display-hero {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--wg-navy);
}

.section-title.on-dark { color: #fff; }

.eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wg-gold);
  margin-bottom: 14px;
}

.lead-text {
  font-size: 1.08rem;
  color: var(--wg-muted);
  line-height: 1.8;
}

/* --- Buttons ----------------------------------------------------- */
.btn-wg-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--wg-gold);
  color: #fff;
  border: 2px solid var(--wg-gold);
  padding: 15px 34px;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: all var(--wg-transition);
  white-space: nowrap;
}
.btn-wg-primary:hover {
  background: var(--wg-gold-light);
  border-color: var(--wg-gold-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,146,58,.38);
}

.btn-wg-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  padding: 15px 34px;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: all var(--wg-transition);
}
.btn-wg-outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--wg-navy);
  transform: translateY(-2px);
}

.btn-wg-navy {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--wg-navy);
  color: #fff;
  border: 2px solid var(--wg-navy);
  padding: 15px 34px;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: all var(--wg-transition);
}
.btn-wg-navy:hover {
  background: var(--wg-navy-dark);
  border-color: var(--wg-navy-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,36,97,.28);
}

.btn-wg-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--wg-navy);
  border: 2px solid var(--wg-navy);
  padding: 15px 34px;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: all var(--wg-transition);
}
.btn-wg-ghost:hover {
  background: var(--wg-navy);
  color: #fff;
  transform: translateY(-2px);
}

/* --- Navbar ------------------------------------------------------- */
#wg-navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1050;
  transition: background var(--wg-transition), box-shadow var(--wg-transition), padding var(--wg-transition);
  padding: 20px 0;
}
#wg-navbar.scrolled {
  background: var(--wg-navy) !important;
  box-shadow: 0 2px 30px rgba(12,36,97,.22);
  padding: 12px 0;
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 11px;
}

.navbar-logo-icon {
  width: 42px; height: 42px;
  background: var(--wg-gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.navbar-logo-icon svg { width: 22px; height: 22px; color: #fff; }

.navbar-brand-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.1;
  letter-spacing: .01em;
}
.navbar-brand-text .brand-tagline {
  font-size: .62rem;
  color: var(--wg-gold);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
}

.wg-nav-link {
  color: rgba(255,255,255,.82) !important;
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: 6px 14px !important;
  transition: color var(--wg-transition) !important;
}
.wg-nav-link:hover { color: var(--wg-gold) !important; }

.navbar-phone-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 0;
}
.navbar-phone-link svg { color: var(--wg-gold); }
.navbar-phone-link:hover { color: var(--wg-gold); }

/* --- Hero --------------------------------------------------------- */
.wg-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--wg-navy-dark);
}
.wg-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://whitegloveprivatenurse.com/wp-content/uploads/2026/06/Hero-Background-1-1.png');
  background-size: cover;
  background-position: center center;
  will-change: transform;
}
.wg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.45) 42%,
    rgba(0,0,0,.30) 100%
  );
}
.wg-hero__content { position: relative; z-index: 2; padding: 160px 0 110px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,146,58,.16);
  border: 1px solid rgba(200,146,58,.38);
  padding: 8px 20px 8px 16px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--wg-gold);
  border-radius: 50%;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(.8); }
}
.hero-badge span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wg-gold);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  max-width: 560px;
}

.hero-gold { color: var(--wg-gold); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--wg-gold);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.48);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
  margin-top: 5px;
}
.hero-stat-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,.12);
}

/* --- Section spacing ---------------------------------------------- */
.section-pad { padding: 104px 0; }
.section-pad-sm { padding: 72px 0; }

/* --- Gold bar ----------------------------------------------------- */
.gold-bar {
  width: 48px; height: 3px;
  background: var(--wg-gold);
  border-radius: 2px;
  margin-bottom: 20px;
}
.gold-bar.center { margin-left: auto; margin-right: auto; }

/* --- Difference Section ------------------------------------------- */
.wg-diff-img {
  border-radius: var(--wg-radius-lg);
  box-shadow: var(--wg-shadow-lg);
  width: 100%;
  object-fit: cover;
}
.wg-diff-img-wrap {
  position: relative;
  padding-bottom: 28px;
  padding-right: 28px;
}
.wg-diff-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  background: var(--wg-gold);
  border-radius: var(--wg-radius-lg);
  opacity: .14;
  z-index: -1;
}

.diff-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.diff-point:last-child { margin-bottom: 0; }
.diff-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  background: var(--wg-navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.diff-icon svg { width: 22px; height: 22px; color: var(--wg-gold); }
.diff-point h5 { font-size: 1rem; color: var(--wg-navy); margin-bottom: 4px; font-weight: 700; }
.diff-point p  { font-size: .91rem; color: var(--wg-muted); margin: 0; line-height: 1.65; }

/* --- Service Cards ------------------------------------------------ */
.wg-service-card {
  background: #fff;
  border: 1.5px solid var(--wg-gray-mid, #e4e4e4);
  border-radius: var(--wg-radius);
  padding: 36px 28px 32px;
  height: 100%;
  transition: all var(--wg-transition);
  position: relative;
  overflow: hidden;
}
.wg-service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--wg-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--wg-transition);
}
.wg-service-card:hover {
  box-shadow: var(--wg-shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.wg-service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 58px; height: 58px;
  background: rgba(12,36,97,.06);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background var(--wg-transition);
}
.service-icon svg { width: 26px; height: 26px; color: var(--wg-navy); transition: color var(--wg-transition); }
.wg-service-card:hover .service-icon { background: var(--wg-navy); }
.wg-service-card:hover .service-icon svg { color: var(--wg-gold); }

.wg-service-card h5 { font-size: 1.05rem; color: var(--wg-navy); margin-bottom: 10px; font-weight: 700; }
.wg-service-card p  { font-size: .88rem; color: var(--wg-muted); line-height: 1.7; margin: 0; }

/* --- Nursing Difference (image-text sections) --------------------- */
.nursing-diff-section { padding: 96px 0; }
.nursing-diff-section:nth-of-type(even) { background: var(--wg-gray); }

.nursing-img {
  border-radius: var(--wg-radius-lg);
  box-shadow: var(--wg-shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.includes-box {
  background: rgba(12,36,97,.04);
  border-left: 3px solid var(--wg-gold);
  border-radius: 0 8px 8px 0;
  padding: 22px 26px;
  margin-top: 28px;
}
.includes-box h6 {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wg-gold);
  margin-bottom: 14px;
}
.includes-list {
  columns: 2;
  column-gap: 24px;
  list-style: none;
  padding: 0; margin: 0;
}
.includes-list li {
  font-size: .84rem;
  color: var(--wg-muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  break-inside: avoid;
}
.includes-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--wg-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- How It Works ------------------------------------------------- */
.wg-steps-row { position: relative; }
.wg-steps-row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--wg-gold), transparent);
  opacity: .35;
}
.wg-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.wg-step-num {
  width: 80px; height: 80px;
  background: var(--wg-navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 0 10px rgba(12,36,97,.08);
  position: relative;
}
.wg-step-num::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,146,58,.45);
}
.wg-step h5 { font-size: 1.02rem; color: var(--wg-navy); margin-bottom: 10px; font-weight: 700; }
.wg-step p  { font-size: .88rem; color: var(--wg-muted); line-height: 1.7; margin: 0; }

/* --- Why Families ------------------------------------------------- */
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.why-item:last-child { margin-bottom: 0; }
.why-check {
  width: 28px; height: 28px;
  min-width: 28px;
  background: var(--wg-gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.why-check svg { width: 14px; height: 14px; color: var(--wg-gold); }
.why-item h6 { font-size: .97rem; color: var(--wg-navy); margin-bottom: 3px; font-weight: 700; font-family: 'Inter', sans-serif; }
.why-item p  { font-size: .88rem; color: var(--wg-muted); margin: 0; line-height: 1.6; }

/* --- Testimonials ------------------------------------------------- */
.wg-testimonials { background: var(--wg-navy); }
.wg-testimonials .section-title { color: #fff; }

.wg-tcard {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--wg-radius);
  padding: 38px 32px;
  height: 100%;
  transition: all var(--wg-transition);
}
.wg-tcard:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(200,146,58,.32);
}
.wg-stars { color: var(--wg-gold); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 22px; }
.wg-tcard blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.02rem;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  margin-bottom: 26px;
  border: none;
  padding: 0;
}
.wg-tcard-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.wg-avatar {
  width: 46px; height: 46px;
  background: var(--wg-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.wg-tname  { font-weight: 700; color: #fff; font-size: .94rem; display: block; margin-bottom: 2px; }
.wg-trole  { font-size: .78rem; color: rgba(255,255,255,.42); display: block; }

/* --- CTA Band ----------------------------------------------------- */
.wg-cta {
  background: #000;
  position: relative;
  overflow: hidden;
}
.wg-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,146,58,.14) 0%, transparent 68%);
  pointer-events: none;
}
.wg-cta h2 { color: #fff; }
.wg-cta .lead-text { color: rgba(255,255,255,.62); }
.cta-phone-big {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.cta-phone-big svg { color: var(--wg-gold); flex-shrink: 0; }

/* --- Contact Form ------------------------------------------------- */
.wg-contact-card {
  background: #fff;
  border-radius: var(--wg-radius-lg);
  padding: 48px 44px;
  box-shadow: var(--wg-shadow-lg);
}
.wg-form-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wg-text);
  margin-bottom: 8px;
}
.wg-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--wg-gray-mid);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--wg-text);
  background: #fff;
  transition: border-color var(--wg-transition), box-shadow var(--wg-transition);
  outline: none;
  appearance: none;
}
.wg-input:focus {
  border-color: var(--wg-navy);
  box-shadow: 0 0 0 3px rgba(12,36,97,.09);
}
.wg-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='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.wg-textarea { height: 130px; resize: vertical; }
.wg-submit {
  width: 100%;
  padding: 17px;
  background: var(--wg-navy);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--wg-transition);
}
.wg-submit:hover {
  background: var(--wg-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,36,97,.28);
}

.wg-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
}
.wg-cd-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: rgba(12,36,97,.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.wg-cd-icon svg { width: 20px; height: 20px; color: var(--wg-navy); }
.wg-cd-label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wg-gold);
  display: block;
  margin-bottom: 5px;
}
.wg-cd-value { font-size: .96rem; color: var(--wg-text); line-height: 1.5; }
.wg-cd-value a { color: var(--wg-text); }
.wg-cd-value a:hover { color: var(--wg-navy); }

/* --- Page Hero ---------------------------------------------------- */
.wg-page-hero {
  background: var(--wg-navy);
  padding: 180px 0 96px;
  text-align: center;
}
.wg-page-hero h1 { color: #fff; margin-bottom: 18px; }
.wg-page-hero .lead-text { max-width: 560px; margin: 0 auto; color: rgba(255,255,255,.62); }

/* --- Value Cards -------------------------------------------------- */
.wg-value-card {
  background: #fff;
  border-radius: var(--wg-radius);
  padding: 38px 30px;
  box-shadow: var(--wg-shadow);
  text-align: center;
  height: 100%;
  transition: transform var(--wg-transition), box-shadow var(--wg-transition);
}
.wg-value-card:hover { transform: translateY(-5px); box-shadow: var(--wg-shadow-lg); }
.wg-value-icon {
  width: 64px; height: 64px;
  background: rgba(12,36,97,.06);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.wg-value-icon svg { width: 28px; height: 28px; color: var(--wg-navy); }
.wg-value-card h5 { font-size: 1.08rem; color: var(--wg-navy); margin-bottom: 10px; font-weight: 700; }
.wg-value-card p  { font-size: .88rem; color: var(--wg-muted); margin: 0; line-height: 1.7; }

/* --- Quote Block -------------------------------------------------- */
.wg-quote-block {
  background: rgba(12,36,97,.04);
  border-left: 3px solid var(--wg-gold);
  border-radius: 0 10px 10px 0;
  padding: 28px 32px;
}
.wg-quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.12rem;
  color: var(--wg-navy);
  line-height: 1.75;
  margin: 0;
  border: none;
  padding: 0;
}

/* --- Footer ------------------------------------------------------- */
.wg-footer {
  background: var(--wg-navy-dark);
  color: #fff;
}
.wg-footer-main { padding: 80px 0 60px; }

.wg-footer-brand p {
  color: rgba(255,255,255,.46);
  font-size: .88rem;
  line-height: 1.75;
  margin: 18px 0 30px;
  max-width: 290px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}
.footer-contact-item svg { width: 15px; height: 15px; color: var(--wg-gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a,
.footer-contact-item address {
  font-size: .85rem;
  color: rgba(255,255,255,.52);
  font-style: normal;
  line-height: 1.5;
  transition: color var(--wg-transition);
}
.footer-contact-item a:hover { color: #fff; }

.wg-footer-col h6 {
  font-family: 'Inter', sans-serif;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 22px;
}
.wg-footer-col ul { list-style: none; padding: 0; margin: 0; }
.wg-footer-col ul li { margin-bottom: 11px; }
.wg-footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.46); transition: color var(--wg-transition); }
.wg-footer-col ul li a:hover { color: var(--wg-gold); }

.footer-cta-box {
  background: rgba(200,146,58,.12);
  border: 1px solid rgba(200,146,58,.26);
  border-radius: var(--wg-radius);
  padding: 28px 24px;
}
.footer-cta-box h6 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.05rem !important;
  color: #fff !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  margin-bottom: 8px !important;
}
.footer-cta-box p {
  font-size: .84rem;
  color: rgba(255,255,255,.48);
  margin-bottom: 18px;
  line-height: 1.65;
}

.wg-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.wg-footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.28); margin: 0; }
.wg-footer-bottom a { font-size: .78rem; color: rgba(255,255,255,.36); margin-left: 24px; transition: color var(--wg-transition); }
.wg-footer-bottom a:hover { color: var(--wg-gold); }

/* --- Scroll Animations -------------------------------------------- */
.wg-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.wg-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --- Alert / Success ---------------------------------------------- */
.wg-alert-success {
  background: rgba(12,36,97,.06);
  border-left: 3px solid var(--wg-gold);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin-bottom: 24px;
  color: var(--wg-navy);
  font-weight: 600;
  font-size: .95rem;
}

/* --- RELAUNCH v3 � Charcoal & White Redesign ----------------------
   Color system override: navy #0C2461 ? charcoal #111111
   Gold reduced to accent only. All --wg-navy vars cascade automatically.
   -------------------------------------------------------------------- */
:root {
  --wg-navy:        #111111;
  --wg-navy-dark:   #0a0a0a;
  --wg-navy-mid:    #1c1c1c;
  --wg-gold:        #C8A15A;
  --wg-gold-light:  #d4ae70;
  --wg-gold-pale:   rgba(200,161,90,.10);
  --wg-shadow:      0 4px 28px rgba(0,0,0,.08);
  --wg-shadow-lg:   0 16px 56px rgba(0,0,0,.14);
}

/* Fix hardcoded navy-blue rgba values to neutral black */
.btn-wg-navy:hover    { box-shadow: 0 8px 24px rgba(0,0,0,.28) !important; }
#wg-navbar.scrolled   { box-shadow: 0 2px 30px rgba(0,0,0,.22) !important; }
.wg-service-card:hover{ box-shadow: 0 12px 40px rgba(0,0,0,.12) !important; }

/* Privacy content block */
.wg-privacy-body blockquote,
.wg-privacy-highlight {
  background: rgba(0,0,0,.04) !important;
  color: var(--wg-navy) !important;
}

/* Trust section � RN-Led Care grid */
.wg-trust-section {
  background: var(--wg-gray);
  padding: 96px 0;
}
.wg-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
@media (max-width: 991.98px) { .wg-trust-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575.98px)  { .wg-trust-grid { grid-template-columns: 1fr; } }

.wg-trust-card {
  background: #fff;
  border-radius: var(--wg-radius);
  padding: 36px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 2px 18px rgba(0,0,0,.06);
  transition: box-shadow var(--wg-transition), transform var(--wg-transition);
}
.wg-trust-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.11);
  transform: translateY(-3px);
}
.wg-trust-icon {
  width: 48px; height: 48px;
  background: var(--wg-gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--wg-gold);
}
.wg-trust-icon svg { color: var(--wg-gold); }
.wg-trust-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}
.wg-trust-card p {
  font-size: .88rem;
  color: var(--wg-muted);
  line-height: 1.7;
  margin: 0;
}

/* Who We Serve section */
.wg-serve-section { background: #fff; padding: 96px 0; }
.wg-serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
@media (max-width: 991.98px) { .wg-serve-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575.98px)  { .wg-serve-grid { grid-template-columns: 1fr; } }

.wg-serve-card {
  border: 1.5px solid var(--wg-gray-mid);
  border-radius: var(--wg-radius);
  padding: 32px 24px;
  background: #fff;
  transition: border-color var(--wg-transition), box-shadow var(--wg-transition), transform var(--wg-transition);
}
.wg-serve-card:hover {
  border-color: var(--wg-gold);
  box-shadow: 0 6px 28px rgba(200,161,90,.14);
  transform: translateY(-3px);
}
.wg-serve-card .serve-icon {
  width: 44px; height: 44px;
  background: var(--wg-gold-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--wg-gold);
  margin-bottom: 16px;
}
.wg-serve-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}
.wg-serve-card p {
  font-size: .86rem;
  color: var(--wg-muted);
  line-height: 1.7;
  margin: 0;
}

/* Specialized Clinical Packages */
.wg-pkg-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(200,161,90,.15);
}
.wg-pkg-img-wrap { height: 220px; overflow: hidden; }
.wg-pkg-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.wg-pkg-card:hover .wg-pkg-img-wrap img { transform: scale(1.04); }
.wg-pkg-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.wg-pkg-body h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  border-left: 3px solid var(--wg-gold);
  padding-left: 12px;
}
.wg-pkg-body p { font-size: .88rem; color: var(--wg-muted); line-height: 1.7; margin-bottom: 16px; }
.wg-pkg-list { list-style: none; padding: 0; margin: 0 0 0 0; }
.wg-pkg-list li {
  font-size: .82rem;
  color: #444;
  padding: 5px 0 5px 18px;
  position: relative;
  border-top: 1px solid #f0f0f0;
}
.wg-pkg-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; background: var(--wg-gold); border-radius: 50%; }

/* Mini package cards */
.wg-mini-pkg {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  border-top: 3px solid var(--wg-gold);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.wg-mini-pkg h6 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.wg-mini-pkg p { font-size: .82rem; color: var(--wg-muted); line-height: 1.65; margin: 0; }

/* Rate card table styling */
.wg-rate-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--wg-radius);
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0,0,0,.07);
}
.wg-rate-table thead tr {
  background: var(--wg-navy);
  color: #fff;
}
.wg-rate-table thead th {
  padding: 16px 20px;
  font-family: 'Playfair Display', serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.wg-rate-table tbody tr:nth-child(even) { background: var(--wg-gray); }
.wg-rate-table tbody tr:nth-child(odd)  { background: #fff; }
.wg-rate-table tbody td {
  padding: 14px 20px;
  font-size: .88rem;
  color: var(--wg-text);
  border-bottom: 1px solid var(--wg-gray-mid);
}
.wg-rate-table tbody td:last-child {
  font-weight: 700;
  color: var(--wg-navy);
  white-space: nowrap;
}

/* --- Responsive tweaks -------------------------------------------- */
@media (max-width: 991.98px) {
  .wg-steps-row::before { display: none; }
  .section-pad { padding: 72px 0; }
  .nursing-diff-section { padding: 60px 0; }
  .nursing-img { min-height: 260px; }
  .wg-page-hero { padding: 100px 0 56px; }
}
@media (max-width: 767.98px) {
  /* Hero */
  .wg-hero__content { padding: 120px 0 70px; }
  .hero-stats { gap: 20px; }
  .hero-stat-divider { display: none; }
  .display-hero { font-size: clamp(2rem, 8vw, 3rem); }

  /* Topbar � hide badges on mobile, keep phone + email */
  .wg-topbar-right { display: none; }
  .wg-topbar-left { gap: 14px; }

  /* Navbar */
  #wg-navbar { top: 36px; }

  /* Page hero (inner pages) */
  .wg-page-hero { padding: 88px 0 48px; text-align: center; }
  .wg-page-hero h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .gold-bar { margin: 10px auto 18px; }

  /* Services sections */
  .nursing-diff-section { padding: 48px 0; }
  .nursing-img { min-height: 220px; border-radius: 10px; }
  .includes-box { padding: 16px 18px; }
  .includes-list { columns: 1; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Cards / grid */
  .wg-contact-card { padding: 32px 24px; }
  .wg-footer-main { padding: 56px 0 40px; }
  .wg-footer-bottom { flex-direction: column; text-align: center; }
  .wg-footer-bottom a { margin-left: 0; }
  .section-pad { padding: 56px 0; }
  .cta-phone-big { font-size: 1.2rem; }

  /* Buttons full-width on mobile */
  .btn-wg-primary, .btn-wg-outline { width: 100%; text-align: center; }
  .d-flex.gap-3 { flex-direction: column; }

  /* Who We Serve stacked images */
  .wg-serve-img-stack { flex-direction: row; gap: 10px; }
  .wg-serve-img-stack img { height: 160px; }

  /* Package cards */
  .wg-pkg-img-wrap { height: 160px; }
}
@media (max-width: 480px) {
  .wg-topbar { height: 32px; font-size: .68rem; }
  #wg-navbar { top: 32px; }
  .wg-hero__content { padding: 108px 0 60px; }
  .nursing-img { min-height: 180px; }
}

/* -------------------------------------------------------------------
   LUXURY BLACK & WHITE REDESIGN � WHITE GLOVE PRIVATE NURSES
   Strict palette: Pure Black #000000 | Pure White #FFFFFF | Gold #C8A15A
   No blue. No navy. No slate. No sky. Zero.
------------------------------------------------------------------- */

/* -- 1. TOKEN RESET ----------------------------------------------- */
:root {
  --wg-navy:       #000000;
  --wg-navy-dark:  #000000;
  --wg-navy-mid:   #111111;
  --wg-gold:       #C8A15A;
  --wg-gold-light: #d4ae70;
  --wg-gold-pale:  rgba(200,161,90,.10);
  --wg-white:      #ffffff;
  --wg-gray:       #F9F9F9;
  --wg-gray-mid:   #EAEAEA;
  --wg-text:       #111111;
  --wg-muted:      #666666;
  --wg-charcoal:   #222222;
  --wg-shadow:     0 4px 28px rgba(0,0,0,.10);
  --wg-shadow-lg:  0 16px 56px rgba(0,0,0,.18);
  --wg-transition: .32s cubic-bezier(.4,0,.2,1);
}

/* -- 2. BASE TYPOGRAPHY ------------------------------------------- */
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--wg-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #000;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  color: #000;
  line-height: 1.18;
}
.section-title.on-dark { color: #fff; }

.lead-text {
  font-size: 1.05rem;
  color: var(--wg-muted);
  line-height: 1.85;
  letter-spacing: 0.015em;
}

.eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wg-gold);
  margin-bottom: 16px;
}

/* -- 3. SECTION RHYTHM � editorial white space -------------------- */
.section-pad { padding: 110px 0; }
@media (max-width:768px) { .section-pad { padding: 64px 0; } }

/* -- 4. DIVIDERS & ACCENTS ---------------------------------------- */
.gold-bar {
  width: 40px;
  height: 2px;
  background: var(--wg-gold);
  margin: 0 0 28px;
  border-radius: 2px;
}
.gold-bar.center { margin: 0 auto 28px; }

/* -- 5. TOPBAR + NAVBAR ------------------------------------------- */
.wg-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1060;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  height: 36px;
}
.wg-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.wg-topbar-left, .wg-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.wg-topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  letter-spacing: .04em;
  color: #333 !important;
  text-decoration: none;
  font-weight: 500;
}
.wg-topbar-item:hover { color: var(--wg-gold) !important; }
.wg-topbar-badge { color: #555 !important; }

#wg-navbar {
  top: 36px;
  padding: 4px 0;
  background: transparent;
}
/* Logo image — CSS height overrides Bootstrap's img { height: auto } reset */
.wg-navbar-logo {
  height: 58px !important;
  width: auto !important;
  max-width: 220px !important;
  display: block;
  object-fit: contain;
}
#wg-navbar .navbar-brand svg {
  max-height: 90px !important;
  width: auto;
  overflow: visible;
}
/* Keep nav links from wrapping at desktop */
#wg-navbar .navbar-nav { gap: 0 !important; }
#wg-navbar .navbar-nav .nav-item { white-space: nowrap; }
#wg-navbar.scrolled {
  background: #000 !important;
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 8px 32px rgba(0,0,0,.35) !important;
  padding: 14px 0 !important;
}

.wg-nav-link { color: rgba(255,255,255,.80) !important; font-size: .82rem; letter-spacing: .05em; font-weight: 500; }
.wg-nav-link:hover { color: var(--wg-gold) !important; }

.navbar-phone-link { color: rgba(255,255,255,.82) !important; font-size: .82rem; letter-spacing: .04em; }
.navbar-phone-link:hover { color: var(--wg-gold) !important; }
.navbar-phone-link svg { color: var(--wg-gold) !important; }

/* -- 6. HERO ------------------------------------------------------ */
.wg-hero { background: #000; min-height: 100vh; }
.wg-hero__bg { background-position: center center; filter: brightness(.88); }
.wg-hero__overlay {
  background: linear-gradient(
    110deg,
    rgba(0,0,0,.68) 0%,
    rgba(0,0,0,.40) 50%,
    rgba(0,0,0,.22) 100%
  );
}
.wg-hero__content { padding: 170px 0 120px; }

.display-hero {
  font-size: clamp(2.8rem, 5.8vw, 4.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.10;
  letter-spacing: -0.02em;
}
.hero-gold { color: var(--wg-gold); font-style: italic; }

.hero-subtitle { color: rgba(255,255,255,.75); line-height: 1.85; font-size: 1.05rem; }

.hero-stats {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 60px;
  padding-top: 44px;
}
.hero-stat-num { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; }
.hero-stat-lbl { color: rgba(255,255,255,.50); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.14); }

/* -- 7. BUTTONS � premium micro-interactions ---------------------- */
.btn-wg-primary {
  background: var(--wg-gold);
  color: #000 !important;
  border: 2px solid var(--wg-gold);
  padding: 16px 38px;
  border-radius: 2px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .32s cubic-bezier(.4,0,.2,1);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-wg-primary:hover {
  background: #000;
  border-color: #000;
  color: var(--wg-gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,.20);
}

.btn-wg-outline {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.50);
  padding: 16px 38px;
  border-radius: 2px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  transition: all .32s cubic-bezier(.4,0,.2,1);
}
.btn-wg-outline:hover {
  background: #fff;
  border-color: #fff;
  color: #000 !important;
  transform: translateY(-2px);
}

.btn-wg-navy {
  background: #000;
  color: #fff !important;
  border: 2px solid #000;
  padding: 16px 38px;
  border-radius: 2px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .32s cubic-bezier(.4,0,.2,1);
}
.btn-wg-navy:hover {
  background: var(--wg-gold);
  border-color: var(--wg-gold);
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,161,90,.28);
}

.btn-wg-ghost {
  background: transparent;
  color: #000 !important;
  border: 1px solid #000;
  padding: 16px 38px;
  border-radius: 2px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .32s cubic-bezier(.4,0,.2,1);
}
.btn-wg-ghost:hover {
  background: #000;
  color: #fff !important;
  transform: translateY(-2px);
}

/* -- 8. FEATURE / DIFF SECTION ------------------------------------ */
.wg-diff-img-wrap { position: relative; }
.wg-diff-img-wrap img { filter: grayscale(15%) contrast(1.04); border-radius: 4px; }
.wg-diff-img-accent {
  position: absolute;
  bottom: -18px; right: -18px;
  width: 80%; height: 80%;
  border: 2px solid var(--wg-gold);
  border-radius: 4px;
  z-index: -1;
}

.diff-point { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.diff-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: #000;
  color: var(--wg-gold);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.diff-point h5 { font-size: .92rem; font-weight: 700; color: #000; margin-bottom: 4px; letter-spacing: .02em; }
.diff-point p  { font-size: .84rem; color: var(--wg-muted); line-height: 1.7; margin: 0; }

/* -- 9. TRUST PILLARS --------------------------------------------- */
.wg-trust-section { background: #000; padding: 110px 0; }
.wg-trust-section .section-title { color: #fff; }
.wg-trust-section .lead-text { color: rgba(255,255,255,.55); }
.wg-trust-section .eyebrow { color: var(--wg-gold); }
.wg-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
}
@media (max-width:768px) { .wg-trust-grid { grid-template-columns: 1fr; } }
.wg-trust-card {
  background: #000;
  padding: 36px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background .28s ease;
}
.wg-trust-card:hover { background: #0d0d0d; }
.wg-trust-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  color: var(--wg-gold);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 2px solid var(--wg-gold);
  padding-bottom: 6px;
}
.wg-trust-card h5 { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 6px; letter-spacing: .03em; }
.wg-trust-card p  { font-size: .82rem; color: rgba(255,255,255,.48); line-height: 1.7; margin: 0; }

/* -- 10. SERVICE CARDS -------------------------------------------- */
.wg-service-card {
  background: #fff;
  border: 1px solid #EAEAEA;
  border-radius: 2px;
  padding: 36px 28px;
  height: 100%;
  transition: all .32s ease;
  position: relative;
  overflow: hidden;
}
.wg-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--wg-gold);
  transition: width .32s ease;
}
.wg-service-card:hover { border-color: #ccc; box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-4px); }
.wg-service-card:hover::after { width: 100%; }
.service-icon { color: #000; margin-bottom: 20px; }
.wg-service-card h5 { font-size: .95rem; font-weight: 700; color: #000; margin-bottom: 10px; letter-spacing: .02em; }
.wg-service-card p  { font-size: .83rem; color: var(--wg-muted); line-height: 1.75; margin: 0; }

/* -- 11. PACKAGE CARDS -------------------------------------------- */
.wg-pkg-card { border: 1px solid #EAEAEA; border-radius: 2px; box-shadow: none; }
.wg-pkg-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.10); }
.wg-pkg-img-wrap img { filter: grayscale(8%); }
.wg-pkg-body h5 { border-left: 3px solid #000; color: #000; font-size: 1rem; }
.wg-mini-pkg { border-top: 2px solid #000; border-radius: 0; box-shadow: none; }
.wg-mini-pkg h6 { color: #000; font-size: .88rem; }

/* -- 12. WHO WE SERVE --------------------------------------------- */
.wg-serve-section { background: #F9F9F9; }
.wg-serve-card {
  background: #fff;
  border: 1px solid #EAEAEA;
  border-radius: 2px;
  padding: 28px 24px;
  transition: all .28s ease;
}
.wg-serve-card:hover { border-color: #000; box-shadow: 0 8px 28px rgba(0,0,0,.07); }
.wg-serve-card .serve-icon { background: #000; color: var(--wg-gold); border-radius: 2px; }
.wg-serve-card h5 { color: #000; font-size: .9rem; }
.wg-serve-card p  { color: var(--wg-muted); font-size: .83rem; }

/* -- 13. HOW IT WORKS --------------------------------------------- */
.wg-step { background: #fff; border: 1px solid #EAEAEA; border-radius: 2px; padding: 36px 28px; text-align: center; height: 100%; }
.wg-step-num {
  width: 52px; height: 52px;
  background: #000;
  color: var(--wg-gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.wg-step h5 { color: #000; font-size: .95rem; font-weight: 700; margin-bottom: 10px; }
.wg-step p  { color: var(--wg-muted); font-size: .84rem; line-height: 1.75; margin: 0; }

/* -- 14. TESTIMONIALS --------------------------------------------- */
.wg-testimonials { background: #000; }
.wg-testimonials .section-title { color: #fff; }
.wg-testimonials .eyebrow { color: var(--wg-gold); }
.wg-tcard {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 2px;
  padding: 36px 32px;
  height: 100%;
  border-top: 2px solid var(--wg-gold);
}
.wg-stars { color: var(--wg-gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: 18px; }
.wg-tcard blockquote { color: rgba(255,255,255,.75); font-size: .92rem; line-height: 1.85; font-style: italic; margin: 0 0 24px; border: none; padding: 0; }
.wg-tname { color: #fff; font-weight: 700; font-size: .88rem; display: block; }
.wg-trole { color: rgba(255,255,255,.40); font-size: .76rem; letter-spacing: .04em; }
.wg-avatar { background: var(--wg-gold); color: #000; font-weight: 700; }

/* -- 15. CTA SECTION ---------------------------------------------- */
.wg-cta {
  background: #000 !important;
  background-image: none !important;
}
.wg-cta .section-title { color: #fff; }
.wg-cta .eyebrow { color: var(--wg-gold); }
.cta-phone-big {
  font-size: 1.6rem !important;
  color: #fff !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: .01em;
  transition: color .28s ease;
}
.cta-phone-big:hover { color: var(--wg-gold) !important; }
.cta-phone-big svg { color: var(--wg-gold); }

/* -- 16. FOOTER --------------------------------------------------- */
.wg-footer { background: #000 !important; border-top: 1px solid #1a1a1a; }
.wg-footer-main { border-bottom: 1px solid #1a1a1a; }
.wg-footer h5, .wg-footer h6 { color: #fff; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 20px; }
.wg-footer p, .wg-footer-desc { color: rgba(255,255,255,.45); font-size: .84rem; line-height: 1.8; }
.wg-footer-link { color: rgba(255,255,255,.52) !important; font-size: .84rem; transition: color .24s; display: block; margin-bottom: 10px; }
.wg-footer-link:hover { color: var(--wg-gold) !important; }
.wg-footer-cta-box { background: #111; border: 1px solid #222; border-radius: 2px; }
.wg-footer-cta-box h5 { color: #fff; font-family: 'Playfair Display', serif; letter-spacing: .01em; text-transform: none; font-size: 1.1rem; margin-bottom: 6px; }
.wg-footer-cta-box p { color: rgba(255,255,255,.48); }
.wg-footer-bottom { background: #000; border-top: 1px solid #111; }
.wg-footer-bottom p, .wg-footer-bottom a { color: rgba(255,255,255,.30); font-size: .76rem; letter-spacing: .04em; }
.wg-footer-bottom a:hover { color: var(--wg-gold); }

/* -- 17. PAGE HERO (inner pages) ---------------------------------- */
.wg-page-hero { background: #000 !important; }
.wg-page-hero h1 { color: #fff; }
.wg-page-hero .lead-text { color: rgba(255,255,255,.6); }

/* -- 18. IMAGE TREATMENT ------------------------------------------ */
.wg-diff-img { filter: grayscale(12%) contrast(1.05); }
.wg-serve-section img,
.wg-pkg-img-wrap img { filter: grayscale(10%); }

/* -- 19. SCROLLBAR ------------------------------------------------ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--wg-gold); }

/* -- 20. SELECTION ------------------------------------------------ */
::selection { background: var(--wg-gold); color: #000; }

