/* ----------------------------------------------------
VHSMoments Custom Styles
Loaded AFTER styles.css
---------------------------------------------------- */


/* --------------------------------
General Improvements
-------------------------------- */

.font-orange {
  color: #f4623a;
}

.section-darkband {
  background: #343a40;
  color: #ffffff;
  padding: 60px 0;
}


/* --------------------------------
Service Detail Cards
-------------------------------- */

.detail-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
}

.detail-card h3 {
  color: #212529;
}

.detail-card p {
  color: #495057;
}


/* --------------------------------
Process Section Fix
-------------------------------- */

.section-darkband .detail-card {
  background: #ffffff;
  color: #212529;
}

.section-darkband .detail-card h3,
.section-darkband .detail-card p {
  color: #212529;
}


/* --------------------------------
Icons in Cards
-------------------------------- */

.icon-wrap {
  margin-bottom: 18px;
}

.icon-wrap i {
  color: #f4623a;
}


/* --------------------------------
Service Cards (homepage)
-------------------------------- */

.service-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 10px;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}


/* --------------------------------
Review Highlight
-------------------------------- */

.review-highlight {
  background: #f8f9fa;
  padding: 40px 0;
}

.review-stars {
  color: #ffc107;
  font-size: 1.4rem;
}


/* --------------------------------
Trust Badge Box
-------------------------------- */

.trust-badge-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 34px 28px;
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
  max-width: 420px;
  margin: 0 auto;
}

.trust-badge-top {
  display: inline-block;
  background: rgba(244, 98, 58, 0.12);
  color: #f4623a;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.trust-stars {
  color: #ffc107;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.trust-number {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  color: #212529;
  margin-bottom: 8px;
}

.trust-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 16px;
}

.trust-copy {
  color: #495057;
  margin-bottom: 24px;
  line-height: 1.6;
}


/* --------------------------------
Hero Improvements
-------------------------------- */

.hero-location {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}


/* --------------------------------
Buttons
-------------------------------- */

.btn-third {
  background: #343a40;
  color: #ffffff;
  border: none;
}

.btn-third:hover {
  background: #23272b;
}

.start-order-btn {
  margin-top: 25px;
}


/* --------------------------------
Footer Fix
-------------------------------- */

footer {
  background: #f8f9fa;
}

footer .small {
  color: #6c757d;
}


/* --------------------------------
Chat Bubble Fix
-------------------------------- */

#vhsm-chat-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #f4623a;
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}


/* --------------------------------
Premium Navigation
-------------------------------- */

#mainNav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

#mainNav .nav-shell {
  align-items: center;
}

#mainNav .navbar-brand {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

#mainNav .navbar-nav .nav-item {
  margin-left: 0.2rem;
  margin-right: 0.2rem;
}

#mainNav .nav-link {
  color: #212529 !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 0.95rem !important;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

#mainNav .nav-link:hover,
#mainNav .nav-link:focus {
  color: #f4623a !important;
  background: rgba(244, 98, 58, 0.08);
  text-decoration: none;
}

#mainNav .nav-cta-item {
  margin-left: 0.6rem;
}

#mainNav .nav-cta-btn {
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 10px 22px rgba(244, 98, 58, 0.22);
}

#mainNav .navbar-toggler {
  border: none;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  background: rgba(244, 98, 58, 0.08);
}

#mainNav .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}


/* --------------------------------
Mobile Improvements
-------------------------------- */

@media (max-width: 991.98px) {
  #mainNav .navbar-collapse {
    background: #ffffff;
    margin-top: 12px;
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  }

  #mainNav .navbar-nav {
    align-items: stretch !important;
  }

  #mainNav .nav-item {
    margin: 0;
  }

  #mainNav .nav-link {
    padding: 0.9rem 1rem !important;
    border-radius: 12px;
  }

  #mainNav .nav-cta-item {
    margin-top: 0.7rem;
    margin-left: 0;
  }

  #mainNav .nav-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .detail-card {
    margin-bottom: 20px;
  }

  .navbar-nav {
    text-align: center;
  }

  .trust-badge-box {
    padding: 28px 22px;
  }

  .trust-number {
    font-size: 2.5rem;
  }

  .hero-location {
    font-size: 0.8rem;
    padding: 7px 14px;
  }
}

/* --------------------------------
Tighten hero → first section spacing
-------------------------------- */

#services-overview.page-section {
  padding-top: 50px;
}

@media (min-width: 992px) {
  #services-overview.page-section {
    padding-top: 40px;
  }
}

.masthead {
  padding-top: 9rem;
  padding-bottom: 7rem;
}

/* --------------------------------
Service Card Links
-------------------------------- */

.service-card-link {
  text-decoration: none;
  color: inherit;
}

.service-card-link:hover {
  text-decoration: none;
}

/* Slightly nicer service cards */

.service-card {
  height: 100%;
  padding: 30px;
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.service-card h3 {
  font-weight: 700;
}

.service-card p {
  color: #6c757d;
}

/* --------------------------------
Urgency Section
-------------------------------- */

.urgency-section {
  background: linear-gradient(180deg, #fff7f3 0%, #ffffff 100%);
  padding-top: 70px;
  padding-bottom: 70px;
}

.urgency-box {
  background: #ffffff;
  border: 1px solid rgba(244, 98, 58, 0.14);
  border-radius: 18px;
  padding: 42px 32px;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.urgency-kicker {
  display: inline-block;
  background: rgba(244, 98, 58, 0.12);
  color: #f4623a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.urgency-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.urgency-point {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff7f3;
  border: 1px solid rgba(244, 98, 58, 0.14);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 600;
  color: #495057;
}

.urgency-point i {
  color: #f4623a;
}

@media (max-width: 768px) {
  .urgency-box {
    padding: 30px 20px;
  }

  .urgency-points {
    flex-direction: column;
    align-items: stretch;
  }

  .urgency-point {
    justify-content: center;
    border-radius: 14px;
  }
}

/* --------------------------------
Why Choose VHS Moments
-------------------------------- */

.why-section {
  background: #f8f9fa;
  padding-top: 70px;
  padding-bottom: 70px;
}

.why-card {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(0,0,0,.14);
}

.why-card h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  color: #6c757d;
  margin-bottom: 0;
}

/* --------------------------------
Real Customer Memory Stories
-------------------------------- */

.memory-stories-section {
  background: #ffffff;
  padding-top: 70px;
  padding-bottom: 70px;
}

.memory-story-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
  text-align: left;
}

.memory-story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0,0,0,.12);
}

.memory-story-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(244, 98, 58, 0.12);
  color: #f4623a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.memory-story-card h3 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #212529;
}

.memory-story-card p {
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .memory-story-card {
    text-align: center;
  }
}

/* --------------------------------
Formats Section
-------------------------------- */

.formats-section {
  background: #f8f9fa;
  padding-top: 70px;
  padding-bottom: 70px;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: auto;
}

.format-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  font-weight: 700;
  color: #495057;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}

.format-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.12);
}

/* --------------------------------
Final CTA Section
-------------------------------- */

.final-cta-section {
  background: linear-gradient(180deg, #f4623a 0%, #d84c26 100%);
  color: #ffffff;
  padding-top: 70px;
  padding-bottom: 70px;
}

.final-cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.final-cta-text {
  font-size: 1.1rem;
  max-width: 650px;
  margin: auto;
  margin-bottom: 30px;
  color: rgba(255,255,255,.9);
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.final-cta-buttons .btn-light {
  color: #f4623a;
  font-weight: 700;
}

.final-cta-buttons .btn-light:hover {
  background: #ffffff;
  color: #d84c26;
}

@media (max-width: 768px) {
  .final-cta-title {
    font-size: 1.7rem;
  }

  .final-cta-text {
    font-size: 1rem;
  }
}

/* --------------------------------
Pricing Section
-------------------------------- */

.pricing-section {
  background: #f8f9fa;
  padding-top: 70px;
  padding-bottom: 70px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0,0,0,.14);
}

.pricing-card h3 {
  font-weight: 700;
  margin-bottom: 14px;
  color: #212529;
}

.price-highlight {
  font-size: 2.3rem;
  font-weight: 800;
  color: #f4623a;
  margin-bottom: 6px;
}

.price-note {
  font-weight: 600;
  color: #495057;
  margin-bottom: 6px;
}

.price-sub {
  color: #6c757d;
  font-size: 0.95rem;
}

.pricing-reassurance {
  margin-top: 12px;
  margin-bottom: 35px;
  font-weight: 700;
  color: #495057;
  font-size: 0.95rem;
}

/* Highlight popular pricing */

.pricing-featured {
  border: 2px solid rgba(244,98,58,.35);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f4623a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* subtle divider above pricing cards */

.pricing-section .row {
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 35px;
}

.pricing-reassurance span {
  margin: 0 10px;
}

.pricing-reassurance span:not(:last-child)::after {
  content: "•";
  margin-left: 10px;
  color: #adb5bd;
}

.service-link{
text-decoration:none;
color:inherit;
display:block;
}

.local-seo-intro{
font-size:1.2rem;
max-width:850px;
margin:auto;
color:#6c757d;
}

.local-seo-intro{
display:none;
}

.recent-transfers-section{
  background:#fffdf8;
}

.trust-strip{
background:#fff;
padding:20px 0;
border-bottom:1px solid #eee;
}

.trust-items{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:40px;
font-weight:600;
color:#444;
}

.trust-items i{
color:#f4623a;
margin-right:6px;
}

.review-highlight-card{
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 4px 20px rgba(0,0,0,0.08);
}

.review-stars{
color:#f4623a;
font-size:24px;
margin-bottom:15px;
}

.review-quote{
font-size:18px;
font-style:italic;
color:#555;
margin-bottom:20px;
}

.review-author{
font-weight:600;
color:#777;
}

.reel-list p{
margin-bottom:10px;
font-size:16px;
}

.reel-list i{
color:#f4623a;
margin-right:8px;
}

/* Improve readability across service + blog pages */
.page-section p {
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

/* Global section spacing improvement */
.page-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Better spacing for section titles */
.page-section h2 {
  margin-bottom: 1.25rem;
}

/* Improve paragraph readability */
.page-section p {
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.review-pill {
  text-decoration: none;
}

.review-pill:hover {
  text-decoration: none;
  transform: translateY(-2px);
}