/* =============================================================================
   SNAP BOOTH PHOTOS — site.css v2
   Consolidated stylesheet for root pages AND Cities/ pages.
   Root pages:   href="updated-css/site.css"
   Cities pages: href="../updated-css/site.css"
   CDN deps loaded via @import: Bootstrap 5.3.2, Font Awesome 6.5.0, Poppins
   ============================================================================= */

@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────────────────────── */
:root {
  /* Brand colors */
  --sbp-primary:      #919fa8;   /* steel blue-grey — nav, footer, CTA backgrounds */
  --sbp-primary-dk:   #7d8d96;
  --sbp-primary-dkr:  #6a7a82;
  --sbp-primary-lt:   #b0bec5;
  /* Dark navy — dark section backgrounds, headings, submit buttons */
  --sbp-dark:         #242E39;
  --sbp-dark-dk:      #1a2129;
  --sbp-dark-dkr:     #141b23;
  --sbp-secondary:    #5c6e7a;
  --sbp-accent:       #d0b27c;   /* warm gold — use on dark or white only, never on --sbp-primary */
  --sbp-text:         #3d4d5a;
  --sbp-text-muted:   #6b7a86;
  --sbp-text-light:   rgba(255, 255, 255, 0.9);
  --sbp-border-light: rgba(255, 255, 255, 0.15);
  --sbp-radius:       4px;
  --sbp-radius-lg:    8px;
  --sbp-ease:         0.3s ease;
  --sbp-ease-fast:    0.2s ease;
}

/* ── Base Reset ────────────────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

html { background: transparent; scroll-behavior: smooth; }

body {
  background: #fff;
  color: var(--sbp-text);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

body.loading-overlay-showing { overflow: hidden; }

a { color: inherit; text-decoration: none; }
a:hover { opacity: .85; }

img { max-width: 100%; height: auto; vertical-align: middle; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 0;
}

/* ── Porto Loading Overlay ─────────────────────────────────────────────────── */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}

.loading-overlay.sbp-fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bounce-loader {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bounce-loader > div {
  width: 14px;
  height: 14px;
  background: var(--sbp-primary);
  border-radius: 50%;
  animation: sbpBounce 1.4s ease-in-out infinite both;
}

.bounce-loader .bounce1 { animation-delay: -0.32s; }
.bounce-loader .bounce2 { animation-delay: -0.16s; }
.bounce-loader .bounce3 { animation-delay: 0s; }

@keyframes sbpBounce {
  0%, 80%, 100% { transform: scale(0); opacity: .4; }
  40%           { transform: scale(1); opacity: 1; }
}

/* ── Header ────────────────────────────────────────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%;
}

.header-full-width { width: 100%; }

.header-body {
  background: var(--sbp-primary);
  transition: box-shadow var(--sbp-ease);
}

/* Top bar */
.header-top-dark {
  background: #d0b27c;
  border-bottom: 1px solid var(--sbp-border-light);
  font-size: .8rem;
  color: var(--sbp-text-light);
  overflow: hidden;
  max-height: 60px;
  transition: max-height var(--sbp-ease), opacity var(--sbp-ease);
}

.header-top-dark > .container,
.header-top-dark .header-top-body {
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-column { display: flex; align-items: center; }
.header-top-left   { flex: 1; }
.header-top-right  { margin-left: auto; }

.header-top-dark a         { color: var(--sbp-text-light); }
.header-top-dark a:hover   { color: #fff; opacity: 1; }
.text-color-light          { color: rgba(255, 255, 255, 0.9) !important; }

/* Main header row */
.header-container { display: flex; width: 100%; max-width: 90vw!important; }
.header-column    { display: flex; align-items: center; }

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  transition: padding var(--sbp-ease);
  width: 100%;
}

.header-logo img {
  height: 50px;
  width: auto;
  transition: height var(--sbp-ease);
}

/* Shrink on scroll */
#header.header-shrink .header-top-dark {
  max-height: 0;
  opacity: 0;
  border-bottom: none;
}
#header.header-shrink .header-row        { padding: 6px 0; }
#header.header-shrink .header-logo img   { height: 36px; }
#header.header-shrink .header-body       { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35); }

/* ── Navigation ────────────────────────────────────────────────────────────── */
.header-nav { display: flex; align-items: center; gap: 10px; }

/*
  Handles BOTH nav patterns:
  - City pages:  <nav class="collapse header-nav-main-collapse">
  - Main pages:  <nav class="collapse"> inside .header-nav-main
*/
.header-nav-main-collapse,
.header-nav-main nav {
  display: flex;
  align-items: center;
}

/* Desktop — always show, override Bootstrap collapse hidden state */
@media (min-width: 992px) {
  .header-nav-main-collapse,
  .header-nav-main nav,
  .header-nav-main-collapse.collapse:not(.show),
  .header-nav-main nav.collapse:not(.show) {
    display: flex !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
  }
}

/* Nav list */
.header-nav-main .nav {
  display: flex;
  flex-direction: row;
  gap: 2px;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Works for both .nav-item (city pages) and bare <li> (main pages) */
.header-nav-main .nav-item,
.header-nav-main .nav > li { position: relative; }

.header-nav-main .nav-link {
  display: block;
  color: var(--sbp-text-light);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .25px;
  padding: 8px 14px;
  border-radius: var(--sbp-radius);
  transition: background var(--sbp-ease-fast), color var(--sbp-ease-fast);
  white-space: nowrap;
}

.header-nav-main .nav-link:hover,
.header-nav-main .nav-link.active {
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  opacity: 1;
}

/* "Request Quote" CTA button — always last nav item across all root pages */
.header-nav-main .nav > li:last-child > .nav-link,
.header-nav-main .nav > li:last-child > .nav-link.active {
  background: var(--sbp-accent) !important;
  color: var(--sbp-dark) !important;
  font-weight: 600;
  margin-left: 4px;
}
.header-nav-main .nav > li:last-child > .nav-link:hover {
  background: #c4a06c !important;
  color: var(--sbp-dark) !important;
  opacity: 1;
}

/* Desktop dropdown (hover) */
.header-nav-main .dropdown:hover > .dropdown-menu,
.header-nav-main .nav > li:hover > ul {
  display: block;
}

.header-nav-main .dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: .2em;
  content: '';
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-left: .3em solid transparent;
  border-bottom: 0;
}

.header-nav-main .dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 1000;
  min-width: 200px;
  padding: 8px 0;
  background: var(--sbp-dark);
  border: 1px solid var(--sbp-border-light);
  border-radius: var(--sbp-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: none;
  list-style: none;
}

.header-nav-main .dropdown-menu.show { display: block; }

.header-nav-main .dropdown-item {
  display: block;
  width: 100%;
  padding: 7px 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: .85rem;
  background: none;
  border: none;
  text-align: left;
  white-space: nowrap;
  transition: background var(--sbp-ease-fast), color var(--sbp-ease-fast);
}

.header-nav-main .dropdown-item:hover,
.header-nav-main .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  opacity: 1;
}

.header-nav-main .dropdown-item.active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Social icons */
.header-social-icons {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0 0 0 8px;
}

.header-social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: .85rem;
  border-radius: 50%;
  transition: all var(--sbp-ease-fast);
}

.header-social-icons li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

/* Hamburger button */
.header-btn-collapse-nav {
  display: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--sbp-radius);
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--sbp-ease-fast);
  line-height: 1;
}

.header-btn-collapse-nav:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Mobile nav */
@media (max-width: 991px) {
  .header-btn-collapse-nav {
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1; /* stays above the full-screen overlay */
  }

  /* Logo stays visible above the overlay */
  .header-logo { position: relative; z-index: 1; }

  /* Base state — layout used when shown */
  .header-nav-main-collapse,
  .header-nav-main nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  /* Hidden by Bootstrap collapse */
  .header-nav-main-collapse.collapse:not(.show),
  .header-nav-main nav.collapse:not(.show) {
    display: none !important;
  }

  /* TRANSITIONING — intercept Bootstrap's collapsing phase so it never renders inline.
     height/overflow/transition !important beat Bootstrap's inline style + .collapsing rules. */
  .header-nav-main-collapse.collapsing,
  .header-nav-main nav.collapsing {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    overflow-y: auto !important;       /* override Bootstrap's overflow: hidden */
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: var(--sbp-dark) !important;
    padding: 90px 0 40px !important;
    border-top: none !important;
    opacity: 0;
    transition: opacity 0.25s ease !important;  /* replace Bootstrap's height transition */
    pointer-events: none;
  }

  /* OPEN: full-screen overlay, fades in from the collapsing opacity:0 state */
  .header-nav-main-collapse.show,
  .header-nav-main nav.collapse.show {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: var(--sbp-dark) !important;
    padding: 10rem 0 40px !important;
    overflow-y: auto;
    border-top: none !important;
    opacity: 1;
    transition: opacity 0.25s ease;
  }

  .header-nav-main .nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .header-nav-main .nav-item,
  .header-nav-main .nav > li { width: 100%; }

  .header-nav-main .nav-link {
    border-radius: 0;
    padding: 14px 28px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    letter-spacing: .2px;
  }

  .header-nav-main .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    background: rgba(255, 255, 255, .04);
    border: none;
    border-radius: 0;
    padding: 4px 0;
    min-width: 0;
    display: none;
  }

  .header-nav-main .dropdown-menu.show { display: block; }

  .header-nav-main .dropdown-item {
    padding: 10px 44px;
    font-size: .9rem;
  }
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
#footer .footer-top,
.footer-top-dark {
  background: var(--sbp-primary);
  color: var(--sbp-text-light);
  padding: 55px 0 40px;
}

#footer .footer-top h4,
#footer .footer-top h5,
.footer-top-dark h4,
.footer-top-dark h5 {
  color: var(--sbp-text-light);
  margin-bottom: 18px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(36, 46, 57, 0.18);
}

#footer .footer-top a,
.footer-top-dark a {
  color: var(--sbp-text-light);
  transition: color var(--sbp-ease-fast);
}

#footer .footer-top a:hover,
.footer-top-dark a:hover { color: #000; opacity: 1; }

#footer .footer-top ul,
.footer-top-dark ul { list-style: none; padding: 0; margin: 0 0 15px 0; }

#footer .footer-top ul li,
.footer-top-dark ul li {
  margin-bottom: 6px;
  padding-left: 10px;
  position: relative;
}

#footer .footer-top ul li::before,
.footer-top-dark ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--sbp-text-light);
  font-weight: 700;
}

#footer .footer-top p,
.footer-top-dark p { color: var(--sbp-text-light); font-size: .9rem; margin: 0; }

#footer .footer-top .small,
.footer-top-dark .small { font-size: .8rem; line-height: 1.9; }

#footer .footer-copyright,
.footer-copyright {
  background: var(--sbp-dark);
  color: rgba(255,255,255,0.8);
  padding: 18px 0;
  text-align: center;
}

#footer .footer-copyright p,
.footer-copyright p { margin: 0; font-size: .82rem; color: rgba(255,255,255,0.7); }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
/* Porto-style site button */
.pp-btn {
  display: inline-block;
  background: #fff;
  color: var(--sbp-dark) !important;
  padding: 13px 30px;
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--sbp-radius);
  border: none;
  cursor: pointer;
  letter-spacing: .3px;
  transition: opacity var(--sbp-ease-fast);
}

.pp-btn:hover { opacity: .85; }

.pp-btn-dark {
  background: var(--sbp-dark);
  color: #fff !important;
}

.pp-btn-dark:hover { background: var(--sbp-dark-dk); opacity: 1; }

/* Original site gold button */
.pp-button {
  display: inline-block;
  background: var(--sbp-accent);
  color: var(--sbp-dark) !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--sbp-ease-fast), color var(--sbp-ease-fast);
}

.pp-button:hover { background: #c4a06c; color: var(--sbp-dark) !important; opacity: 1; }

.pp-button-cta { background: #fff; color: #0a0a0a; }
.pp-button-cta:hover { background: rgb(196, 195, 195); color: #0a0a0a; opacity: 1; }
.pp-button-img { height: 15px; padding-right: 1vw; }
.pp-btn img { height: 15px; padding-right: 8px; vertical-align: middle; }

/* Bootstrap btn-primary → site colors */
.btn-primary { background-color: var(--sbp-dark); border-color: var(--sbp-dark); }
.btn-primary:hover,
.btn-primary:focus { background-color: var(--sbp-dark-dk); border-color: var(--sbp-dark-dk); }

.btn-modern { letter-spacing: .5px; text-transform: uppercase; font-size: .85rem; }

/* ── Main Pages — CTA Bar ──────────────────────────────────────────────────── */
.apply-cta-bar {
  background: var(--sbp-dark);
  color: #fff;
  padding: 40px 0;
}

.apply-cta-bar h4,
h4.cta-tag {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0;
}

.cta-btn-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.apply-cta-bar a.apply-cta {
  display: inline-block;
  background: #fff;
  color: var(--sbp-dark);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 3px;
  transition: background var(--sbp-ease-fast);
}

.apply-cta-bar a.apply-cta:hover { background: #ddd; opacity: 1; }

h2.cta-phone {
  display: inline-block;
  background: #fff;
  padding: .4em 1em;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sbp-dark);
  border-radius: 99px;
  margin: 0;
}

h2.cta-phone:hover { background: #ddd; }
h2.cta-phone a { color: var(--sbp-dark); }

.apply-cta-bar .cta-phone a { color: var(--sbp-dark); }
.apply-cta-bar .cta-phone a:hover { opacity: .85; }

@media (max-width: 768px) {
  .cta-btn-wrapper { flex-direction: column; align-items: flex-start; }
  h2.cta-phone { font-size: 1.2rem; }
}

/* ── Index Page — Hero (section--intro with Swiper photo strip) ─────────────── */
.section {
  padding: 6rem 0;
  overflow-x: hidden;
}

.section--intro {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section--article { padding: 4rem 2vw 1rem 2vw; }

.overlay { position: relative; }

.overlay--intro {
  background-color: var(--sbp-primary);
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 350px;
  overflow: hidden;
}

.main-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sl-main-container {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 480px;
  display: flex;
  align-items: center;
}

.sl-header-wrapper {
  background: rgba(10, 18, 28, 0.78);
  backdrop-filter: blur(2px);
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 1px;
  padding: 36px 32px;
  margin-left: 0;
  border-radius: 0 var(--sbp-radius-lg) var(--sbp-radius-lg) 0;
}

.sl-header-wrapper h3,
.sl-header-wrapper h6 {
  color: #fff;
  margin-bottom: 10px;
}

.sl-header-wrapper h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; }
.sl-header-wrapper h6 { font-size: .82rem; color: var(--sbp-accent); text-transform: uppercase; letter-spacing: 1.5px; }
.sl-header-wrapper p  { color: rgba(255,255,255,.85); font-size: .92rem; line-height: 1.65; margin-bottom: 20px; }

/* Hero headline */
h1.title, .title--landing {
  font-size: calc(1.2rem + 2vw);
  color: #fff !important;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* ── Index Page — Article/Excerpt Sections ──────────────────────────────────── */
.section p {
  line-height: 1.8;
  font-size: 1rem;
  color: rgba(48, 69, 92, 0.85);
}

@media (min-width: 768px) {
  .section p { font-size: 1.05rem; }
}

.title--article {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.title--article::after {
  content: '';
  display: block;
  width: 50rem;
  height: 1px;
  background: var(--sbp-dark);
  margin: 2rem auto 0;
}

.excerpt {
  display: grid;
  row-gap: 1.5rem;
  grid-template-columns: 1.5rem 1fr 1.5rem;
  grid-template-areas: 'image image image' '. text .';
  align-items: center;
  margin-bottom: 2rem;
}

.excerpt--reverse {
  grid-template-areas: '. image .' '. text .';
  justify-items: center;
}

@media (min-width: 768px) {
  .excerpt {
    grid-template-columns: 3rem 1fr calc(2rem + 5%) 1fr 3rem;
    grid-template-areas: 'image image . text .';
    margin-bottom: 6rem;
  }
  .excerpt--reverse {
    justify-items: stretch;
    grid-template-areas: '. text . image image';
  }
  .section p { line-height: 2.5rem; font-size: 22px; }
}

.excerpt__image-wrapper {
  grid-area: image;
  overflow: hidden;
  display: flex;
  max-height: 80vh;
  border-radius: 100%;
  justify-self: center;
}

.excerpt__text-wrapper {
  grid-area: text;
  max-width: 40rem;
  justify-self: center;
}

.excerpt__text-wrapper a { font-weight: 800; }

@media (min-width: 768px) {
  .excerpt__image-wrapper    { justify-self: flex-end; }
  .excerpt--reverse .excerpt__image-wrapper { justify-self: flex-start; }
  .excerpt__text-wrapper     { justify-self: flex-start; }
  .excerpt--reverse .excerpt__text-wrapper  { justify-self: flex-end; }
}

.wrapper { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }

/* ── Index Page — Video Showcase ───────────────────────────────────────────── */
.showcase {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}

.video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.showcase .content { position: relative; z-index: 2; }
.heading-title { text-align: center; color: #fff; }

/* ── Page Header (FAQs, Testimonials, Rental Guide, Request Quote) ──────────── */
.page-header {
  position: relative;
  padding: 100px 0;
  /* background-color = fallback; background-image comes from inline style */
  background-color: var(--sbp-primary);
  background-size: cover;
  background-position: center;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.page-header .container    { position: relative; z-index: 1; }
.page-header-background    { background-size: cover; background-position: center; }
.page-header-background-sm { padding: 70px 0; }

.page-header h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.page-header p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin: 0; }

.font-weight-normal { font-weight: 400; }
.text-10 { font-size: 2.5rem !important; }
.opacity-7 { opacity: .7; }

/* ── FAQs Page — Checkbox Accordion ───────────────────────────────────────── */
.faq-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 20px;
}

.left-faq,
.right-faq {
  display: flex;
  flex-direction: column;
  width: 48%;
}

@media (max-width: 768px) {
  .faq-wrapper { flex-direction: column; align-items: center; }
  .left-faq, .right-faq { width: 100%; }
}

#faqqs {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}

#faqqs li {
  position: relative;
  padding: 0 0 4px 0;
  padding-top: 18px;
  border-top: 1px dotted #dce7eb;
  animation: flipdown 0.5s ease both;
}

#faqqs li:nth-of-type(1) { animation-delay: 0.5s; }
#faqqs li:nth-of-type(2) { animation-delay: 0.75s; }
#faqqs li:nth-of-type(3) { animation-delay: 1s; }
#faqqs li:last-of-type   { padding-bottom: 0; }

#faqqs li h3 {
  font-size: 1rem;
  color: var(--sbp-dark);
  margin: 0 0 4px;
  padding-right: 20px;
}

#faqqs li p {
  color: rgba(48, 69, 92, 0.8);
  font-size: .95rem;
  line-height: 1.7;
  margin: 8px 0;
  max-height: 800px;
  opacity: 1;
  overflow: hidden;
  transition: max-height .2s ease, opacity .2s ease, margin .2s ease;
}

#faqqs li a { color: var(--sbp-dark); text-decoration: underline; }

#faqqs li i {
  position: absolute;
  right: 0;
  top: 18px;
}

#faqqs li i::before,
#faqqs li i::after {
  content: '';
  position: absolute;
  background: #002A44;
  width: 3px;
  height: 9px;
  transition: transform .2s ease;
}

#faqqs li i::before { transform: translate(-2px, 0) rotate(45deg); }
#faqqs li i::after  { transform: translate(2px, 0)  rotate(-45deg); }

#faqqs li input[type="checkbox"] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  top: 0;
  left: 0;
}

#faqqs li input[type="checkbox"]:checked ~ p,
#faqqs li input[type="checkbox"]:checked ~ img,
#faqqs li input[type="checkbox"]:checked ~ div {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

#faqqs li input[type="checkbox"]:checked ~ i::before {
  transform: translate(2px, 0) rotate(45deg);
}

#faqqs li input[type="checkbox"]:checked ~ i::after {
  transform: translate(-2px, 0) rotate(-45deg);
}

.faq-page-section { padding-bottom: 0 !important; }
.bg-color-grey    { background: #f4f4f4; }

.setupImg { width: 65%; height: 250px; padding-left: 20px; border-radius: 30%; object-fit: cover; }
.faqDiv   { display: flex; flex-direction: row; align-items: center; width: 80%; margin: auto; }

/* FAQs contact layout */
.form-wrapper    { width: 70%; }
@media (max-width: 768px) {
  .form-wrapper  { width: 100%; }
}

/* ── City Pages — Hero ─────────────────────────────────────────────────────── */
.city-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--sbp-primary);
}

.city-hero .vc {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.city-hero .vc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.city-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-hero .content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

.city-hero h1 {
  color: #fff;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: .5px;
}

/* ── City Pages — Why Section ──────────────────────────────────────────────── */
.why-sec { padding: 3rem 10rem 10rem 10rem; }

.why-sec h2 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  margin-bottom: 20px;
  color: var(--sbp-dark);
  font-weight: 600;
}

.why-sec p {
  color: var(--sbp-text-muted);
  font-size: .97rem;
  line-height: 1.75;
}

.why-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--sbp-radius-lg);
  object-fit: cover;
  height: 340px;
  display: block;
}

/* ── City Pages — Photo Strip Section ─────────────────────────────────────── */
.strip-sec {
  background: #f7f7f7;
  padding: 60px 0;
}

.strip-sec h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  color: var(--sbp-dark);
  margin-bottom: 12px;
  text-align: center;
}

.strip-text {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
  color: var(--sbp-text-muted);
  font-size: .95rem;
}

/* City page strip slides: fixed-height images */
.strip-sec .swiper-slide img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ── City Pages — FAQ Section ──────────────────────────────────────────────── */
.faq-sec { padding: 70px 0; }

.faq-sec h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  color: var(--sbp-dark);
  margin-bottom: 10px;
}

.faq-intro {
  color: var(--sbp-text-muted);
  margin-bottom: 30px;
  font-size: .95rem;
}

.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

@media (max-width: 767px) { .faq-cols { grid-template-columns: 1fr; } }

.faq-item { border-bottom: 1px solid #eee; padding: 14px 0; }

.faq-q {
  font-weight: 600;
  color: var(--sbp-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-size: .93rem;
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: #999;
  transition: transform var(--sbp-ease-fast);
  flex-shrink: 0;
  margin-left: 10px;
  line-height: 1;
}

.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-a {
  color: var(--sbp-text-muted);
  padding-top: 8px;
  font-size: .92rem;
  line-height: 1.65;
}

/* ── City Pages — Contact Section — see improved rules at end of file ──────── */

/* ── City Pages — CTA Bar ──────────────────────────────────────────────────── */
.cta-bar {
  background: var(--sbp-dark);
  padding: 55px 20px;
  text-align: center;
}

.cta-bar h2,
.cta-bar h4 {
  color: #fff;
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.4;
}

.cta-bar .pp-btn { margin: 0 8px 10px; }

/* ── Swiper — Index Hero Photo Strip ──────────────────────────────────────── */
.sl-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sl-card-wrapper {
  position: relative;
  height: 100%;
  width: auto;
  aspect-ratio: 1 / 3;
  overflow: hidden;
  background: transparent;
}

.sl-bkg-img,
.sl-gradient {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
}

.sl-bkg-img    { background-size: contain; background-position: center; background-repeat: no-repeat; }
.sl-gradient   { background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/614007/gradient.png'); z-index: 1; }
.slide-cover   { position: absolute; inset: 0; z-index: 2; }

/* S3 photo strip background images */
.sl-img-1  { background-image: url('https://s3.us-east-2.amazonaws.com/snapboothphotos.com/Images/PhotoStrips/3rdThursday.jpg'); }
.sl-img-2  { background-image: url('https://s3.us-east-2.amazonaws.com/snapboothphotos.com/Images/PhotoStrips/DZ+Bid+Day.png'); }
.sl-img-3  { background-image: url('https://s3.us-east-2.amazonaws.com/snapboothphotos.com/Images/PhotoStrips/4-pics-3rdThursday.png'); }
.sl-img-7  { background-image: url('https://s3.us-east-2.amazonaws.com/snapboothphotos.com/Images/PhotoStrips/Sola.jpg'); }
.sl-img-8  { background-image: url('https://s3.us-east-2.amazonaws.com/snapboothphotos.com/Images/PhotoStrips/Spring+Fling.jpg'); }
.sl-img-9  { background-image: url('https://s3.us-east-2.amazonaws.com/snapboothphotos.com/Images/PhotoStrips/SmithPhotoStrip.png'); }
.sl-img-10 { background-image: url('https://s3.us-east-2.amazonaws.com/snapboothphotos.com/Images/PhotoStrips/Oktoberfest.jpg'); }
.sl-img-11 { background-image: url('https://s3.us-east-2.amazonaws.com/snapboothphotos.com/Images/PhotoStrips/Fordie.jpg'); }
.sl-img-12 { background-image: url('https://s3.us-east-2.amazonaws.com/snapboothphotos.com/Images/PhotoStrips/OX+Formal.jpg'); }
.sl-img-13 { background-image: url('https://s3.us-east-2.amazonaws.com/snapboothphotos.com/Images/PhotoStrips/PhotoStrip.png'); }
.sl-img-14 { background-image: url('https://s3.us-east-2.amazonaws.com/snapboothphotos.com/Images/PhotoStrips/Heartfelt+Ball.png'); }
.sl-img-15 { background-image: url('https://s3.us-east-2.amazonaws.com/snapboothphotos.com/Images/PhotoStrips/SCOR+Gale.jpg'); }

/* ── Swiper General ────────────────────────────────────────────────────────── */
.swiper-container { overflow: hidden; }
.swiper-wrapper   { transition-timing-function: linear !important; }

/* ── Animations ────────────────────────────────────────────────────────────── */
@keyframes flipdown {
  0%   { opacity: 0; transform-origin: top center; transform: rotateX(-90deg); }
  5%   { opacity: 1; }
  80%  { transform: rotateX(8deg); }
  92%  { transform: rotateX(-3deg); }
  100% { transform-origin: top center; transform: rotateX(0deg); }
}

/* ── Utility Helpers ───────────────────────────────────────────────────────── */
.text-primary-sbp  { color: var(--sbp-primary) !important; }
.bg-primary-sbp    { background-color: var(--sbp-primary) !important; }
.logo-img          { height: 46px !important; width: auto; }
.section--intro *,
.section--intro a  { color: #fff; }
.large-paragraph   { font-size: 1.3em; }
.x-large-paragraph { font-size: 1.4em; line-height: 1.3; }
.img-responsive    { max-width: 100%; height: auto; display: block; }

/* ── Swiper Height Fixes ───────────────────────────────────────────────────── */
/* Height driven by section (55vh); slide width auto-computes from aspect-ratio */
.sl-wrapper .swiper-container,
.sl-wrapper .swiper-wrapper,
.sl-wrapper .swiper-slide { height: 100%; }
.sl-wrapper .swiper-slide { width: auto; }

/* ── Old City Pages — Why Section Layout ──────────────────────────────────── */
/* (.why-sec already defined above; these are the interior flex classes) */
.why-ex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}
.why-ex .why-img,
.why-img { flex: 0 0 45%; max-width: 45%; }
.why-ex .why-img img,
.why-img img { width: 100%; border-radius: var(--sbp-radius); }
.why-ex .why-txt,
.why-txt { flex: 1; min-width: 280px; }
@media (max-width: 768px) {
  .why-ex .why-img,
  .why-img { flex: 0 0 100%; max-width: 80%; }
}

/* ── Old City Pages — Strip Section (dark sidebar + carousel) ─────────────── */
.strip-inner {
  display: flex;
  overflow: hidden;
  min-height: 450px;
}
.strip-inner .strip-text {
  flex: 0 0 300px;
  padding: 30px 25px;
  background: var(--sbp-dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.strip-inner .strip-text h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.strip-inner .strip-text h6 {
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.strip-inner .strip-text p {
  color: rgba(255, 255, 255, .85);
  font-size: .92rem;
  line-height: 1.65;
}
.strip-car {
  flex: 1;
  height: 450px;
  overflow: hidden;
}
.strip-car .swiper-container,
.strip-car .swiper-wrapper,
.strip-car .swiper-slide { height: 100%; }
.strip-car .sl-card-wrapper { height: 100%; }
@media (max-width: 768px) {
  .strip-inner       { flex-direction: column; min-height: unset; }
  .strip-inner .strip-text { flex: none; width: 100%; }
  .strip-car         { height: 350px; }
}

/* ── Old City Pages — Contact Section — see improved rules at end of file ──── */

/* ── Old City Pages — CTA Buttons ─────────────────────────────────────────── */
.cta-w { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.cta-a {
  display: inline-block;
  background: #fff;
  color: var(--sbp-dark) !important;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--sbp-radius);
  margin-right: 8px;
  margin-bottom: 8px;
  transition: background var(--sbp-ease-fast);
}
.cta-a:hover { background: #ddd; opacity: 1; }
.cta-ph      { font-size: 1.1rem; margin: 0; }
.cta-ph a    { color: #fff; }
.cta-ph a:hover { opacity: .85; }

/* ── Testimonials Page ─────────────────────────────────────────────────────── */
#testimonial-page-wrapper {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
}
.testimonial-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .testimonial-wrapper { flex-direction: column; align-items: center; }
}
.snip1533 {
  box-shadow: 0 0 5px rgba(0, 0, 0, .15);
  color: #555;
  display: inline-block;
  font-size: 1rem;
  margin: 8px 0;
  max-width: 310px;
  min-width: 250px;
  position: relative;
  text-align: center;
  width: 100%;
  border-top: 5px solid #0A3D4D;
  background: #fff;
  border-radius: var(--sbp-radius);
}
.snip1533 *,
.snip1533 *::before,
.snip1533 *::after { box-sizing: border-box; }
.snip1533 figcaption { padding: 25px 20px 20px; }
.snip1533 figcaption::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f10e';
  font-size: 36px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--sbp-dark);
}
.snip1533 blockquote {
  border-left: none;
  margin: 0 0 15px;
  padding: 0;
  font-size: .93rem;
  font-style: italic;
  color: #777;
  line-height: 1.7;
}
.snip1533 .profile {
  border-radius: 50%;
  overflow: hidden;
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  display: block;
  object-fit: cover;
}
.snip1533 h4    { font-size: 1rem; font-weight: 600; color: var(--sbp-dark); margin-bottom: 4px; }
.snip1533 .stars { color: var(--sbp-accent); font-size: 1rem; }

/* ── Wedding / Rental Guide Pages ─────────────────────────────────────────── */
.wedding-title { text-align: center; }
.wedding-title--article {
  position: relative;
  margin-bottom: 2rem;
}
.wedding-title--article::after {
  content: '';
  display: block;
  width: 70vw;
  height: 1px;
  background: #002A44;
  margin: 2rem auto 0;
}

.steps-container { padding: 0 2vw; margin: 0 auto; }
#rental-steps {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
  list-style: none;
}
#rental-steps li { width: 20%; }

.process-model {
  list-style: none;
  padding: 0;
  position: relative;
  max-width: 600px;
  margin: 20px auto 26px;
  z-index: 0;
}
.process-model li {
  display: inline-block;
  width: 18%;
  text-align: center;
  position: relative;
}
.process-model li::after {
  background: #e5e5e5;
  content: '';
  display: block;
  height: 4px;
  margin: 0 auto;
  position: absolute;
  top: 35%;
  width: 100%;
  z-index: -1;
}
.process-model li.visited::after { background: #8D9FA9; }
.process-model li a { padding: 0; color: #606060; }
.process-model li.active,
.process-model li.visited { color: #8D9FA9; }
.process-model li.active a,
.process-model li.visited a { color: #8D9FA9 !important; }
.process-model li.active p,
.process-model li.visited p { font-weight: 800; }
.process-model li i {
  display: block;
  height: 7vw;
  width: 7vw;
  text-align: center;
  margin: 0 auto;
  background: #f5f6f7;
  border: 2px solid #e5e5e5;
  line-height: 7vw;
  font-size: 30px;
  border-radius: 50%;
}
.process-model li.active i,
.process-model li.visited i { background: #fff; border-color: #8D9FA9; }
.process-model li p { font-size: 14px; margin-top: 11px; }
@media (max-width: 756px) {
  .process-model li i { height: 9vw; width: 9vw; line-height: 9vw; font-size: 28px; }
}
@media (max-width: 560px) {
  .process-model li i  { height: 11vw; width: 11vw; line-height: 11vw; }
  #rental-steps li p   { font-size: 12px; }
  .process-model li::after { top: 25%; }
}

.design-process-section { margin: 0 0 2vh; }
.design-process-content {
  border: 1px solid #e9e9e9;
  position: relative;
  padding: 16px 24% 30px 30px;
}
.design-process-content img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  max-height: 100%;
}
.design-process-content h3 { margin-bottom: 16px; }
.design-process-content p  { line-height: 26px; margin-bottom: 12px; }

/* Wedding hero */
#hero1 {
  background: url('../Images/Promo/wedding-hero-tent.jpg');
  background-size: cover;
  background-position: center 35%;
}

/* Wedding vertical gallery (scrolling photo columns) */
.gallery {
  display: flex;
  gap: 1vw;
  max-width: 99vw;
  min-width: 350px;
  height: 50vh;
  overflow: hidden;
}
.gallery_line {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  height: fit-content;
  animation: gallerySlide 80s linear infinite;
}
.gallery_line:nth-child(2) { animation-direction: reverse; }
.gallery_line img { flex: 1 1 auto; width: 100%; object-fit: cover; }

@keyframes gallerySlide {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* .text-background is only used in wedding gallery overlay context */
.text-background {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(10, 18, 28, 0.78);
  backdrop-filter: blur(2px);
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 1px;
  position: relative;
  opacity: 1;
  z-index: 3;
  padding: 36px 32px;
  border-left: 4px solid var(--sbp-accent);
}
.title--wedding-strips { color: #fff; text-align: center; }

/* ── Wedding Page — Steps Header + Tab Navigation ──────────────────────────── */
.steps-header-section {
  padding: 70px 0 40px;
  text-align: center;
  background: #fff;
}
.steps-header-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--sbp-dark);
  margin-bottom: 14px;
}
.steps-header-section p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--sbp-text-muted);
  font-size: .97rem;
  line-height: 1.75;
}

.process-tabs.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: none;
  padding: 0 0 4px;
  margin-bottom: 20px;
  justify-content: center;
}
.process-tabs .nav-link {
  background: #f0f3f7;
  color: var(--sbp-dark);
  padding: 10px 20px;
  border-radius: var(--sbp-radius);
  border: none;
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  transition: all var(--sbp-ease-fast);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
}
.process-tabs .nav-link i { color: var(--sbp-dark); font-size: .9rem; }
.process-tabs .nav-link.active,
.process-tabs .nav-link:hover {
  background: var(--sbp-dark);
  color: #fff;
}
.process-tabs .nav-link.active i,
.process-tabs .nav-link:hover i { color: var(--sbp-accent); }
.design-process-section { padding: 0 0 60px; background: #fff; }
.design-process-content {
  background: #f7f8fa;
  border: 1px solid #e5e8ec;
  border-radius: var(--sbp-radius-lg);
  padding: 36px 40px;
}
.design-process-content h3 {
  color: var(--sbp-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.design-process-content p {
  color: var(--sbp-text-muted);
  font-size: .97rem;
  line-height: 1.75;
  margin: 0;
}

/* ── Wedding Page — Hero Banner (#hero1) ────────────────────────────────────── */
.hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48);
  z-index: 0;
}
.hero .inner { position: relative; z-index: 1; text-align: center; padding: 60px 20px; max-width: 800px; }
.hero .inner .copy h2 {
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}

/* ── Wedding Page — Contact Form ──────────────────────────────────────────── */
.wedding-contact-section { padding: 70px 0; background: #f7f8fa; }
.wedding-contact-section h2 { color: var(--sbp-dark); margin-bottom: 8px; }

/* ── Request A Quote Page ──────────────────────────────────────────────────── */
.quote-section {
  padding: 70px 0 80px;
  background: #f7f8fa;
}

.steps-panel {
  background: var(--sbp-dark);
  color: #fff;
  padding: 40px 32px;
  border-radius: var(--sbp-radius-lg);
  height: 100%;
}
.steps-panel h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.step-item:last-child { margin-bottom: 0; }

.step-icon {
  flex: 0 0 50px;
  height: 50px;
  width: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--sbp-accent);
  flex-shrink: 0;
}

.step-item h2 {
  font-size: .97rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.step-item p {
  font-size: .87rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin: 0;
}

.quote-form-panel {
  background: #fff;
  padding: 44px 44px;
  border-radius: var(--sbp-radius-lg);
  box-shadow: 0 6px 32px rgba(0,0,0,.08);
}

.quote-form-panel h2 {
  font-size: 1.6rem;
  color: var(--sbp-dark);
  margin-bottom: 6px;
}

.quote-form-panel > p {
  color: var(--sbp-text-muted);
  font-size: .94rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.quote-form-panel .form-label {
  font-weight: 600;
  font-size: .85rem;
  color: var(--sbp-dark);
  margin-bottom: 5px;
  display: block;
}

.quote-form-panel .form-control {
  border: 1px solid #dde2e8;
  border-radius: var(--sbp-radius);
  padding: 11px 14px;
  font-size: .93rem;
  font-family: 'Poppins', sans-serif;
  background: #fafbfc;
  transition: border-color var(--sbp-ease-fast), box-shadow var(--sbp-ease-fast);
  width: 100%;
}

.quote-form-panel .form-control:focus {
  border-color: var(--sbp-dark);
  box-shadow: 0 0 0 3px rgba(36,46,57,.09);
  outline: none;
  background: #fff;
}

.btn-submit-quote {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--sbp-dark);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  border: none;
  border-radius: var(--sbp-radius);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background var(--sbp-ease-fast), transform 0.1s ease;
  margin-top: 4px;
}
.btn-submit-quote:hover { background: var(--sbp-dark-dk); }
.btn-submit-quote:active { transform: scale(0.99); }

.frm_required { color: #c53030; margin-left: 2px; }

@media (max-width: 767px) {
  .quote-form-panel { padding: 28px 22px; }
  .steps-panel { padding: 32px 24px; margin-bottom: 24px; }
}

/* ── Rental Guide — How to Book Steps ──────────────────────────────────────── */
.rental-steps {
  display: flex;
  flex-direction: column;
}

.rental-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}
.rental-step:last-child { border-bottom: none; }

.rental-step-number {
  flex: 0 0 46px;
  height: 46px;
  width: 46px;
  background: var(--sbp-dark);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(36,46,57,.25);
}

.rental-step-content h3 {
  font-size: 1rem;
  color: var(--sbp-dark);
  margin-bottom: 6px;
}

.rental-step-content p {
  font-size: .92rem;
  color: var(--sbp-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Rental Guide — 4x6 Print Size Section ──────────────────────────────────── */
.print-size-section { padding: 70px 0; }

.fourbysix-gallery {
  position: relative;
}

#fourbysix-swiper {
  border-radius: var(--sbp-radius);
  overflow: hidden;
  padding-bottom: 40px;
}

.fourbysix-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--sbp-radius);
  box-shadow: 0 4px 20px rgba(0,0,0,.14);
}

#fourbysix-swiper .swiper-button-prev,
#fourbysix-swiper .swiper-button-next {
  color: var(--sbp-accent);
}

#fourbysix-swiper .swiper-button-prev::after,
#fourbysix-swiper .swiper-button-next::after {
  font-size: 1.4rem;
  font-weight: 700;
}

#fourbysix-swiper .swiper-pagination-bullet-active {
  background: var(--sbp-accent);
}

/* ── Improved Contact Forms — All Pages ─────────────────────────────────────── */

/* Old city page contact form (.fc / .cg / .dc) — visual polish */
.cg {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.fc {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--sbp-radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.fc h3 { color: var(--sbp-dark); margin-bottom: 20px; font-size: 1.2rem; }
.dc {
  flex: 0 0 260px;
  min-width: 200px;
  padding: 36px 28px;
  background: var(--sbp-dark);
  border-radius: var(--sbp-radius-lg);
  color: rgba(255,255,255,.85);
  overflow-wrap: break-word;
  word-break: break-word;
}
.dc .ct { color: var(--sbp-accent); }
.dc .ctxt { color: rgba(255,255,255,.75); }
.dc .ctxt a { color: rgba(255,255,255,.9); text-decoration: underline; }
.dc .ctxt a:hover { color: #fff; opacity: 1; }

.fc input,
.fc select,
.fc textarea {
  width: 100%;
  border: 1px solid #dde2e8;
  padding: 11px 14px;
  margin-bottom: 14px;
  border-radius: var(--sbp-radius);
  font-size: .93rem;
  font-family: 'Poppins', sans-serif;
  background: #fafbfc;
  transition: border-color var(--sbp-ease-fast), box-shadow var(--sbp-ease-fast);
}
.fc input:focus,
.fc select:focus,
.fc textarea:focus {
  border-color: var(--sbp-dark);
  outline: none;
  box-shadow: 0 0 0 3px rgba(36,46,57,.08);
  background: #fff;
}
.fc textarea { height: 120px; resize: vertical; }
.fc label {
  font-weight: 600;
  font-size: .85rem;
  display: block;
  margin-bottom: 5px;
  color: var(--sbp-dark);
}

#submit-btn {
  background: var(--sbp-dark);
  color: #fff;
  border: none;
  width: 100%;
  padding: 15px;
  font-weight: 700;
  border-radius: var(--sbp-radius);
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: background var(--sbp-ease-fast);
  letter-spacing: .3px;
}
#submit-btn:hover { background: var(--sbp-dark-dk); }

/* New city page contact form improvements */
.contact-sec {
  background: #f7f8fa;
  padding: 80px 0;
}
.contact-sec h2 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--sbp-dark);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-sec .form-control {
  border: 1px solid #dde2e8;
  border-radius: var(--sbp-radius);
  padding: 12px 14px;
  width: 100%;
  margin-bottom: 16px;
  font-size: .93rem;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  transition: border-color var(--sbp-ease-fast), box-shadow var(--sbp-ease-fast);
}
.contact-sec .form-control:focus {
  border-color: var(--sbp-dark);
  box-shadow: 0 0 0 3px rgba(36,46,57,.08);
  outline: none;
}
.contact-sec textarea.form-control { height: 130px; resize: vertical; }
.contact-sec .pp-btn.pp-btn-dark {
  padding: 15px 36px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .3px;
  border-radius: var(--sbp-radius);
  border: none;
  cursor: pointer;
  transition: background var(--sbp-ease-fast);
  margin-top: 6px;
}
.contact-sec .pp-btn.pp-btn-dark:hover { background: var(--sbp-dark-dk); }

.contact-details {
  padding: 36px 28px;
  background: var(--sbp-dark);
  border-radius: var(--sbp-radius-lg);
  height: 100%;
}
.contact-details h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.contact-details p {
  font-size: .92rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 18px;
  line-height: 1.65;
}
.contact-details p strong { color: #fff; display: block; margin-bottom: 2px; }
.contact-details a { color: rgba(255,255,255,.85); }
.contact-details a:hover { color: #fff; text-decoration: underline; opacity: 1; }

/* FAQs page contact form styles */
.input-field {
  display: block;
  width: 100%;
  border: 1px solid #dde2e8;
  border-radius: var(--sbp-radius);
  padding: 11px 14px;
  margin-bottom: 16px;
  font-size: .93rem;
  font-family: 'Poppins', sans-serif;
  background: #fafbfc;
  transition: border-color var(--sbp-ease-fast), box-shadow var(--sbp-ease-fast);
}
.input-field:focus {
  border-color: var(--sbp-dark);
  box-shadow: 0 0 0 3px rgba(36,46,57,.08);
  outline: none;
  background: #fff;
}

/* Contact form wrapper shared between pages */
.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-wrapper .form-wrapper {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--sbp-radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.contact-wrapper .form-wrapper h2 {
  color: var(--sbp-dark);
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.contact-wrapper .contact-details {
  flex: 0 0 220px;
  min-width: 180px;
}
.contact-wrapper .form-wrapper label {
  font-weight: 600;
  font-size: .85rem;
  color: var(--sbp-dark);
  display: block;
  margin-bottom: 5px;
}
/* contact-title and contact-text inside old-style contact wrappers */
.contact-title { font-size: .95rem; color: var(--sbp-accent); margin-bottom: 4px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.contact-text  { font-size: .88rem; margin-bottom: 18px; color: rgba(255,255,255,.75); line-height: 1.5; }
.contact-text a { color: rgba(255,255,255,.9); text-decoration: underline; }

.privacy {
  margin-top: 20px;
  padding: 16px;
  background: rgba(36,46,57,.06);
  border-radius: var(--sbp-radius);
}
.privacy h5 { font-size: .82rem; color: var(--sbp-text-muted); font-weight: 400; margin: 0; }

.status-msg { font-size: .88rem; margin-top: 10px; min-height: 1.2em; color: #2d7a4f; }

/* ── How-to-Book section (Rental Guide) ──────────────────────────────────────── */
.how-to-book { padding: 70px 0; }
.how-to-book h2 { color: var(--sbp-dark); margin-bottom: 4px; font-size: 1.6rem; }
.how-to-book .lead { font-size: 1rem; color: var(--sbp-text-muted); line-height: 1.7; }

/* ── City Page — New nav (for new-arch pages with Cities dropdown) ───────────── */
/* The new-arch nav dropdown has .header-nav-links wrapping .header-nav-main */
.header-nav-links .header-nav-main { display: flex; align-items: center; }

/* ── Global Swiper Slide Image (new city pages with img slides) ─────────────── */
.strip-sec .swiper-container,
.strip-sec .swiper-wrapper,
.strip-sec .swiper-slide { height: auto; }

.strip-sec .swiper-slide img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--sbp-radius);
}

/* ── Mobile Responsive Polish ───────────────────────────────────────────────── */
@media (max-width: 767px) {

  /* ─ Contact form stacking ─ */
  .cg { flex-direction: column; }
  .dc { flex: none; width: 100%; }
  .contact-wrapper { flex-direction: column; }
  .contact-wrapper .contact-details { flex: none; width: 100%; }

  /* ─ Hero / photo strip slider — stack text ABOVE carousel on mobile ─
     On desktop the text panel is position:absolute over the swiper.
     On mobile we switch to a natural flex column so both are visible. */
  .overlay--intro { height: auto; min-height: unset; }
  .main-wrapper   { display: flex; flex-direction: column; height: auto; }
  .sl-main-container {
    position: static;
    transform: none;
    max-width: 100%;
    width: 100%;
    padding-left: 0;
  }
  .sl-wrapper { height: 260px; flex-shrink: 0; }
  .sl-header-wrapper {
    margin: 0;
    padding: 24px 20px;
    border-left: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* ─ City hero ─ */
  .city-hero           { min-height: 50vh; }
  .city-hero h1        { font-size: clamp(1.2rem, 5vw, 1.7rem); margin-bottom: 18px; }
  .city-hero .content  { padding: 30px 16px; }

  /* ─ Section spacing ─ */
  .why-sec       { padding: 40px 0; }
  .faq-sec       { padding: 40px 0; }
  .contact-sec   { padding: 50px 0; }
  .cta-bar       { padding: 40px 16px; }
  .section--article { padding: 2rem 0 0.5rem; }
  .page-header   { padding: 60px 0; }
  .print-size-section,
  .how-to-book,
  .steps-header-section,
  .wedding-contact-section { padding: 50px 0; }

  /* ─ Video showcase ─ */
  .showcase { height: 60vh; }

  /* ─ Home CTA bar centering ─ */
  .apply-cta-bar   { text-align: center; }
  .cta-btn-wrapper { align-items: center; }

  /* ─ City page CTA bar centering ─ */
  .cta-w { justify-content: center; }

  /* ─ Footer ─ */
  #footer .footer-top,
  .footer-top-dark { padding: 40px 0 28px; }

  /* ─ Old checkbox-FAQ answer with image — stack on mobile ─ */
  .faqDiv   { flex-direction: column; width: 100%; }
  .setupImg { width: 75%; max-width: 220px; padding-left: 0; margin-top: 14px; height: auto; }

  /* ─ Why section image — full width, natural height ─ */
  .why-img { height: auto; max-height: 280px; }
}

/* ── Home hero — photo strips as background, text centred over them ─────── */
/* CSS Grid stacking: both children share grid-area 1/1, slider behind, text on top.
   Avoids position:absolute + height:% chains that can fail on iOS Safari. */
@media (max-width: 767px) {
  .home-hero.overlay--intro { height: 72vh; min-height: 380px; }

  .home-hero .main-wrapper {
    display: grid !important;          /* override general mobile flex */
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    height: 100%;
  }

  /* Both children in the same grid cell — slider behind, text in front */
  .home-hero .sl-wrapper,
  .home-hero .sl-main-container {
    grid-area: 1 / 1;
    width: 100%;
  }

  .home-hero .sl-wrapper {
    align-self: stretch;
    height: auto !important;           /* grid controls sizing */
    flex-shrink: unset;
  }

  .home-hero .sl-main-container {
    position: static !important;       /* no absolute needed — grid handles overlay */
    transform: none !important;
    top: auto; left: auto;
    align-self: center;
    justify-self: center;
    width: 88%;
    max-width: 400px;
    padding: 0 !important;
    text-align: center;
    z-index: 3;
  }

  .home-hero .sl-header-wrapper {
    margin: 0;
    padding: 32px 24px;
    border-left: none;
    border-radius: var(--sbp-radius-lg);
    background: rgba(10, 18, 28, 0.88);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* ── Testimonials Page Redesign ──────────────────────────────────────────── */
.trust-stats-bar {
  background: var(--sbp-dark);
  padding: 30px 0;
  border-bottom: 3px solid var(--sbp-accent);
}

.trust-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-stat {
  text-align: center;
  padding: 6px 48px;
  flex: 0 0 auto;
}

.trust-stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.trust-stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--sbp-accent);
  line-height: 1.15;
  margin-bottom: 3px;
}

.trust-stat-stars {
  display: block;
  font-size: 1.35rem;
  color: var(--sbp-accent);
  margin-bottom: 3px;
  letter-spacing: 3px;
}

.trust-stat-label {
  display: block;
  font-size: .75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
}

@media (max-width: 576px) {
  .trust-stat { padding: 10px 20px; }
  .trust-stat-divider { display: none; }
  .trust-stats-grid { gap: 8px; }
  .trust-stat-num { font-size: 1.5rem; }
}

.hero-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: .95rem;
}

.hero-stars {
  color: var(--sbp-accent);
  letter-spacing: 2px;
  font-size: 1rem;
}

.reviews-section {
  padding: 80px 0;
  background: #f8f9fb;
}

.section-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  color: var(--sbp-accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  display: block;
}

.section-subtext {
  color: var(--sbp-text-muted);
  font-size: .97rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 991px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--sbp-accent);
  transition: transform var(--sbp-ease), box-shadow var(--sbp-ease);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

.review-stars {
  color: var(--sbp-accent);
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.review-text {
  font-size: .96rem;
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin: 0 0 24px;
  flex: 1;
  border-left: none;
  padding: 0;
  position: relative;
  padding-left: 26px;
}

.review-text::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--sbp-accent);
  line-height: 1;
  position: absolute;
  left: -4px;
  top: -10px;
  font-style: normal;
  opacity: 0.6;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #eee;
  padding-top: 18px;
  margin-top: auto;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sbp-dark);
  color: var(--sbp-accent);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .5px;
}

.review-author strong {
  display: block;
  font-size: .93rem;
  color: var(--sbp-dark);
  font-weight: 600;
}

.review-author span {
  font-size: .8rem;
  color: var(--sbp-text-muted);
}

.social-proof-section {
  background: #fff;
  padding: 52px 0;
  text-align: center;
  border-top: 1px solid #e8eaed;
}

.social-proof-section > .container > p {
  color: var(--sbp-text-muted);
  font-size: .97rem;
  margin-bottom: 22px;
  line-height: 1.6;
}

.social-proof-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-proof-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #1877f2;
  color: #fff !important;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .92rem;
  transition: opacity var(--sbp-ease-fast);
  text-decoration: none;
}

.social-proof-link:hover { opacity: .85 !important; }

.google-link {
  background: #fff;
  color: var(--sbp-dark) !important;
  border: 1px solid #e0e0e0;
}
