/*
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: 0; 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('images/hero_arrival.png');
  background-size: cover;
  background-position: center 25%;
  will-change: transform;
}
.wg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(8,25,63,.97) 0%,
    rgba(8,25,63,.88) 42%,
    rgba(8,25,63,.38) 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: linear-gradient(118deg, var(--wg-navy-dark) 0%, var(--wg-navy) 55%, #1a3a7a 100%);
  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;
}

/* ─── Responsive tweaks ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .wg-steps-row::before { display: none; }
  .section-pad { padding: 72px 0; }
}
@media (max-width: 767.98px) {
  .wg-hero__content { padding: 140px 0 80px; }
  .hero-stats { gap: 20px; }
  .hero-stat-divider { display: none; }
  .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; }
  .includes-list { columns: 1; }
  .section-pad { padding: 56px 0; }
  .cta-phone-big { font-size: 1.2rem; }
}
