/* ==========================================
   BSE Elementor Migration — Custom CSS
   Organized by section. See 10-CUSTOM-CODE-REGISTER.md
   for the justification of every rule below.
   ========================================== */

/* ==========================================
   Video (Phase 3.2)
   ========================================== */

/* Poster fallback background — reproduces content-video.php's own
   no-thumbnail-set texture (video_thumbnail/video_url are both empty
   in the current ACF data, so this is the section's real current
   appearance, not a placeholder). Elementor's native Background:
   Gradient control only supports a simple 2-stop linear/radial
   gradient, not a repeating multi-stop stripe pattern. */
.bse-elm-video-poster-fallback {
  background-image:
    linear-gradient(160deg, rgba(20, 40, 70, 0.35), rgba(8, 14, 24, 0.7)),
    repeating-linear-gradient(135deg, #1b3a5c, #1b3a5c 16px, #204468 16px, #204468 32px);
  background-size: cover;
  background-position: center;
}

/* Play button glass circle — backdrop-filter has no native Elementor
   control. The hover scale+background combo also has no exact native
   equivalent on Containers (Elementor's built-in hover animation
   presets don't match this precise scale/colour pairing). */
.bse-elm-video-play-btn {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.bse-elm-video-play-btn:hover {
  transform: scale(1.08);
  background: var(--e-global-color-primary, #f5c518);
}

/* Play triangle — reproduces content-video.php's own CSS
   border-triangle technique (border-left solid, border-top/bottom
   transparent). Deliberately built as a plain bordered Container,
   NOT an Elementor Icon widget: an invalid icon schema previously
   caused a live PHP fatal error on the Hero build (08-DECISIONS.md,
   "Hero import failure root-caused"). Elementor's native border
   control only exposes one border-colour for the whole element, so
   three independently-coloured sides (one solid, two transparent)
   cannot be expressed without this rule. */
.bse-elm-video-play-triangle {
  border-left: 24px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  margin-left: 7px;
}

/* ==========================================
   Marquee (Phase 3.3)
   ========================================== */

/* Marquee mask — handles edge fading (gradient opacity overlay).
   Elementor's native Container controls do not support CSS mask-image overlays. */
.bse-elm-marquee-mask {
  overflow: hidden !important;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* Marquee track — handles continuous horizontal movement and hover pause.
   Elementor's native motion effects do not support a continuous, infinite scroll loop
   with a reset behavior suitable for a text marquee.
   We force display, flex-wrap, width, and max-width using !important to prevent
   Elementor's default container properties from squishing or overriding the layout. */
.bse-elm-marquee-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  width: max-content !important;
  max-width: none !important;
  -webkit-animation: bse-elm-marquee-scroll 34s linear infinite !important;
  animation: bse-elm-marquee-scroll 34s linear infinite !important;
  padding-left: 72px !important;
}
.bse-elm-marquee-track:hover {
  -webkit-animation-play-state: paused !important;
  animation-play-state: paused !important;
}

@-webkit-keyframes bse-elm-marquee-scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes bse-elm-marquee-scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

/* Reduced motion — halts scrolling animation if the user prefers reduced motion,
   maintaining readability while satisfying accessibility standards. */
@media (prefers-reduced-motion: reduce) {
  .bse-elm-marquee-track {
    -webkit-animation: none !important;
    animation: none !important;
    width: auto !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    padding-left: 0 !important;
    gap: 32px !important;
  }
}

/* ==========================================================================
   BSE Contact Form 7 Migration Stylesheet
   This stylesheet styles all Contact Form 7 controls inside the BSE Contact
   section. It is scoped to `.bse-contact-section` to prevent styling bleed.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Scoped Layout Grid & Form Classes
   -------------------------------------------------------------------------- */
.bse-contact-section .bse-contact-form {
  margin-top: 26px;
}

/* 2-Column Grid Layout for Form Fields on Desktop */
.bse-contact-section .bse-contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Full-width fields (e.g. Message, Business Name, Revenue) */
.bse-contact-section .bse-contact-field-full {
  grid-column: 1 / -1;
}

/* Label Styling (Monospace, Slate Grey, Uppercase) */
.bse-contact-section .bse-contact-label {
  display: block;
  font-family: var(--bse-font-mono, 'Fragment Mono'), monospace;
  font-size: var(--bse-fs-label-sm, 11.5px);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bse-color-text-muted-dark, #565a63);
  margin-bottom: 9px;
}

/* Required field asterisk (Red-Orange) */
.bse-contact-section .bse-contact-required {
  color: var(--bse-color-text-required, #e0770f);
  margin-left: 2px;
}

/* Disclaimer Text below Submit Button */
.bse-contact-section .bse-contact-disclaimer {
  font-size: 13px;
  line-height: 1.5;
  color: var(--bse-color-text-sublabel, #8b8f97);
  margin-top: 16px;
  text-align: center;
}

/* Disclaimer Link color (Muted Gold) */
.bse-contact-section .bse-contact-disclaimer a {
  color: var(--bse-color-accent-hover, #b9880a);
  font-weight: 600;
  text-decoration: none;
}

.bse-contact-section .bse-contact-disclaimer a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   2. Form Input & Textarea Elements
   -------------------------------------------------------------------------- */
/* Main Input / Textarea styling */
.bse-contact-section .bse-in {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--bse-color-border-input, rgba(20, 24, 31, 0.16));
  border-radius: var(--bse-radius-input, 11px);
  font-size: var(--bse-fs-body-sm, 15px);
  font-family: var(--bse-font-body, 'Inter'), sans-serif;
  background: var(--bse-color-input-bg, #fbfbfc);
  color: var(--bse-color-text-dark, #16181d);
  transition: border-color var(--bse-transition-fast, 0.15s ease-in-out), box-shadow var(--bse-transition-fast, 0.15s ease-in-out);
}

/* Placeholder colour */
.bse-contact-section .bse-in::placeholder {
  color: var(--bse-color-text-placeholder, #a3a8b0);
}

/* Focus State styling (Accent Gold outline shadow) */
.bse-contact-section .bse-in:focus {
  outline: none;
  border-color: var(--bse-color-accent, #f5c518);
  box-shadow: 0 0 0 4px var(--bse-color-accent-halo, rgba(245, 197, 24, 0.22));
}

/* Textarea height */
.bse-contact-section textarea.bse-in {
  resize: vertical;
  min-height: 120px;
}

/* Force CF7 wrapper span to span full container width */
.bse-contact-section .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* --------------------------------------------------------------------------
   3. Checkbox Element Alignment
   -------------------------------------------------------------------------- */
/* Checkbox Row Container */
.bse-contact-section .bse-contact-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  cursor: pointer;
}

/* Native input checkbox size and accent color override */
.bse-contact-section .bse-contact-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--bse-color-accent, #f5c518);
  cursor: pointer;
  margin: 0;
}

/* Checkbox label styling */
.bse-contact-section .bse-contact-checkbox-text,
.bse-contact-section .bse-contact-checkbox .wpcf7-list-item-label {
  font-family: var(--bse-font-mono, 'Fragment Mono'), monospace;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #3a3e46;
  margin-left: 8px;
}

/* Ensure checkbox alignment doesn't stack vertically */
.bse-contact-section .bse-contact-checkbox .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.bse-contact-section .bse-contact-checkbox label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
}

/* --------------------------------------------------------------------------
   4. Submit Button styling
   -------------------------------------------------------------------------- */
/* Submit button - maps bse-btn and bse-btn-primary */
.bse-contact-section .bse-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--bse-radius-button, 14px);
  font-family: var(--bse-font-body, 'Inter'), sans-serif;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--bse-transition-default, 0.2s cubic-bezier(0.4, 0, 0.2, 1)), box-shadow var(--bse-transition-default, 0.2s cubic-bezier(0.4, 0, 0.2, 1)), background var(--bse-transition-default, 0.2s cubic-bezier(0.4, 0, 0.2, 1));
  width: 100%;
  margin-top: 24px;
  padding: 17px 28px;
  border: none;
  font-size: 16px;
  background: var(--bse-color-accent, #f5c518);
  color: var(--bse-color-text-dark, #16181d);
  box-shadow: var(--bse-shadow-button-lg, 0 14px 30px rgba(245, 197, 24, 0.45));
}

/* Submit button Hover Effect */
.bse-contact-section .bse-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--bse-shadow-button-hover, 0 18px 38px rgba(245, 197, 24, 0.55));
  color: var(--bse-color-text-dark, #16181d);
}

/* Submit button Active Click Effect */
.bse-contact-section .bse-contact-submit:active {
  transform: translateY(0);
}

.bse-contact-section .bse-contact-submit:focus {
  outline: none;
}

/* --------------------------------------------------------------------------
   5. CF7 Validation Errors & Response Messages
   -------------------------------------------------------------------------- */
/* Red-orange outline for invalid fields */
.bse-contact-section .wpcf7-not-valid {
  border-color: var(--bse-color-text-required, #e0770f) !important;
}

/* Error message label below invalid fields */
.bse-contact-section .wpcf7-not-valid-tip {
  display: block;
  color: var(--bse-color-text-required, #e0770f);
  font-size: 12px;
  margin-top: 6px;
  font-family: var(--bse-font-mono, 'Fragment Mono'), monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Response output box shown at the bottom of the form */
.bse-contact-section .wpcf7-response-output {
  margin: 20px 0 0 0;
  padding: 16px;
  border-radius: var(--bse-radius-input, 11px);
  font-size: 14px;
  line-height: 1.5;
  border: 2px solid transparent;
  font-family: var(--bse-font-body, 'Inter'), sans-serif;
  box-sizing: border-box;
}

/* Validation Failed State styles */
.wpcf7-form.invalid .bse-contact-section .wpcf7-response-output,
.wpcf7-form.unaccepted .bse-contact-section .wpcf7-response-output,
.wpcf7-form.payment-required .bse-contact-section .wpcf7-response-output,
.bse-contact-section .wpcf7-status-validation-failed {
  display: block;
  border-color: #ff3b30;
  background-color: rgba(255, 59, 48, 0.05);
  color: #ff3b30;
}

/* Success State styles */
.wpcf7-form.sent .bse-contact-section .wpcf7-response-output,
.bse-contact-section .wpcf7-status-mail-sent {
  display: block;
  border-color: #34c759;
  background-color: rgba(52, 199, 89, 0.05);
  color: #34c759;
}

/* CF7 Spinner loader styling */
.bse-contact-section .wpcf7-spinner {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   6. Clean-ups & Responsive Media Queries
   -------------------------------------------------------------------------- */
/* Hide Contact Form 7 auto-inserted line breaks */
.bse-contact-section .bse-contact-form br,
.bse-contact-section .wpcf7 br {
  display: none;
}

/* Remove default paragraph margin within CF7 wrappers */
.bse-contact-section .wpcf7-form p {
  margin: 0;
  padding: 0;
}

/* Grid stack for Mobile viewports (<576px) */
@media (max-width: 576px) {
  .bse-contact-section .bse-contact-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* --------------------------------------------------------------------------
   5b. Success Message Card (Hidden by default, toggled via JS)
   -------------------------------------------------------------------------- */
.bse-contact-section .bse-contact-success {
  display: none;
  margin-top: 26px;
  padding: 36px 28px;
  text-align: center;
}

.bse-contact-section .bse-contact-success-checkmark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bse-color-accent, #f5c518);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 32px;
  color: var(--bse-color-text-dark, #16181d);
  box-shadow: var(--bse-shadow-button-lg, 0 14px 30px rgba(245, 197, 24, 0.45));
}

.bse-contact-section .bse-contact-success-title {
  font-family: var(--bse-font-heading, 'Parkinsans'), sans-serif;
  font-weight: 600;
  font-size: 26px;
  margin-top: 22px;
  color: var(--bse-color-text-dark, #16181d);
}

.bse-contact-section .bse-contact-success-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--bse-color-text-muted-dark, #565a63);
  margin-top: 12px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.bse-contact-section .bse-contact-success-desc a {
  color: var(--bse-color-accent-hover, #b9880a);
  font-weight: 600;
  text-decoration: none;
}

.bse-contact-section .bse-contact-success-desc a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   6. Clean-ups & Responsive Media Queries
   -------------------------------------------------------------------------- */
/* Hide Contact Form 7 auto-inserted line breaks */
.bse-contact-section .bse-contact-form br,
.bse-contact-section .wpcf7 br {
  display: none;
}

/* Remove default paragraph margin within CF7 wrappers */
.bse-contact-section .wpcf7-form p {
  margin: 0;
  padding: 0;
}

/* Grid stack for Mobile viewports (<576px) */
@media (max-width: 576px) {
  .bse-contact-section .bse-contact-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* ==========================================
   Header (Phase 8)
   ========================================== */

/* Header sticky backdrop-filter — Elementor has no native control for backdrop-filter. */
.bse-elm-header {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}



/* ==========================================
   Header Nav Menu — Active & Hover States
   ========================================== */

/* Main Navigation Items (Top-level Links) */
.elementor-nav-menu a.elementor-item {
  position: relative;
  transition: color 0.25s ease, background-color 0.25s ease;
}

/* Hover & Focus States for Top-level Links */
.elementor-nav-menu a.elementor-item:hover,
.elementor-nav-menu a.elementor-item:focus,
.elementor-nav-menu a.elementor-item.highlighted {
  color: var(--bse-color-accent-hover, #b9880a) !important;
}

/* Active State for Top-level Links (Current Page / Active) */
.elementor-nav-menu a.elementor-item.elementor-item-active,
.elementor-nav-menu li.current-menu-item > a.elementor-item,
.elementor-nav-menu li.current_page_item > a.elementor-item,
.elementor-nav-menu li.current-menu-ancestor > a.elementor-item {
  color: var(--bse-color-accent-hover, #b9880a) !important;
  font-weight: 600;
}

/* Active Underline Indicator for Top-level Links */
.elementor-nav-menu > li.current-menu-item > a.elementor-item::after,
.elementor-nav-menu > li.current_page_item > a.elementor-item::after,
.elementor-nav-menu > li.current-menu-ancestor > a.elementor-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--bse-color-accent, #f5c518);
  border-radius: 2px;
}

/* Sub-menu / Dropdown Items (.elementor-sub-item) */
.elementor-nav-menu--dropdown a.elementor-sub-item,
.elementor-nav-menu .sub-menu a.elementor-sub-item {
  transition: color 0.2s ease, background-color 0.2s ease, padding-left 0.2s ease;
}

/* Sub-menu Hover State */
.elementor-nav-menu--dropdown a.elementor-sub-item:hover,
.elementor-nav-menu--dropdown a.elementor-sub-item:focus,
.elementor-nav-menu .sub-menu a.elementor-sub-item:hover,
.elementor-nav-menu .sub-menu a.elementor-sub-item:focus {
  background-color: var(--bse-color-bg-light, #f1f2f4) !important;
  color: var(--bse-color-accent-hover, #b9880a) !important;
  padding-left: 18px;
}

/* Sub-menu Active State */
.elementor-nav-menu--dropdown a.elementor-sub-item.elementor-item-active,
.elementor-nav-menu--dropdown li.current-menu-item > a.elementor-sub-item,
.elementor-nav-menu .sub-menu li.current-menu-item > a.elementor-sub-item {
  color: var(--bse-color-accent-hover, #b9880a) !important;
  font-weight: 600;
  background-color: rgba(245, 197, 24, 0.1) !important;
}

.current-menu-item a {
  background-color: transparent !important ;
}
.elementor-widget-nav-menu .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:after {
    background-color: transparent;
} 
#elementor-popup-modal-359 a:hover{
background-color: transparent !important;
}

@media (max-width: 767px) {
  .home-hero .elementor-button{
    width: 100% !important;
  }
}
.page-id-275 h1.entry-title {
    display: none;
}
.popular-posts {
    position: sticky;
    top: 120px;
}
/* ==========================================
   Header Logo / Site Branding Styling
   ========================================== */

/* Outer Branding Container */
.bse-site-branding,
.bse-text-branding {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

/* Logo Title ("BSE") */
.bse-site-branding a.bse-site-title,
a.bse-site-title {
  font-family: var(--bse-font-heading, "Plus Jakarta Sans", sans-serif);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--bse-color-accent, #f5c518) !important;
  text-decoration: none !important;
  text-shadow: 0 1px 0 rgba(20, 24, 31, 0.15);
  transition: color 0.25s ease, opacity 0.25s ease;
}

/* Logo Title Hover State */
.bse-site-branding a.bse-site-title:hover,
a.bse-site-title:hover {
  color: var(--bse-color-accent-hover, #b9880a) !important;
  opacity: 0.9;
}

/* Logo Tagline ("BizSellingExpert") */
.bse-site-branding .bse-site-tagline,
.bse-site-tagline {
  display: block;
  font-family: var(--bse-font-mono, "JetBrains Mono", monospace);
  font-size: 9.5px;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bse-color-text-label, #88909e);
  margin-top: 4px;
}


@media (max-width: 1094px) {
    .header-menu a {
        font-size: 11px !important ;
    }
}

/* ==========================================================================
   BSE Blog Form Modal Popup Styles
   ========================================================================== */

/* 1. Modal Background Overlay & Wrapper */
.bse-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bse-modal--open {
  opacity: 1;
  pointer-events: auto;
}

.bse-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 24, 38, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* 2. Modal Popup Container */
.bse-modal__container {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border: 1px solid rgba(20, 24, 31, 0.1);
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 24px 48px rgba(15, 24, 38, 0.2);
  z-index: 10;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 20px;
  max-height: 90vh;
  overflow-y: auto;
}

.bse-modal--open .bse-modal__container {
  transform: scale(1);
}

/* 3. Close Button */
.bse-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #8b8f97;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.bse-modal__close:hover {
  color: #16181d;
  background: #f1f2f4;
}

/* 4. Typography & Headers */
.bse-modal__title {
  font-family: 'Parkinsans', 'Plus Jakarta Sans', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #16181d;
  margin-bottom: 8px;
  line-height: 1.2;
}

.bse-modal__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #565a63;
  margin-bottom: 24px;
}

/* 5. Form Structure & Input Fields */
.bse-modal__form,
.wpcf7-form,
.elementor-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bse-modal__field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bse-modal__label,
.wpcf7-form label,
.elementor-field-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #16181d;
}

.bse-modal__input,
.bse-modal__textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.elementor-field-textual {
  width: 100%;
  padding: 12px 16px;
  background: #f8f9fa;
  border: 1px solid rgba(20, 24, 31, 0.15);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #16181d;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.bse-modal__input:focus,
.bse-modal__textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.elementor-field-textual:focus {
  border-color: #f5c518;
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.25);
  outline: none;
  background: #ffffff;
}

/* 6. Submit Button */
.bse-modal__submit-btn,
.wpcf7-form input[type="submit"],
.elementor-button[type="submit"] {
  width: 100%;
  padding: 14px 24px;
  background: #f5c518;
  color: #16181d;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(245, 197, 24, 0.35);
  transition: background 0.2s ease, transform 0.15s ease;
}

.bse-modal__submit-btn:hover,
.wpcf7-form input[type="submit"]:hover,
.elementor-button[type="submit"]:hover {
  background: #b9880a;
  color: #ffffff;
  transform: translateY(-1px);
}

/* 7. Success State Styling */
.bse-modal__success-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.bse-modal__success-icon {
  margin-bottom: 20px;
  background: rgba(245, 197, 24, 0.15);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bse-modal__success-close-btn {
  margin-top: 16px;
  width: 100%;
  padding: 12px 20px;
  border: 2px solid rgba(20, 24, 31, 0.2);
  background: transparent;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

/* 8. Mobile Responsiveness */
@media (max-width: 576px) {
  .bse-modal__container {
    padding: 28px 20px;
    border-radius: 14px;
  }
}



.flex-element {
    display: flex;
    justify-content: center;
    align-items: center;
}

span.highlite-text {
    color: #f5c518;
    font-weight: bold;
}
.home-hero-image img{
	aspect-ratio: 2 / 2;
    object-fit: cover;
}

.bse-vd-process__item .bse-vd-process__marker .elementor-elementelementor-widget__width-initial.elementor-widget.elementor-widget-html {
    width: 50px;
    height: 50px;
    border: 1px solid yellow;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.widget__width-initial.elementor-widget.elementor-widget-html {
    border: 1px solid yellow !important;
    width: 50px !important;
    height: 50px !important;
    padding: 10px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.round-element{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
