/* =============================================
   Post Install Pros – Custom Styles
   ============================================= */

:root {
  --pip-teal:   #2b6872;
  --pip-yellow: #f5c518;
  --pip-dark:   #1a3d42;
  --pip-light:  #f8f9fa;
  --pip-text:   #333333;
}

/* ---------- Global ---------- */
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--pip-text);
  margin: 0;
  padding: 0;
}

a { color: inherit; text-decoration: none; }

/* ---------- Top utility bar ---------- */
.top-bar {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 6px 0;
  font-size: 0.85rem;
}

.top-bar .contact-info a {
  color: var(--pip-teal);
  margin-right: 18px;
}

.top-bar .contact-info i {
  margin-right: 4px;
}

.top-bar .user-actions a {
  color: var(--pip-teal);
  margin-left: 12px;
  font-weight: 600;
}

/* ---------- Navbar ---------- */
.navbar {
  background: #fff !important;
  border-bottom: 3px solid var(--pip-yellow);
  padding: 10px 0;
}

.navbar-brand img {
  height: 70px;
}

.navbar-brand .brand-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pip-teal);
  line-height: 1.25;
  max-width: 220px;
}

.nav-link {
  color: var(--pip-teal) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 14px !important;
  border-radius: 4px;
  transition: background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: var(--pip-teal);
  color: #fff !important;
}

.nav-link.active-page {
  background: var(--pip-yellow);
  color: var(--pip-dark) !important;
}

.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--pip-yellow);
  color: var(--pip-dark);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Hero / Attention Banner ---------- */
.hero-section {
  background: var(--pip-yellow);
  padding: 50px 0 40px;
}

.hero-section .attention-card {
  background: rgba(255, 255, 255, 0.55);
  border: 2px solid rgba(26, 61, 66, 0.16);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(26, 61, 66, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin-bottom: 18px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  overflow: hidden;
}

.hero-section .attention-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, rgba(43, 104, 114, 0.4), rgba(245, 197, 24, 0.3), rgba(43, 104, 114, 0.4));
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.35s ease;
  animation: attention-glow 2.5s ease-in-out infinite;
  animation-play-state: paused;
}

.hero-section .attention-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  z-index: 1;
  pointer-events: none;
  transition: left 0.6s ease;
}

.hero-section .attention-card:hover::after {
  left: 100%;
}

.hero-section .attention-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(26, 61, 66, 0.35);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 20px 48px rgba(43, 104, 114, 0.18), 
              0 0 20px rgba(245, 197, 24, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-section .attention-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}

.hero-section .attention-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(245, 197, 24, 0.2);
  color: var(--pip-dark);
  border: 1px solid rgba(245, 197, 24, 0.55);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-section .attention-card:hover .attention-badge {
  background: rgba(245, 197, 24, 0.4);
  border-color: rgba(245, 197, 24, 0.9);
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.3);
}

.hero-section .attention-copy {
  font-size: 1rem;
  color: #222;
  line-height: 1.65;
  max-width: 520px;
}

.hero-section .hero-image {
  object-fit: cover;
  width: 100%;
  max-height: 320px;
}

.hero-image-stage {
  position: relative;
  width: 100%;
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
}

.hero-image-stage .hero-image {
  display: block;
  height: 100%;
  max-height: none;
}

.hero-confetti-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  top: -12px;
  border-radius: 999px;
  opacity: 0.95;
  animation: confetti-drop var(--confetti-duration, 1500ms) ease-in forwards;
  animation-delay: var(--confetti-delay, 0ms);
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.hero-section .col-md-6:last-child {
  display: flex;
  flex-direction: column;
}

.hero-section .btn-pip {
  background: var(--pip-teal);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  max-width: none;
  margin-bottom: 12px;
  display: block;
  text-align: center;
  transition: background 0.2s, transform 0.1s;
}

.hero-section .btn-pip:hover {
  background: var(--pip-dark);
  color: #fff;
  transform: translateY(-2px);
}

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section Heading ---------- */
.section-heading {
  max-width: 760px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(43, 104, 114, 0.08);
  color: var(--pip-teal);
  border: 1px solid rgba(43, 104, 114, 0.18);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-heading h2 {
  color: var(--pip-dark);
  font-weight: 900;
}

.section-heading p {
  color: #5b6570;
  line-height: 1.7;
}

.brand-mark.is-shaking {
  animation: pip-shake 0.7s ease-in-out;
  transform-origin: center bottom;
}

@keyframes confetti-drop {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--confetti-drift, 0px), 240px, 0) rotate(540deg);
  }
}

@keyframes pip-shake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  15% { transform: translateX(-2px) rotate(-3deg); }
  30% { transform: translateX(2px) rotate(3deg); }
  45% { transform: translateX(-2px) rotate(-2deg); }
  60% { transform: translateX(1px) rotate(2deg); }
  75% { transform: translateX(-1px) rotate(-1deg); }
}

@keyframes attention-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(245, 197, 24, 0.3), 0 0 20px rgba(43, 104, 114, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(245, 197, 24, 0.5), 0 0 40px rgba(43, 104, 114, 0.2);
  }
}

@media (min-width: 768px) {
  .hero-section .row {
    align-items: stretch !important;
  }

  .hero-section .col-md-6:first-child {
    display: flex;
  }

  .hero-section .col-md-6:first-child .hero-image {
    height: 100%;
    max-height: none;
  }


/* ---------- Checkout Details ---------- */
.checkout-details-body {
  background: linear-gradient(160deg, #f4f8f9 0%, #f6f7f8 45%, #ffffff 100%);
}

.checkout-details-wrap {
  min-height: 100vh;
}

.checkout-panel,
.checkout-summary-panel {
  background: #ffffff;
  border: 1px solid rgba(26, 61, 66, 0.09);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(26, 61, 66, 0.08);
}

.checkout-panel {
  padding: 1.5rem;
}

.checkout-panel-head {
  border-bottom: 1px solid #eef1f2;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.checkout-summary-panel {
  padding: 1.25rem;
  position: sticky;
  top: 92px;
}

.summary-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed #dee5e8;
  padding: 0.6rem 0;
}

.summary-list > div:last-child {
  border-bottom: 0;
}

.summary-list dt {
  color: #5b6570;
  font-weight: 600;
  margin: 0;
}

.summary-list dd {
  color: var(--pip-dark);
  font-weight: 700;
  margin: 0;
  text-align: right;
}

.fee-note {
  border: 1px solid rgba(43, 104, 114, 0.2);
  background: rgba(43, 104, 114, 0.07);
  color: var(--pip-dark);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.92rem;
}

@media (max-width: 991px) {
  .checkout-summary-panel {
    position: static;
  }
}
  .hero-image-stage {
    height: 100%;
  }

  .hero-section .col-md-6:last-child {
    justify-content: center;
  }
}

/* ---------- Section Divider ---------- */
.gold-divider {
  height: 4px;
  background: var(--pip-yellow);
  border: none;
  margin: 0;
}

/* ---------- Services Section ---------- */
.services-section {
  padding: 60px 0;
  background: #fff;
}

.services-section h2 {
  color: var(--pip-teal);
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card {
  border: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.service-card .card-title {
  color: var(--pip-teal);
  font-weight: 700;
}

.service-card .btn-card {
  background: var(--pip-teal);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
  font-weight: 600;
  transition: background 0.2s;
}

.service-card .btn-card:hover {
  background: var(--pip-dark);
  color: #fff;
}

/* ---------- Policy Banner ---------- */
.policy-section {
  background: var(--pip-teal);
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

.policy-section h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.policy-section .btn-policy {
  background: var(--pip-yellow);
  color: var(--pip-dark);
  font-weight: 700;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  margin-top: 16px;
  font-size: 1rem;
  transition: background 0.2s;
}

.policy-section .btn-policy:hover {
  background: #e0b000;
}

/* ---------- Why Choose Us ---------- */
.why-section {
  background: var(--pip-light);
  padding: 60px 0;
}

.why-section h2 {
  color: var(--pip-teal);
  font-weight: 700;
}

.why-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
  height: 100%;
}

.why-card i {
  font-size: 2.5rem;
  color: var(--pip-teal);
  margin-bottom: 14px;
}

.why-card h5 {
  font-weight: 700;
  color: var(--pip-dark);
}

/* ---------- Catalog / All Products ---------- */

/* Price period label (e.g. /mo) */
.price-period {
  font-size: 0.75rem;
  font-weight: 400;
  color: #888;
}

/* Billing toggle */
.billing-toggle-wrap {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
}

.billing-toggle-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 10px;
}

.billing-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.billing-pill {
  border: 2px solid #d0d0d0;
  border-radius: 999px;
  background: #fff;
  color: #555;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1;
}

.billing-pill.active {
  border-color: var(--pip-teal);
  background: var(--pip-teal);
  color: #fff;
}

.billing-recommended {
  display: inline-block;
  background: var(--pip-yellow);
  color: var(--pip-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  margin-left: 4px;
  vertical-align: middle;
}
.catalog-hero {
  background: linear-gradient(135deg, #fdf7dd 0%, #f5c518 100%);
  border-bottom: 4px solid var(--pip-teal);
  padding: 44px 0 28px;
}

.catalog-hero h1 {
  color: var(--pip-dark);
  font-weight: 900;
  line-height: 1.05;
}

.catalog-hero .subcopy {
  color: #3d3d3d;
  max-width: 720px;
}

.catalog-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(26, 61, 66, 0.18);
  color: var(--pip-dark);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0.4rem 0.5rem 0;
}

.catalog-section {
  background: #fff;
  padding: 32px 0 64px;
}

@media (min-width: 992px) {
  .catalog-section .row.g-4 > [class*="col-lg-4"] {
    flex: 0 0 auto;
    width: 25%;
  }
}

.catalog-section h2 {
  color: var(--pip-teal);
  font-weight: 800;
}

.product-card {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.13);
}

.product-card .product-art {
  height: 176px;
  background: linear-gradient(145deg, #2b6872 0%, #1a3d42 100%);
  position: relative;
  overflow: hidden;
}

.product-card .product-art::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

.product-card .product-img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  display: block;
}

.product-card .product-art i {
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 4.5rem;
  color: rgba(255, 255, 255, 0.2);
}

.product-card .card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.product-card .product-tag {
  display: inline-block;
  background: #fff8d5;
  color: var(--pip-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.product-card .card-title {
  color: var(--pip-dark);
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.product-card .price {
  color: var(--pip-teal);
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.7rem;
}

.product-card .description {
  color: #666;
  font-size: 0.93rem;
  min-height: 48px;
  margin-bottom: auto;
}

.one-time-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  color: #7a8594;
  margin: auto 0 0.35rem;
  cursor: pointer;
  opacity: 0.9;
}

.one-time-option input {
  margin: 0;
  accent-color: var(--pip-teal);
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
}

.product-card .btn-cart {
  margin-top: 0.35rem;
}

.product-card .btn-cart {
  background: var(--pip-teal);
  color: #fff;
  border-radius: 8px;
  border: 0;
  font-weight: 700;
  padding: 0.8rem 1rem;
}

.product-card .btn-cart:hover {
  background: var(--pip-dark);
  color: #fff;
}

.catalog-banner {
  background: #eef6f7;
  border-left: 5px solid var(--pip-yellow);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

/* ---------- Service Information ---------- */
.service-hero {
  background: linear-gradient(135deg, #eef7f8 0%, #ffffff 55%, #fdf7dd 100%);
  padding: 72px 0 36px;
}

.service-eyebrow {
  margin-bottom: 1rem;
}

.service-lead {
  max-width: 640px;
  color: #4a5561;
  line-height: 1.8;
}

.service-cta {
  min-width: 180px;
}

.service-mini-list {
  display: grid;
  gap: 0.85rem;
  max-width: 640px;
}

.service-mini-list div {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(26, 61, 66, 0.12);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  color: #45505a;
  box-shadow: 0 10px 24px rgba(26,61,66,0.06);
}

.service-mini-list i {
  color: var(--pip-teal);
  margin-top: 0.18rem;
}

.service-hero-gallery {
  position: relative;
  min-height: 420px;
}

.service-hero-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(26, 61, 66, 0.18);
  border: 10px solid rgba(255,255,255,0.82);
  background: #fff;
  transform: translateZ(0);
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.service-hero-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-card.carousel-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-card-primary {
  inset: 0 90px 0 0;
}

.hero-card-secondary {
  inset: 0 90px 0 0;
}

.hero-card-top-right {
  top: 14px;
  right: 0;
}

.hero-card-bottom-right {
  right: 18px;
  bottom: 10px;
}

@keyframes carousel-rotate {
  0%, 100% { opacity: 0; }
  10%, 90% { opacity: 1; }
}

.info-stats-section {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.06), rgba(43, 104, 114, 0.04));
  padding: 28px 0 66px;
  border-top: 1px solid rgba(43, 104, 114, 0.08);
  border-bottom: 1px solid rgba(43, 104, 114, 0.08);
}

.stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 12px 30px rgba(26, 61, 66, 0.08);
  border: 1px solid rgba(43, 104, 114, 0.08);
  height: 100%;
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(245, 197, 24, 0.18);
  color: var(--pip-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--pip-teal);
  line-height: 1;
}

.stat-label {
  margin-top: 0.3rem;
  color: #5b6570;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 800;
}

.service-content-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 10px 0 70px;
  border-bottom: 2px solid rgba(43, 104, 114, 0.06);
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(43, 104, 114, 0.08);
  box-shadow: 0 12px 30px rgba(26, 61, 66, 0.07);
  padding: 1.6rem;
  height: 100%;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(43,104,114,0.1), rgba(245,197,24,0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pip-teal);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pip-dark);
}

.feature-card p {
  color: #5b6570;
  line-height: 1.7;
  margin-bottom: 0;
}

.process-section {
  padding: 12px 0 74px;
  background: linear-gradient(135deg, rgba(43, 104, 114, 0.05), rgba(245, 197, 24, 0.03));
  border-top: 1px solid rgba(43, 104, 114, 0.08);
  border-bottom: 1px solid rgba(43, 104, 114, 0.08);
}

.timeline-grid {
  display: grid;
  gap: 0.95rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
  background: #f8fafb;
  border: 1px solid rgba(43,104,114,0.08);
  border-radius: 18px;
  padding: 1rem 1rem;
  box-shadow: 0 10px 24px rgba(26,61,66,0.06);
}

.timeline-step {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--pip-teal);
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.timeline-item h3 {
  color: var(--pip-dark);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.timeline-item p {
  color: #5b6570;
  margin-bottom: 0;
  line-height: 1.65;
}

.assurance-section {
  padding: 8px 0 74px;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.08), rgba(43, 104, 114, 0.04));
  border-top: 1px solid rgba(43, 104, 114, 0.08);
  border-bottom: 1px solid rgba(43, 104, 114, 0.08);
}

.assurance-card {
  height: 100%;
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(26,61,66,0.1);
  box-shadow: 0 14px 32px rgba(26,61,66,0.08);
  padding: 1.7rem;
}

.assurance-card.accent {
  background: linear-gradient(135deg, rgba(43,104,114,0.95), rgba(26,61,66,0.96));
  color: #fff;
}

.assurance-card.accent h3,
.assurance-card.accent p {
  color: #fff;
}

.assurance-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(245,197,24,0.18);
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.assurance-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.assurance-card p {
  margin-bottom: 0;
  color: #5b6570;
  line-height: 1.7;
}

.cta-band {
  background: linear-gradient(135deg, var(--pip-teal), var(--pip-dark));
  color: #fff;
  padding: 42px 0;
}

.cta-band h2 {
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.cta-band p {
  color: rgba(255,255,255,0.82);
}

.faq-page .faq-hero {
  background: linear-gradient(135deg, #fdf7dd 0%, #ffffff 56%, #eef7f8 100%);
  padding: 74px 0 28px;
}

.faq-hero .faq-hero-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(26, 61, 66, 0.1);
  box-shadow: 0 16px 40px rgba(26,61,66,0.08);
  border-radius: 22px;
  padding: 1.25rem;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(43,104,114,0.08);
  border: 1px solid rgba(43,104,114,0.15);
  color: var(--pip-teal);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-hero h1,
.faq-hero .hero-copy {
  color: var(--pip-dark);
}

.faq-hero .hero-copy {
  max-width: 630px;
  line-height: 1.8;
}

.faq-side-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(26,61,66,0.12);
}

.faq-side-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.faq-funnel-section {
  padding: 18px 0 68px;
  background: #fff;
}

.funnel-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(43,104,114,0.08);
  box-shadow: 0 12px 28px rgba(26,61,66,0.07);
  padding: 1.5rem;
  height: 100%;
}

.funnel-step {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--pip-yellow);
  color: var(--pip-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 1rem;
}

.funnel-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--pip-dark);
}

.funnel-card p {
  color: #5b6570;
  line-height: 1.7;
  margin-bottom: 0;
}

.faq-accordion .accordion-item {
  border: 0;
  margin-bottom: 0.95rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26,61,66,0.08);
}

.faq-accordion .accordion-button {
  background: #fff;
  color: var(--pip-dark);
  font-weight: 800;
  padding: 1.15rem 1.2rem;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(43,104,114,0.08), rgba(245,197,24,0.13));
  color: var(--pip-dark);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  color: #505a63;
  line-height: 1.8;
  background: #fff;
}

.faq-accordion .accordion-body ul,
.faq-accordion .accordion-body ol {
  margin-bottom: 0;
}

.faq-accordion .accordion-body strong {
  color: var(--pip-dark);
}

.faq-callout {
  background: linear-gradient(135deg, var(--pip-teal), var(--pip-dark));
  color: #fff;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(26,61,66,0.16);
}

.faq-callout h3 {
  font-weight: 900;
}

.faq-callout p {
  color: rgba(255,255,255,0.84);
  line-height: 1.8;
}

.faq-callout .btn-submit {
  background: var(--pip-yellow);
  color: var(--pip-dark);
}

.faq-callout .btn-submit:hover {
  background: #e0b000;
  color: var(--pip-dark);
}

.faq-note {
  background: #fff8e1;
  border-left: 5px solid var(--pip-yellow);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  color: #4d4d4d;
}

/* ---------- Form Pages ---------- */
.form-page-header {
  background: #fff;
  border-bottom: 4px solid var(--pip-yellow);
  padding: 30px 0 20px;
}

.form-page-header h1 {
  color: var(--pip-teal);
  font-weight: 700;
}

.form-page-header .service-img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.policy-notice {
  background: #fff8e1;
  border-left: 5px solid var(--pip-yellow);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 30px;
}

.policy-notice h5 {
  color: var(--pip-dark);
  font-weight: 700;
}

.form-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  padding: 36px;
}

.form-card .form-label {
  font-weight: 600;
  color: var(--pip-dark);
}

.form-card .form-control,
.form-card .form-select {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.95rem;
}

.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--pip-teal);
  box-shadow: 0 0 0 0.2rem rgba(43,104,114,0.2);
}

.btn-submit {
  background: var(--pip-teal);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 40px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--pip-dark);
  color: #fff;
}

/* ---------- Footer ---------- */
footer {
  background: var(--pip-dark);
  color: #cdd8da;
  padding: 40px 0 20px;
}

footer .footer-brand img {
  height: 60px;
  margin-bottom: 10px;
}

footer h6 {
  color: var(--pip-yellow);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

footer a {
  color: #cdd8da;
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--pip-yellow);
}

footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 0.82rem;
  color: #8da8ad;
}

footer .footer-bottom a {
  display: inline;
  color: var(--pip-yellow);
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }
  .hero-section .btn-pip {
    margin: 0 auto 12px;
  }
  .hero-section p {
    margin: 0 auto 20px;
  }
  .form-card {
    padding: 22px 16px;
  }
  .top-bar .contact-info {
    font-size: 0.78rem;
  }
}

/* =============================================
   Shopping Cart Components
   ============================================= */

/* ---------- Navbar cart link & badge ---------- */
.nav-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e53e3e;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  border-radius: 50%;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  pointer-events: none;
}

/* ---------- Product card: one-time checkbox ---------- */
.card-onetime-toggle {
  margin: 0.75rem 0 0.5rem;
}

.onetime-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #222;
  cursor: pointer;
  user-select: none;
}

.onetime-checkbox {
  cursor: pointer;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ---------- Product card: qty + view-cart row ---------- */
.card-action-row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

/* ---------- Product card: quantity control ---------- */
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #d0d8de;
  border-radius: 8px;
  overflow: hidden;
  height: 38px;
  flex: 1 1 0;
  min-width: 0;
}

.qty-btn {
  background: #f4f6f7;
  border: none;
  color: var(--pip-teal);
  font-size: 1.15rem;
  font-weight: 700;
  width: 34px;
  min-width: 34px;
  height: 100%;
  cursor: pointer;
  transition: background 0.15s;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: #e2eaec;
}

.qty-input {
  border: none;
  border-left: 1px solid #d0d8de;
  border-right: 1px solid #d0d8de;
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pip-dark);
  background: #fff;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ---------- View Cart button (slate-blue) ---------- */
.btn-view-cart {
  flex: 1 1 0;
  height: 38px;
  padding: 0 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  background: #4a6580;
  color: #fff;
  border: none;
  border-radius: 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  cursor: pointer;
}

.btn-view-cart:hover {
  background: #3a5068;
  color: #fff;
}

/* ---------- Cart conflict message ---------- */
.cart-conflict-msg {
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

/* ---------- Cart page ---------- */
.cart-page-body {
  background: #f6f8f9;
  min-height: 100vh;
}

.cart-page-main {
  padding: 48px 0 72px;
}

.cart-panel {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(26, 61, 66, 0.09);
  box-shadow: 0 10px 28px rgba(26, 61, 66, 0.07);
  overflow: hidden;
}

.cart-panel-head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #eef1f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cart-panel-head h1 {
  color: var(--pip-dark);
  font-weight: 800;
  margin: 0;
}

.btn-clear-cart {
  background: none;
  border: 1px solid #ccc;
  color: #888;
  font-size: 0.83rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.btn-clear-cart:hover {
  border-color: #e53e3e;
  color: #e53e3e;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  background: #f8fafb;
  color: #5b6570;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #eef1f2;
}

.cart-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f3f4;
  vertical-align: middle;
}

.cart-table tr:last-child td {
  border-bottom: 0;
}

.cart-product-name {
  font-weight: 700;
  color: var(--pip-dark);
  font-size: 0.97rem;
}

.cart-billing-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  margin-top: 4px;
}

.cart-billing-badge.badge-onetime {
  background: #fff8d5;
  color: var(--pip-dark);
}

.cart-billing-badge.badge-recurring {
  background: #e6f4f6;
  color: var(--pip-teal);
}

.cart-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #d0d8de;
  border-radius: 8px;
  overflow: hidden;
  height: 34px;
  width: 110px;
}

.cart-qty-btn {
  background: #f4f6f7;
  border: none;
  color: var(--pip-teal);
  font-size: 1rem;
  font-weight: 700;
  width: 34px;
  height: 100%;
  cursor: pointer;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.cart-qty-btn:hover {
  background: #e2eaec;
}

.cart-qty-input {
  border: none;
  border-left: 1px solid #d0d8de;
  border-right: 1px solid #d0d8de;
  text-align: center;
  width: 42px;
  height: 100%;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pip-dark);
  background: #fff;
  -moz-appearance: textfield;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.btn-remove-item {
  background: none;
  border: none;
  color: #aaa;
  font-size: 1rem;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.15s;
}

.btn-remove-item:hover {
  color: #e53e3e;
}

.cart-subtotal-cell {
  font-weight: 800;
  color: var(--pip-teal);
  font-size: 1rem;
}

/* Cart totals sidebar */
.cart-totals-panel {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(26, 61, 66, 0.09);
  box-shadow: 0 10px 28px rgba(26, 61, 66, 0.07);
  padding: 1.4rem;
  position: sticky;
  top: 92px;
}

.cart-totals-panel h2 {
  color: var(--pip-dark);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px dashed #dee5e8;
  font-size: 0.95rem;
}

.cart-total-row:last-of-type {
  border-bottom: 0;
}

.cart-total-label {
  color: #5b6570;
  font-weight: 600;
}

.cart-total-value {
  font-weight: 800;
  color: var(--pip-dark);
}

.cart-delivery-note {
  font-size: 0.8rem;
  color: #8da8ad;
  font-style: italic;
}

.cart-mode-alert {
  font-size: 0.85rem;
  background: #fff8d5;
  border: 1px solid #f0d000;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  color: var(--pip-dark);
  margin-top: 0.75rem;
}

.btn-checkout-cta {
  background: var(--pip-teal);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1rem;
  width: 100%;
  margin-top: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-checkout-cta:hover {
  background: var(--pip-dark);
  color: #fff;
}

/* Empty cart state */
.cart-empty-state {
  padding: 4rem 1rem;
  text-align: center;
  color: #8da8ad;
}

.cart-empty-state i {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.cart-empty-state h2 {
  font-weight: 700;
  color: var(--pip-dark);
  margin-bottom: 0.5rem;
}

/* Responsive: cart table on mobile */
@media (max-width: 767px) {
  .cart-table thead {
    display: none;
  }

  .cart-table tr {
    display: block;
    border-bottom: 1px solid #eef1f2;
    padding: 1rem;
  }

  .cart-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    border-bottom: 0;
    font-size: 0.9rem;
  }

  .cart-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #5b6570;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 1rem;
    flex: 0 0 auto;
  }

  .cart-totals-panel {
    position: static;
  }
}

/* ---------- Checkout details: cart summary items ---------- */
.cart-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #dee5e8;
  font-size: 0.92rem;
}

.cart-summary-item:last-child {
  border-bottom: 0;
}

.cart-summary-item-name {
  color: var(--pip-dark);
  font-weight: 600;
  flex: 1;
}

.cart-summary-item-meta {
  font-size: 0.75rem;
  color: #8da8ad;
}

.cart-summary-item-price {
  font-weight: 800;
  color: var(--pip-teal);
  white-space: nowrap;
}


/* ---------- Address autocomplete dropdown ---------- */
.address-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #fff;
  border: 1px solid #c8d4da;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(26,61,66,0.13);
  margin: 0;
  padding: 0.25rem 0;
  list-style: none;
  max-height: 280px;
  overflow-y: auto;
}

.address-suggestions li {
  padding: 0.55rem 1rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: #2c3e44;
  border-bottom: 1px solid #f0f4f5;
  line-height: 1.35;
  transition: background 0.1s;
}

.address-suggestions li:last-child {
  border-bottom: none;
}

.address-suggestions li:hover,
.address-suggestions li.active {
  background: #eef5f6;
  color: var(--pip-teal);
}

.address-suggestions .suggestion-sub {
  font-size: 0.78rem;
  color: #8fa8ad;
  margin-top: 1px;
}

.address-suggestions li.suggestion-loading,
.address-suggestions li.suggestion-empty {
  color: #8fa8ad;
  cursor: default;
  font-style: italic;
}
.address-suggestions li.suggestion-loading:hover,
.address-suggestions li.suggestion-empty:hover {
  background: none;
}
