/* =====================================================================
   BEACON CAPITAL - REQUEST A QUOTE (page 1312, /request-a-quote/)
   Scoped entirely to body.bc-quote-v2.
   Does NOT modify Header 3945, Footer 3944 or the global floating dock.

   ELEMENTOR CONTAINER NOTE
   A container saved with content_width:"boxed" renders as
     .e-con-boxed > .e-con-inner > [children]
   while content_width:"full" renders as
     .e-con-full > [children]
   Section rails below are boxed, so their layout is applied to
   `> .e-con-inner`. Inner grids are full-width and take layout directly.

   Elementor 4.x strips _css_classes from CONTAINERS in this build, so all
   container hooks are _element_id (#bc-qq-*). Widget _css_classes do reach
   the DOM and are used for typography/atoms (.bcq-*).
   ===================================================================== */

:root{
  --bcq-obsidian:#070909;
  --bcq-carbon:#111414;
  --bcq-teal-dk:#012F31;
  --bcq-teal:#024548;
  --bcq-teal-lt:#025B5A;
  --bcq-gold:#D1AA6D;
  --bcq-gold-warm:#D9AE63;
  --bcq-ivory:#F3EFE7;
  --bcq-white:#FCFAF6;
  --bcq-rail:1280px;
  --bcq-gut:40px;
}

/* ---- HEADER -> HERO SEAM ------------------------------------------
   #content.site-content reserves space for the fixed Global Header, but
   bc-hf-scope's global values (96 / 88 / 84) overshoot the header's real
   rendered heights (96 / 82 / 80), leaving 6px (tablet) and 4px (mobile)
   of body white below the header. Aligned here to the measured heights.
   Leading `html` + repeated class beats the global !important rule without
   touching bc-hf-scope.php or the Header template. ------------------- */
html body.bc-quote-v2 #content.site-content.site-content{padding-top:96px!important}
@media(max-width:1024px){html body.bc-quote-v2 #content.site-content.site-content{padding-top:82px!important}}
@media(max-width:767px){html body.bc-quote-v2 #content.site-content.site-content{padding-top:80px!important}}
/* Angie renders a zero-height #angie-sidebar-container early in <body> with
   margin-top:3px, which collapses through <body> and pushes the page down
   while the fixed header stays at top:0. Zero it on this page only. */
html body.bc-quote-v2 #angie-sidebar-container{margin-top:0!important}

/* ---- PAGE FRAME --------------------------------------------------- */
html:has(body.bc-quote-v2){scroll-behavior:smooth}
@media(prefers-reduced-motion:reduce){html:has(body.bc-quote-v2){scroll-behavior:auto}}
body.bc-quote-v2{overflow-x:clip;background:var(--bcq-white)}
body.bc-quote-v2 .site-content>.ast-container{padding:0;margin:0;max-width:none;width:100%}
body.bc-quote-v2 .site-content>.ast-container>#primary,
body.bc-quote-v2 .site-content>.ast-container>.ast-primary-content{margin:0;padding:0;width:100%;max-width:none}
body.bc-quote-v2 .entry-content>.elementor{margin:0}
body.bc-quote-v2 img{max-width:100%;height:auto}
body.bc-quote-v2 .e-con,
body.bc-quote-v2 .e-con-inner{min-width:0}

/* Section rails: every boxed inner shares the same measure + gutter. */
body.bc-quote-v2 #bc-qq-hero-inner>.e-con-inner,
body.bc-quote-v2 #bc-qq-strip-grid>.e-con-inner,
body.bc-quote-v2 #bc-qq-main-grid>.e-con-inner,
body.bc-quote-v2 #bc-qq-scope-inner>.e-con-inner,
body.bc-quote-v2 #bc-qq-next-inner>.e-con-inner,
body.bc-quote-v2 #bc-qq-cta-inner>.e-con-inner{
  max-width:var(--bcq-rail);width:100%;margin-inline:auto;
}
body.bc-quote-v2 #bc-qq-hero-inner,
body.bc-quote-v2 #bc-qq-strip-grid,
body.bc-quote-v2 #bc-qq-main-grid,
body.bc-quote-v2 #bc-qq-scope-inner,
body.bc-quote-v2 #bc-qq-next-inner,
body.bc-quote-v2 #bc-qq-cta-inner{padding:0;--padding-top:0;--padding-bottom:0;--padding-left:0;--padding-right:0}

/* ---- SHARED ATOMS -------------------------------------------------- */
body.bc-quote-v2 .bcq-eyebrow .elementor-heading-title{
  font-family:'Poppins',sans-serif;font-weight:400;font-size:12px;
  letter-spacing:.34em;text-transform:uppercase;color:var(--bcq-gold);
  line-height:1.4;margin:0;
}
body.bc-quote-v2 .bcq-eyebrow--light .elementor-heading-title{color:var(--bcq-teal-lt)}

body.bc-quote-v2 .bcq-hero-title .elementor-heading-title,
body.bc-quote-v2 .bcq-sec-title .elementor-heading-title,
body.bc-quote-v2 .bcq-cta-title .elementor-heading-title,
body.bc-quote-v2 .bcq-panel-title .elementor-heading-title{
  font-family:'Cormorant Garamond',Georgia,serif;font-weight:500;
  color:var(--bcq-white);line-height:1.09;letter-spacing:.004em;margin:0;
}
body.bc-quote-v2 .bcq-hero-title .elementor-heading-title{font-size:clamp(34px,4.3vw,60px)}
body.bc-quote-v2 .bcq-sec-title .elementor-heading-title{font-size:clamp(29px,3.1vw,45px)}
body.bc-quote-v2 .bcq-cta-title .elementor-heading-title{font-size:clamp(28px,3.2vw,46px)}
body.bc-quote-v2 .bcq-panel-title .elementor-heading-title{font-size:clamp(25px,2.1vw,31px)}
body.bc-quote-v2 .bcq-sec-title--light .elementor-heading-title{color:var(--bcq-teal-dk)}
body.bc-quote-v2 .bcq-gold{color:var(--bcq-gold)}

/* Elementor draws the divider line with the LOGICAL property
   `border-block-start: var(--divider-border-width) ...`, and post CSS emits a
   (0,4,0) width rule. Drive the line through Elementor's own custom properties
   and win the width with a doubled class. No core/Header/Footer file touched. */
body.bc-quote-v2 .bcq-rule{
  width:auto;
  --divider-border-width:2px!important;
  --divider-border-style:solid!important;
  --divider-color:#D1AA6D!important;
}
body.bc-quote-v2 .bcq-rule.bcq-rule .elementor-divider{
  padding:0!important;display:flex!important;justify-content:flex-start!important;
}
body.bc-quote-v2 .bcq-rule.bcq-rule .elementor-divider-separator{
  width:58px!important;max-width:58px!important;flex:0 0 58px!important;
  border-block-start:2px solid var(--bcq-gold)!important;
  border-top:2px solid var(--bcq-gold)!important;
  margin:0!important;
}

body.bc-quote-v2 .bcq-hero-desc,
body.bc-quote-v2 .bcq-sec-desc,
body.bc-quote-v2 .bcq-panel-desc,
body.bc-quote-v2 .bcq-cta-desc{
  font-family:'Poppins',sans-serif;font-size:15.5px;line-height:1.78;
  color:#D8D3CA;max-width:580px;
}
body.bc-quote-v2 .bcq-sec-desc--light{color:#4A5B5B}
body.bc-quote-v2 .bcq-hero-desc p,
body.bc-quote-v2 .bcq-sec-desc p,
body.bc-quote-v2 .bcq-panel-desc p,
body.bc-quote-v2 .bcq-cta-desc p{margin:0}

/* Buttons */
body.bc-quote-v2 .bcq-btn .elementor-button{
  font-family:'Poppins',sans-serif;font-weight:400;font-size:12.5px;
  letter-spacing:.16em;text-transform:uppercase;
  display:inline-flex;align-items:center;justify-content:center;
  min-height:52px;padding:15px 32px;border-radius:2px;
  border:1px solid transparent;text-decoration:none;
  transition:background-color .25s ease,color .25s ease,border-color .25s ease;
}
body.bc-quote-v2 .bcq-btn--gold .elementor-button{
  background:var(--bcq-gold);border-color:var(--bcq-gold);color:var(--bcq-obsidian);
}
body.bc-quote-v2 .bcq-btn--gold .elementor-button:hover,
body.bc-quote-v2 .bcq-btn--gold .elementor-button:focus-visible{
  background:var(--bcq-gold-warm);border-color:var(--bcq-gold-warm);color:var(--bcq-obsidian);
}
body.bc-quote-v2 .bcq-btn--ghost .elementor-button{
  background:transparent;border-color:rgba(209,170,109,.55);color:var(--bcq-white);
}
body.bc-quote-v2 .bcq-btn--ghost .elementor-button:hover,
body.bc-quote-v2 .bcq-btn--ghost .elementor-button:focus-visible{
  background:rgba(209,170,109,.12);border-color:var(--bcq-gold);color:var(--bcq-gold);
}
body.bc-quote-v2 .bcq-btn .elementor-button:focus-visible{outline:2px solid var(--bcq-gold);outline-offset:3px}

/* =====================================================================
   01 HERO
   ===================================================================== */
body.bc-quote-v2 #bc-qq-hero{
  position:relative;padding:0;
  border-bottom:1px solid rgba(209,170,109,.20);
}
body.bc-quote-v2 #bc-qq-hero::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(102deg,rgba(7,9,9,.90) 0%,rgba(7,9,9,.78) 42%,rgba(1,47,49,.52) 72%,rgba(7,9,9,.44) 100%);
}
body.bc-quote-v2 #bc-qq-hero-inner{position:relative;z-index:2;padding:114px var(--bcq-gut) 108px;gap:0}
body.bc-quote-v2 #bc-qq-hero-inner>.e-con-inner{display:flex;flex-direction:column;align-items:flex-start;gap:0}
/* NOTE: max-width is set in px, not ch. `ch` on a heading WIDGET wrapper
   resolves against the wrapper's inherited 16px font, not the 60px title
   font on the inner .elementor-heading-title, which collapsed the measure
   to ~147px and broke the headline to one word per line. */
body.bc-quote-v2 #bc-qq-hero-title{margin-top:22px;max-width:720px}
body.bc-quote-v2 #bc-qq-hero-rule{margin:26px 0 0}
body.bc-quote-v2 #bc-qq-hero-desc{margin-top:24px;max-width:640px}
body.bc-quote-v2 #bc-qq-hero-cta{
  padding:0;width:auto;margin-top:38px;
  display:flex;flex-direction:row;flex-wrap:wrap;gap:14px;
}

/* =====================================================================
   02 BUYER TRUST STRIP
   ===================================================================== */
body.bc-quote-v2 #bc-qq-strip{padding:0;border-bottom:1px solid rgba(209,170,109,.16)}
body.bc-quote-v2 #bc-qq-strip-grid{padding:0 var(--bcq-gut)}
body.bc-quote-v2 #bc-qq-strip-grid>.e-con-inner{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:0;align-items:stretch;
}
body.bc-quote-v2 [id^="bc-qq-tc-"]:not([id*="-ico-"]):not([id*="-ic-"]):not([id*="-l-"]):not([id*="-b-"]){
  display:flex;flex-direction:column;align-items:flex-start;gap:0;
  padding:46px 34px 48px;width:100%;
  border-left:1px solid rgba(209,170,109,.20);
}
body.bc-quote-v2 #bc-qq-tc-1{border-left:0}
body.bc-quote-v2 [id^="bc-qq-tc-ico-"]{padding:0;width:auto}
body.bc-quote-v2 .bcq-tc-ic{width:auto}
body.bc-quote-v2 .bcq-tc-ic .elementor-icon{
  width:44px;height:44px;display:inline-flex;align-items:center;justify-content:center;
  border:1px solid rgba(209,170,109,.42);border-radius:2px;color:var(--bcq-gold);
}
body.bc-quote-v2 .bcq-tc-ic .elementor-icon svg{width:20px;height:20px;fill:var(--bcq-gold)}
body.bc-quote-v2 .bcq-tc-label .elementor-heading-title{
  font-family:'Poppins',sans-serif;font-weight:400;font-size:13px;
  letter-spacing:.15em;text-transform:uppercase;color:var(--bcq-white);
  line-height:1.45;margin:22px 0 0;
}
body.bc-quote-v2 .bcq-tc-body{
  font-family:'Poppins',sans-serif;font-size:13.5px;line-height:1.72;
  color:rgba(243,239,231,.74);margin-top:12px;
}
body.bc-quote-v2 .bcq-tc-body p{margin:0}

/* =====================================================================
   03 MAIN RFQ  (Ivory form card + dark expectation panel)
   ===================================================================== */
body.bc-quote-v2 #bc-qq-main{padding:0}
body.bc-quote-v2 #bc-qq-main-grid{padding:96px var(--bcq-gut) 100px}
body.bc-quote-v2 #bc-qq-main-grid>.e-con-inner{
  display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
  gap:0;align-items:stretch;
}

/* LEFT - form card */
body.bc-quote-v2 #bc-qq-form{
  background:var(--bcq-white);
  border:1px solid rgba(2,69,72,.14);border-right:0;
  padding:54px 48px 56px;gap:0;scroll-margin-top:120px;
}
body.bc-quote-v2 #bc-qq-form-title{margin-top:16px}
body.bc-quote-v2 #bc-qq-form-desc{margin-top:16px;max-width:520px}
body.bc-quote-v2 #bc-qq-form-embed{margin-top:32px;width:100%}

/* RIGHT - expectation panel */
body.bc-quote-v2 #bc-qq-panel{
  background:var(--bcq-teal-dk);
  border:1px solid rgba(209,170,109,.26);
  padding:54px 42px 42px;gap:0;
}
body.bc-quote-v2 #bc-qq-panel-title{margin-top:14px}
body.bc-quote-v2 #bc-qq-panel-desc{margin-top:16px;color:#CBD6D4;font-size:14.5px;max-width:440px}
body.bc-quote-v2 #bc-qq-panel-list{
  padding:0;gap:0;margin-top:26px;width:100%;
  border-top:1px solid rgba(209,170,109,.18);
}
body.bc-quote-v2 [id^="bc-qq-pi-"]:not([id*="-ico-"]):not([id*="-ic-"]):not([id*="-tx-"]):not([id*="-l-"]):not([id*="-b-"]){
  display:flex;flex-direction:row;align-items:flex-start;gap:14px;
  padding:18px 0;width:100%;
  border-bottom:1px solid rgba(209,170,109,.14);
}
body.bc-quote-v2 [id^="bc-qq-pi-ico-"]{padding:0;width:auto;flex:0 0 34px;margin-top:2px}
body.bc-quote-v2 [id^="bc-qq-pi-tx-"]{padding:0;gap:0;flex:1 1 auto;min-width:0}
body.bc-quote-v2 .bcq-pi-ic{width:auto}
body.bc-quote-v2 .bcq-pi-ic .elementor-icon{
  width:34px;height:34px;display:inline-flex;align-items:center;justify-content:center;
  border:1px solid rgba(209,170,109,.34);border-radius:50%;color:var(--bcq-gold);
}
body.bc-quote-v2 .bcq-pi-ic .elementor-icon svg{width:15px;height:15px;fill:var(--bcq-gold)}
body.bc-quote-v2 .bcq-pi-label .elementor-heading-title{
  font-family:'Poppins',sans-serif;font-weight:400;font-size:11px;
  letter-spacing:.2em;text-transform:uppercase;color:var(--bcq-gold);margin:0 0 6px;
}
body.bc-quote-v2 .bcq-pi-body{
  font-family:'Poppins',sans-serif;font-size:13.5px;line-height:1.68;color:#D6DDDB;
}
body.bc-quote-v2 .bcq-pi-body p{margin:0}

/* Panel figure - fills any residual height so both columns end level. */
body.bc-quote-v2 #bc-qq-panel-figure{
  padding:0;margin-top:auto;width:100%;
  border:1px solid rgba(209,170,109,.24);
  min-height:170px;overflow:hidden;
}
body.bc-quote-v2 .bcq-panel-img{width:100%;height:100%}
body.bc-quote-v2 .bcq-panel-img .elementor-widget-container,
body.bc-quote-v2 .bcq-panel-img figure,
body.bc-quote-v2 .bcq-panel-img .elementor-image{height:100%;margin:0}
body.bc-quote-v2 .bcq-panel-img img{
  display:block;width:100%;height:100%;min-height:170px;object-fit:cover;
  filter:grayscale(.12) contrast(1.03);
}

/* ---- FORMINATOR 1347 --------------------------------------------- */
body.bc-quote-v2 #bc-qq-form .forminator-ui.forminator-custom-form{margin:0}
body.bc-quote-v2 #bc-qq-form .forminator-row{margin-bottom:0;display:flex;flex-wrap:wrap;gap:18px 20px}
body.bc-quote-v2 #bc-qq-form .forminator-row+.forminator-row{margin-top:18px}
body.bc-quote-v2 #bc-qq-form .forminator-row.forminator-hidden{display:none;margin:0;gap:0}
body.bc-quote-v2 #bc-qq-form .forminator-col{padding:0;margin:0;min-width:0;flex:1 1 100%}
body.bc-quote-v2 #bc-qq-form .forminator-col-6{flex:1 1 calc(50% - 10px);max-width:calc(50% - 10px)}
body.bc-quote-v2 #bc-qq-form .forminator-col-12{flex:1 1 100%;max-width:100%}
body.bc-quote-v2 #bc-qq-form .forminator-field{margin:0}

body.bc-quote-v2 #bc-qq-form .forminator-label{
  display:block;font-family:'Poppins',sans-serif!important;font-weight:400!important;
  font-size:11px!important;letter-spacing:.18em!important;text-transform:uppercase;
  color:var(--bcq-teal)!important;margin:0 0 9px!important;line-height:1.4!important;
}
body.bc-quote-v2 #bc-qq-form .forminator-required{color:var(--bcq-gold)!important;margin-left:2px}

body.bc-quote-v2 #bc-qq-form .forminator-input,
body.bc-quote-v2 #bc-qq-form input[type=text],
body.bc-quote-v2 #bc-qq-form input[type=email],
body.bc-quote-v2 #bc-qq-form .forminator-textarea,
body.bc-quote-v2 #bc-qq-form .forminator-select2+.select2-container .select2-selection--single{
  box-sizing:border-box!important;width:100%!important;
  background:#FFFFFF!important;
  border:1px solid rgba(2,69,72,.22)!important;border-radius:2px!important;
  font-family:'Poppins',sans-serif!important;font-size:14.5px!important;
  color:var(--bcq-carbon)!important;
  box-shadow:none!important;
  transition:border-color .22s ease,box-shadow .22s ease;
}
body.bc-quote-v2 #bc-qq-form .forminator-input,
body.bc-quote-v2 #bc-qq-form input[type=text],
body.bc-quote-v2 #bc-qq-form input[type=email]{height:52px!important;padding:0 16px!important;line-height:52px!important}
body.bc-quote-v2 #bc-qq-form .forminator-textarea{
  min-height:158px!important;height:auto!important;padding:14px 16px!important;
  line-height:1.65!important;resize:vertical;
}
body.bc-quote-v2 #bc-qq-form ::placeholder{color:#9AA6A5!important;opacity:1}
body.bc-quote-v2 #bc-qq-form .forminator-input:focus,
body.bc-quote-v2 #bc-qq-form .forminator-textarea:focus,
body.bc-quote-v2 #bc-qq-form input:focus{
  border-color:var(--bcq-gold)!important;
  box-shadow:0 0 0 3px rgba(209,170,109,.18)!important;outline:none!important;
}

/* select2 dropdown -> same 52px control */
body.bc-quote-v2 #bc-qq-form .select2-container{width:100%!important}
body.bc-quote-v2 #bc-qq-form .select2-container .select2-selection--single{
  height:52px!important;display:flex!important;align-items:center;padding:0 16px!important;
}
body.bc-quote-v2 #bc-qq-form .select2-container .select2-selection__rendered{
  padding:0!important;line-height:1.4!important;color:var(--bcq-carbon)!important;
  font-family:'Poppins',sans-serif!important;font-size:14.5px!important;
}
body.bc-quote-v2 #bc-qq-form .select2-container .select2-selection__placeholder{color:#9AA6A5!important}
body.bc-quote-v2 #bc-qq-form .select2-container .select2-selection__arrow{height:50px!important;right:12px!important}
body.bc-quote-v2 #bc-qq-form .select2-container--open .select2-selection--single{
  border-color:var(--bcq-gold)!important;box-shadow:0 0 0 3px rgba(209,170,109,.18)!important;
}
/* Only style the VISIBLE select (no-JS / pre-init fallback). Once select2
   initialises it moves the real <select> to .select2-hidden-accessible,
   which is position:absolute + width:1px. Forcing width:100% on that hidden
   element makes it an absolutely-positioned, page-wide box that still counts
   toward scrollWidth - a known cause of horizontal overflow. Excluded here. */
body.bc-quote-v2 #bc-qq-form select:not(.select2-hidden-accessible){
  height:52px!important;padding:0 16px!important;background:#fff!important;
  border:1px solid rgba(2,69,72,.22)!important;border-radius:2px!important;
  font-family:'Poppins',sans-serif!important;font-size:14.5px!important;width:100%!important;
}
/* Measured in Chrome: `width:1px!important` alone does NOT win here - the
   hidden country <select> still resolved to 623px and pushed scrollWidth to
   1136px at a 753px viewport (383px of horizontal overflow). max-width caps
   the used width regardless of which width declaration wins, and the wrapper
   clip below is the belt-and-braces guard. The select2 dropdown panel is
   appended to <body>, not to this wrapper, so clipping here costs nothing. */
body.bc-quote-v2 #bc-qq-form select.select2-hidden-accessible{
  width:1px!important;max-width:1px!important;min-width:0!important;
  height:1px!important;max-height:1px!important;
  padding:0!important;border:0!important;margin:0!important;
  position:absolute!important;left:0!important;right:auto!important;
  overflow:hidden!important;clip:rect(0 0 0 0)!important;
  clip-path:inset(50%)!important;white-space:nowrap!important;
}
body.bc-quote-v2 #bc-qq-form-embed{overflow-x:clip}
/* select2 panel is appended to <body>, so it is scoped from the body class. */
body.bc-quote-v2 .select2-container--open .select2-dropdown{
  border:1px solid var(--bcq-gold)!important;border-radius:2px!important;
  background:#FFFFFF!important;box-shadow:0 14px 30px rgba(7,9,9,.16)!important;
}
body.bc-quote-v2 .select2-container--open .select2-search__field{
  border:1px solid rgba(2,69,72,.22)!important;border-radius:2px!important;
  font-family:'Poppins',sans-serif!important;font-size:14px!important;padding:9px 12px!important;
}
body.bc-quote-v2 .select2-container--open .select2-results__option{
  font-family:'Poppins',sans-serif!important;font-size:14px!important;
  color:var(--bcq-carbon)!important;padding:10px 14px!important;
}
body.bc-quote-v2 .select2-container--open .select2-results__option--highlighted{
  background:var(--bcq-teal)!important;color:#FFFFFF!important;
}
body.bc-quote-v2 .select2-container--open .select2-results__option[aria-selected="true"]{
  background:rgba(209,170,109,.16)!important;color:var(--bcq-teal-dk)!important;
}

/* validation */
body.bc-quote-v2 #bc-qq-form .forminator-error-message{
  font-family:'Poppins',sans-serif!important;font-size:12px!important;
  color:#9B2C2C!important;margin-top:7px!important;
}
body.bc-quote-v2 #bc-qq-form .forminator-has_error .forminator-input,
body.bc-quote-v2 #bc-qq-form .forminator-has_error .forminator-textarea,
body.bc-quote-v2 #bc-qq-form .forminator-has_error .select2-selection--single{border-color:#9B2C2C!important}
body.bc-quote-v2 #bc-qq-form .forminator-response-message{
  font-family:'Poppins',sans-serif!important;font-size:14px!important;line-height:1.7!important;
  border-radius:2px!important;margin:0 0 20px!important;padding:16px 18px!important;
}
body.bc-quote-v2 #bc-qq-form .forminator-response-message.forminator-success{
  background:rgba(2,91,90,.08)!important;border:1px solid rgba(2,91,90,.35)!important;color:var(--bcq-teal-dk)!important;
}
body.bc-quote-v2 #bc-qq-form .forminator-response-message.forminator-error{
  background:rgba(155,44,44,.06)!important;border:1px solid rgba(155,44,44,.32)!important;color:#7E2222!important;
}
body.bc-quote-v2 #bc-qq-form .forminator-response-message p{margin:0!important;color:inherit!important}

/* submit */
body.bc-quote-v2 #bc-qq-form .forminator-row-last{margin-top:26px!important}
body.bc-quote-v2 #bc-qq-form .forminator-button-submit{
  background:var(--bcq-gold)!important;color:var(--bcq-obsidian)!important;
  border:1px solid var(--bcq-gold)!important;border-radius:2px!important;
  font-family:'Poppins',sans-serif!important;font-weight:400!important;
  font-size:12.5px!important;letter-spacing:.16em!important;text-transform:uppercase!important;
  min-height:54px!important;padding:16px 40px!important;
  transition:background-color .25s ease,border-color .25s ease!important;
}
body.bc-quote-v2 #bc-qq-form .forminator-button-submit:hover,
body.bc-quote-v2 #bc-qq-form .forminator-button-submit:focus-visible{
  background:var(--bcq-gold-warm)!important;border-color:var(--bcq-gold-warm)!important;color:var(--bcq-obsidian)!important;
}
body.bc-quote-v2 #bc-qq-form .forminator-button-submit:focus-visible{outline:2px solid var(--bcq-teal)!important;outline-offset:3px!important}

/* =====================================================================
   04 WHAT YOU CAN REQUEST
   ===================================================================== */
body.bc-quote-v2 #bc-qq-scope{padding:0}
body.bc-quote-v2 #bc-qq-scope-inner{padding:98px var(--bcq-gut) 100px;gap:0}
body.bc-quote-v2 #bc-qq-scope-inner>.e-con-inner{display:flex;flex-direction:column;align-items:flex-start;gap:0}
body.bc-quote-v2 #bc-qq-scope-title{margin-top:16px}
body.bc-quote-v2 #bc-qq-scope-rule{margin:24px 0 0}
body.bc-quote-v2 #bc-qq-scope-grid{
  padding:0;margin-top:52px;width:100%;
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0;
  border-top:1px solid rgba(2,69,72,.16);border-left:1px solid rgba(2,69,72,.16);
}
body.bc-quote-v2 [id^="bc-qq-sc-"]:not([id*="-ico-"]):not([id*="-ic-"]):not([id*="-t-"]):not([id*="-d-"]){
  display:flex;flex-direction:column;align-items:flex-start;gap:0;
  padding:38px 32px 40px;width:100%;background:transparent;
  border-right:1px solid rgba(2,69,72,.16);border-bottom:1px solid rgba(2,69,72,.16);
  transition:background-color .25s ease;
}
body.bc-quote-v2 [id^="bc-qq-sc-"]:not([id*="-ico-"]):not([id*="-ic-"]):not([id*="-t-"]):not([id*="-d-"]):hover{
  background:rgba(252,250,246,.72);
}
body.bc-quote-v2 [id^="bc-qq-sc-ico-"]{padding:0;width:auto}
body.bc-quote-v2 .bcq-sc-ic{width:auto}
body.bc-quote-v2 .bcq-sc-ic .elementor-icon{
  width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;
  border:1px solid rgba(209,170,109,.55);border-radius:2px;color:var(--bcq-gold);
  background:rgba(209,170,109,.06);
}
body.bc-quote-v2 .bcq-sc-ic .elementor-icon svg{width:19px;height:19px;fill:var(--bcq-gold)}
body.bc-quote-v2 .bcq-sc-title .elementor-heading-title{
  font-family:'Poppins',sans-serif;font-weight:400;font-size:13.5px;
  letter-spacing:.13em;text-transform:uppercase;color:var(--bcq-teal-dk);
  line-height:1.45;margin:20px 0 0;
}
body.bc-quote-v2 .bcq-sc-desc{
  font-family:'Poppins',sans-serif;font-size:13.5px;line-height:1.72;
  color:#546564;margin-top:10px;
}
body.bc-quote-v2 .bcq-sc-desc p{margin:0}

/* =====================================================================
   05 WHAT HAPPENS NEXT
   ===================================================================== */
body.bc-quote-v2 #bc-qq-next{padding:0}
body.bc-quote-v2 #bc-qq-next-inner{padding:96px var(--bcq-gut) 100px;gap:0}
body.bc-quote-v2 #bc-qq-next-inner>.e-con-inner{display:flex;flex-direction:column;align-items:flex-start;gap:0}
body.bc-quote-v2 #bc-qq-next-title{margin-top:16px}
body.bc-quote-v2 #bc-qq-next-rule{margin:24px 0 0}
body.bc-quote-v2 #bc-qq-next-grid{
  padding:0;margin-top:54px;width:100%;
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:0;
}
body.bc-quote-v2 [id^="bc-qq-st-"]:not([id*="-n-"]):not([id*="-t-"]):not([id*="-d-"]){
  position:relative;display:flex;flex-direction:column;align-items:flex-start;gap:0;
  padding:30px 30px 8px 0;width:100%;
  border-top:1px solid rgba(209,170,109,.28);
}
/* connector node on the process rail */
body.bc-quote-v2 [id^="bc-qq-st-"]:not([id*="-n-"]):not([id*="-t-"]):not([id*="-d-"])::before{
  content:"";position:absolute;top:-4px;left:0;width:7px;height:7px;
  background:var(--bcq-gold);border-radius:50%;
}
body.bc-quote-v2 .bcq-st-num .elementor-heading-title{
  font-family:'Cormorant Garamond',Georgia,serif;font-weight:500;font-size:36px;
  line-height:1;color:rgba(209,170,109,.85);margin:0;letter-spacing:.02em;
}
body.bc-quote-v2 .bcq-st-title .elementor-heading-title{
  font-family:'Poppins',sans-serif;font-weight:400;font-size:13.5px;
  letter-spacing:.14em;text-transform:uppercase;color:var(--bcq-white);
  line-height:1.5;margin:18px 0 0;
}
body.bc-quote-v2 .bcq-st-desc{
  font-family:'Poppins',sans-serif;font-size:13.5px;line-height:1.74;
  color:rgba(214,221,219,.82);margin-top:12px;
}
body.bc-quote-v2 .bcq-st-desc p{margin:0}

/* =====================================================================
   06 FINAL FAST-CONTACT CTA
   ===================================================================== */
body.bc-quote-v2 #bc-qq-cta{
  padding:0;
  border-top:1px solid rgba(209,170,109,.20);
  background-image:linear-gradient(180deg,rgba(1,47,49,.55) 0%,rgba(7,9,9,0) 100%);
}
body.bc-quote-v2 #bc-qq-cta-inner{padding:74px var(--bcq-gut) 78px;gap:0}
body.bc-quote-v2 #bc-qq-cta-inner>.e-con-inner{
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:0;
}
body.bc-quote-v2 #bc-qq-cta-title{margin-top:16px}
body.bc-quote-v2 #bc-qq-cta-desc{margin-top:16px;max-width:620px;text-align:center}
body.bc-quote-v2 #bc-qq-cta-btns{
  padding:0;width:auto;margin-top:32px;
  display:flex;flex-direction:row;flex-wrap:wrap;justify-content:center;gap:14px;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

/* --- 1280 and below: tighten the rail gutter --- */
@media(max-width:1300px){
  body.bc-quote-v2{--bcq-gut:32px}
}

/* --- 1180 and below: form/panel proportions ease --- */
@media(max-width:1180px){
  body.bc-quote-v2 #bc-qq-main-grid>.e-con-inner{grid-template-columns:minmax(0,1fr) minmax(0,.86fr)}
  body.bc-quote-v2 #bc-qq-form{padding:46px 36px 48px}
  body.bc-quote-v2 #bc-qq-panel{padding:46px 32px 34px}
  body.bc-quote-v2 [id^="bc-qq-tc-"]:not([id*="-ico-"]):not([id*="-ic-"]):not([id*="-l-"]):not([id*="-b-"]){padding:40px 26px 42px}
  body.bc-quote-v2 [id^="bc-qq-sc-"]:not([id*="-ico-"]):not([id*="-ic-"]):not([id*="-t-"]):not([id*="-d-"]){padding:34px 26px 36px}
}

/* --- 1024 and below: stack the RFQ, 2x2 trust strip --- */
@media(max-width:1024px){
  body.bc-quote-v2{--bcq-gut:28px}

  body.bc-quote-v2 #bc-qq-hero-inner{padding:88px var(--bcq-gut) 84px}
  body.bc-quote-v2 #bc-qq-hero-title{max-width:560px}

  body.bc-quote-v2 #bc-qq-strip-grid>.e-con-inner{grid-template-columns:repeat(2,minmax(0,1fr))}
  body.bc-quote-v2 #bc-qq-tc-1,
  body.bc-quote-v2 #bc-qq-tc-3{border-left:0}
  body.bc-quote-v2 #bc-qq-tc-3,
  body.bc-quote-v2 #bc-qq-tc-4{border-top:1px solid rgba(209,170,109,.20)}

  body.bc-quote-v2 #bc-qq-main-grid{padding:76px var(--bcq-gut) 80px}
  body.bc-quote-v2 #bc-qq-main-grid>.e-con-inner{grid-template-columns:minmax(0,1fr)}
  body.bc-quote-v2 #bc-qq-form{border-right:1px solid rgba(2,69,72,.14);border-bottom:0}
  body.bc-quote-v2 #bc-qq-panel{border-top:0}
  body.bc-quote-v2 #bc-qq-panel-desc{max-width:none}
  body.bc-quote-v2 #bc-qq-panel-figure{margin-top:32px;min-height:0}
  body.bc-quote-v2 .bcq-panel-img img{height:auto;min-height:0;aspect-ratio:16/7}

  body.bc-quote-v2 #bc-qq-scope-inner{padding:78px var(--bcq-gut) 80px}
  body.bc-quote-v2 #bc-qq-scope-grid{grid-template-columns:repeat(2,minmax(0,1fr));margin-top:44px}

  body.bc-quote-v2 #bc-qq-next-inner{padding:76px var(--bcq-gut) 80px}
  body.bc-quote-v2 #bc-qq-next-grid{grid-template-columns:repeat(2,minmax(0,1fr));column-gap:30px;row-gap:34px;margin-top:46px}

  body.bc-quote-v2 #bc-qq-cta-inner{padding:62px var(--bcq-gut) 66px}
}

/* --- 719 and below: single column everywhere that matters ---
   Deliberately 719, not 767. Chrome resolves media queries against the
   layout viewport, which EXCLUDES the classic scrollbar, so a real 768px
   browser window matches ~753px. At 767 the whole tablet band collapsed to
   phone layout one pixel early and 768 lost its 2x2 grids. 719 keeps
   768/820/900/1024 on the tablet layout and hands 600 and below to phone. */
@media(max-width:719px){
  body.bc-quote-v2{--bcq-gut:22px}

  body.bc-quote-v2 #bc-qq-hero-inner{padding:66px var(--bcq-gut) 64px}
  body.bc-quote-v2 #bc-qq-hero-title{max-width:none}
  body.bc-quote-v2 #bc-qq-hero-desc{margin-top:20px}
  body.bc-quote-v2 #bc-qq-hero-cta{margin-top:30px;width:100%;flex-direction:column;align-items:stretch;gap:12px}
  body.bc-quote-v2 #bc-qq-hero-cta .bcq-btn{width:100%}
  body.bc-quote-v2 #bc-qq-hero-cta .bcq-btn .elementor-button{width:100%}

  body.bc-quote-v2 #bc-qq-strip-grid>.e-con-inner{grid-template-columns:minmax(0,1fr)}
  body.bc-quote-v2 [id^="bc-qq-tc-"]:not([id*="-ico-"]):not([id*="-ic-"]):not([id*="-l-"]):not([id*="-b-"]){
    padding:30px 0 32px;border-left:0;border-top:1px solid rgba(209,170,109,.20);
  }
  body.bc-quote-v2 #bc-qq-tc-1{border-top:0}

  body.bc-quote-v2 #bc-qq-main-grid{padding:54px var(--bcq-gut) 58px}
  body.bc-quote-v2 #bc-qq-form{padding:36px 22px 40px}
  body.bc-quote-v2 #bc-qq-form-embed{margin-top:26px}
  body.bc-quote-v2 #bc-qq-panel{padding:38px 22px 26px}

  /* Mobile form: one column, full-width controls, no cramped pairs. */
  body.bc-quote-v2 #bc-qq-form .forminator-row{gap:16px 0}
  body.bc-quote-v2 #bc-qq-form .forminator-col,
  body.bc-quote-v2 #bc-qq-form .forminator-col-6,
  body.bc-quote-v2 #bc-qq-form .forminator-col-12{flex:1 1 100%!important;max-width:100%!important}
  body.bc-quote-v2 #bc-qq-form .forminator-row+.forminator-row{margin-top:16px}
  body.bc-quote-v2 #bc-qq-form .forminator-input,
  body.bc-quote-v2 #bc-qq-form input[type=text],
  body.bc-quote-v2 #bc-qq-form input[type=email]{height:50px!important;line-height:50px!important;font-size:16px!important}
  body.bc-quote-v2 #bc-qq-form .forminator-textarea{font-size:16px!important;min-height:140px!important}
  body.bc-quote-v2 #bc-qq-form .select2-container .select2-selection--single{height:50px!important}
  body.bc-quote-v2 #bc-qq-form select:not(.select2-hidden-accessible){height:50px!important;font-size:16px!important}
  body.bc-quote-v2 #bc-qq-form .forminator-row-last{margin-top:22px!important}
  body.bc-quote-v2 #bc-qq-form .forminator-button-submit{width:100%!important;justify-content:center!important}

  body.bc-quote-v2 #bc-qq-scope-inner{padding:56px var(--bcq-gut) 58px}
  body.bc-quote-v2 #bc-qq-scope-grid{grid-template-columns:minmax(0,1fr);margin-top:36px;border-left:0}
  body.bc-quote-v2 [id^="bc-qq-sc-"]:not([id*="-ico-"]):not([id*="-ic-"]):not([id*="-t-"]):not([id*="-d-"]){
    padding:28px 0 30px;border-right:0;
  }

  body.bc-quote-v2 #bc-qq-next-inner{padding:56px var(--bcq-gut) 58px}
  body.bc-quote-v2 #bc-qq-next-grid{grid-template-columns:minmax(0,1fr);row-gap:30px;margin-top:36px}
  body.bc-quote-v2 [id^="bc-qq-st-"]:not([id*="-n-"]):not([id*="-t-"]):not([id*="-d-"]){padding:26px 0 6px}

  body.bc-quote-v2 #bc-qq-cta-inner{padding:50px var(--bcq-gut) 54px}
  body.bc-quote-v2 #bc-qq-cta-btns{width:100%;flex-direction:column;align-items:stretch;gap:12px;margin-top:28px}
  body.bc-quote-v2 #bc-qq-cta-btns .bcq-btn{width:100%}
  body.bc-quote-v2 #bc-qq-cta-btns .bcq-btn .elementor-button{width:100%}
}

/* --- 430 and below --- */
@media(max-width:430px){
  body.bc-quote-v2{--bcq-gut:18px}
  body.bc-quote-v2 .bcq-hero-title .elementor-heading-title{font-size:clamp(29px,8.2vw,38px)}
  body.bc-quote-v2 .bcq-sec-title .elementor-heading-title{font-size:clamp(26px,7.4vw,34px)}
  body.bc-quote-v2 .bcq-cta-title .elementor-heading-title{font-size:clamp(25px,7.2vw,33px)}
  body.bc-quote-v2 .bcq-eyebrow .elementor-heading-title{font-size:11px;letter-spacing:.28em}
  body.bc-quote-v2 .bcq-hero-desc,
  body.bc-quote-v2 .bcq-sec-desc,
  body.bc-quote-v2 .bcq-panel-desc,
  body.bc-quote-v2 .bcq-cta-desc{font-size:14.5px}
  body.bc-quote-v2 #bc-qq-form{padding:32px 18px 36px}
  body.bc-quote-v2 #bc-qq-panel{padding:34px 18px 22px}
}

/* --- 360 and below --- */
@media(max-width:360px){
  body.bc-quote-v2{--bcq-gut:15px}
  body.bc-quote-v2 .bcq-hero-title .elementor-heading-title{font-size:29px}
  body.bc-quote-v2 .bcq-eyebrow .elementor-heading-title{font-size:10.5px;letter-spacing:.24em}
  body.bc-quote-v2 .bcq-btn .elementor-button{padding:15px 20px;font-size:12px;letter-spacing:.13em}
  body.bc-quote-v2 #bc-qq-form{padding:28px 15px 32px}
  body.bc-quote-v2 #bc-qq-panel{padding:30px 15px 20px}
  body.bc-quote-v2 #bc-qq-form .forminator-button-submit{padding:16px 20px!important;font-size:12px!important;letter-spacing:.13em!important}
}
