/* FixRight Pro - Shared Stylesheet for All Pages */

:root {
  --navy: #0a1628;
  --navy-light: #1a2b42;
  --orange: #f97316;
  --orange-dark: #c2410c;
  --blue: #60a5fa;
  --light: #f1f5f9;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--navy);
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* STICKY CALL BAR */
.call-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--orange);
  color: var(--navy);
  padding: 10px 15px;
  text-align: center;
  font-weight: 800;
  z-index: 100;
  font-size: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.call-bar a { color: var(--navy); text-decoration: none; }

/* HEADER */
header {
  position: sticky;
  top: 42px;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
  z-index: 50;
  padding: 12px 0;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-weight: 900; font-size: 18px;
}
.logo-text { color: var(--orange); font-weight: 900; font-size: 22px; letter-spacing: 0.05em; }
.logo-sub { color: var(--blue); font-size: 10px; letter-spacing: 0.15em; }
nav ul { display: flex; gap: 24px; list-style: none; }
nav a { color: #cbd5e1; text-decoration: none; font-weight: 500; font-size: 14px; }
nav a:hover { color: var(--orange); }
@media (max-width: 768px) { nav { display: none; } }

/* BREADCRUMBS */
.breadcrumbs {
  padding: 20px 0 0;
  font-size: 13px;
  color: #94a3b8;
}
.breadcrumbs a { color: var(--blue); text-decoration: none; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .sep { margin: 0 8px; color: #475569; }

/* SERVICE HERO */
.service-hero {
  padding: 40px 0 60px;
  background:
    radial-gradient(circle at 15% 30%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 20px;
  font-weight: 700;
}
.dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.service-hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.service-hero h1 .accent { color: var(--orange); }
.service-hero .hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: #cbd5e1;
  max-width: 720px;
  margin-bottom: 28px;
}
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-primary, .btn-secondary {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}
.btn-primary:hover { background: #fb923c; transform: translateY(-2px); }
.btn-secondary {
  border: 2px solid rgba(96, 165, 250, 0.4);
  color: #cbd5e1;
  background: transparent;
}
.btn-secondary:hover { border-color: var(--blue); background: rgba(96, 165, 250, 0.1); }

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #94a3b8;
}
.trust-item { display: flex; align-items: center; gap: 6px; }

/* SECTION */
section { padding: 60px 0; border-top: 1px solid rgba(249, 115, 22, 0.15); }
.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
h2 .accent { color: var(--orange); }
h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

p { color: #cbd5e1; margin-bottom: 14px; }

/* PRICING TABLE */
.pricing-table {
  background: rgba(26, 43, 66, 0.5);
  border: 1px solid rgba(96, 165, 250, 0.2);
  margin-top: 24px;
  overflow: hidden;
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(96, 165, 250, 0.1);
  align-items: center;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-service { color: #e2e8f0; font-weight: 600; }
.pricing-service small { color: #94a3b8; font-size: 13px; font-weight: 400; display: block; margin-top: 2px; }
.pricing-amount {
  color: var(--orange);
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
}

/* INCLUDED LIST */
.included-list {
  list-style: none;
  margin-top: 16px;
}
.included-list li {
  padding: 8px 0;
  color: #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.included-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
}

/* TWO COLUMN */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* NOLA-specific box */
.nola-box {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(96, 165, 250, 0.05));
  border-left: 4px solid var(--orange);
  padding: 24px;
  margin-top: 20px;
}
.nola-box h3 { color: var(--orange); margin-bottom: 8px; }

/* GUARANTEE MINI */
.guarantee-mini {
  background: var(--navy-light);
  border: 2px solid var(--orange);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 500px) {
  .guarantee-mini { flex-direction: column; text-align: center; }
}
.guarantee-seal-mini {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 900;
  flex-shrink: 0;
}
.guarantee-seal-mini .big { font-size: 20px; line-height: 1; }
.guarantee-seal-mini .sub { font-size: 9px; letter-spacing: 0.1em; margin-top: 2px; }

/* FAQ */
details {
  background: rgba(26, 43, 66, 0.5);
  border: 1px solid rgba(96, 165, 250, 0.2);
  margin-bottom: 10px;
}
details summary {
  padding: 16px 20px;
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; color: var(--orange); font-size: 24px; font-weight: 300; }
details[open] summary::after { content: '−'; }
details p { padding: 0 20px 16px; color: #cbd5e1; margin: 0; }

/* RELATED SERVICES */
.related-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.related-card {
  background: rgba(26, 43, 66, 0.5);
  border: 1px solid rgba(96, 165, 250, 0.2);
  padding: 20px;
  text-decoration: none;
  color: #e2e8f0;
  transition: all 0.2s;
  text-align: center;
}
.related-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.related-card .icon { font-size: 24px; margin-bottom: 8px; display: block; }
.related-card .name { font-weight: 800; color: var(--white); font-size: 14px; }

/* NEIGHBORHOODS INLINE */
.neighborhoods-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.neighborhood-tag {
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: #cbd5e1;
  padding: 6px 12px;
  font-size: 12px;
}

/* FINAL CTA */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 70px 20px;
  text-align: center;
}
.final-cta h2 { margin-bottom: 18px; }

/* FOOTER */
footer {
  background: #050d1c;
  padding: 40px 0 80px;
  text-align: center;
  border-top: 1px solid rgba(249, 115, 22, 0.2);
}
footer p { color: #64748b; font-size: 13px; margin-bottom: 8px; }
footer a { color: var(--orange); text-decoration: none; }

/* MOBILE BOTTOM CTA */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--orange);
  color: var(--navy);
  padding: 14px;
  text-align: center;
  font-weight: 900;
  font-size: 16px;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  display: none;
}
.mobile-cta a { color: var(--navy); text-decoration: none; display: block; }
@media (max-width: 768px) { .mobile-cta { display: block; } }

/* ============================================ */
/* PATCH: Make the 8 new service pages match    */
/* the styling of the original 7 service pages  */
/* ============================================ */

/* Section wrappers used by new pages */
.pricing-section,
.includes-section,
.faq-section,
.areas-section,
.related-section {
  padding: 60px 0;
  border-top: 1px solid rgba(249, 115, 22, 0.15);
}

/* Lead paragraph under H2s */
.lead {
  font-size: 17px;
  color: #cbd5e1;
  max-width: 720px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Pricing table for new pages — match the .pricing-table look */
.price-table {
  background: rgba(26, 43, 66, 0.5);
  border: 1px solid rgba(96, 165, 250, 0.2);
  margin: 24px 0;
  overflow: hidden;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(96, 165, 250, 0.1);
  gap: 16px;
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: rgba(15, 30, 53, 0.4); }
.price-info { flex: 1; }
.price-info strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}
.price-info span {
  color: #94a3b8;
  font-size: 13px;
}
.price-amount {
  color: var(--orange);
  font-weight: 800;
  font-size: 17px;
  white-space: nowrap;
  text-align: right;
  min-width: 100px;
}

/* "What's included" bulleted list */
.includes-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px 0;
}
.includes-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.5;
}
.includes-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
  font-size: 16px;
}

/* H3 inside content sections */
.includes-section h3 {
  color: var(--orange);
  font-size: 22px;
  font-weight: 800;
  margin-top: 32px;
  margin-bottom: 12px;
}
.includes-section h3 + p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
  max-width: 760px;
}

/* Guarantee mini section */
.guarantee-mini {
  padding: 50px 0;
  border-top: 1px solid rgba(249, 115, 22, 0.15);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}
.guarantee-inline {
  display: flex;
  gap: 28px;
  align-items: center;
  background: var(--navy-light);
  border: 2px solid var(--orange);
  padding: 28px 32px;
  border-radius: 4px;
}
.guarantee-seal-small {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.3);
}
.guarantee-seal-small .seal-big {
  font-size: 26px;
  line-height: 1;
}
.guarantee-seal-small .seal-sub {
  font-size: 9px;
  letter-spacing: 0.1em;
  margin-top: 3px;
}
.guarantee-inline h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.guarantee-inline p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 640px) {
  .guarantee-inline { flex-direction: column; text-align: center; padding: 24px 20px; }
}

/* FAQ section styling */
.faqs {
  margin-top: 24px;
  max-width: 800px;
}
.faqs details {
  background: rgba(26, 43, 66, 0.5);
  border: 1px solid rgba(96, 165, 250, 0.2);
  margin-bottom: 8px;
}
.faqs summary {
  padding: 16px 20px;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after {
  content: '+';
  color: var(--orange);
  font-size: 22px;
  font-weight: 300;
  margin-left: 12px;
}
.faqs details[open] summary::after { content: '−'; }
.faqs p {
  padding: 0 20px 18px;
  color: #cbd5e1;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* Neighborhoods (.hood) tags */
.neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.hood {
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: #cbd5e1;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 3px;
}

/* Related services grid */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.related-card {
  background: rgba(26, 43, 66, 0.5);
  border: 1px solid rgba(96, 165, 250, 0.2);
  padding: 22px 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}
.related-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.related-emoji {
  font-size: 30px;
  margin-bottom: 8px;
}
.related-name {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

/* Breadcrumb nav for new pages */
.breadcrumb-nav {
  background: rgba(15, 30, 53, 0.5);
  padding: 14px 0;
  border-bottom: 1px solid rgba(96, 165, 250, 0.1);
  font-size: 13px;
}
.breadcrumb-nav .container { color: #94a3b8; }
.breadcrumb-nav a { color: var(--blue); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--orange); }

/* Make sure h2 uses orange accent (already in styles.css for some, but enforce here) */
.pricing-section h2,
.includes-section h2,
.faq-section h2,
.areas-section h2,
.related-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Membership page plan cards already use inline styles, but ensure their CTAs work */
