.elementor-1455 .elementor-element.elementor-element-011861d{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1455 .elementor-element.elementor-element-b8773ea{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-1455 .elementor-element.elementor-element-b8773ea .jet-listing-dynamic-field .jet-listing-dynamic-field__inline-wrap{width:auto;}.elementor-1455 .elementor-element.elementor-element-b8773ea .jet-listing-dynamic-field .jet-listing-dynamic-field__content{width:auto;}.elementor-1455 .elementor-element.elementor-element-b8773ea .jet-listing-dynamic-field{justify-content:flex-start;}.elementor-1455 .elementor-element.elementor-element-b8773ea .jet-listing-dynamic-field__content{text-align:left;}.elementor-1455 .elementor-element.elementor-element-b8773ea .jet-listing-dynamic-field.display-multiline{margin:0px 0px 0px 0px;}.elementor-1455 .elementor-element.elementor-element-b8773ea .jet-listing-dynamic-field.display-inline .jet-listing-dynamic-field__inline-wrap{margin:0px 0px 0px 0px;}.elementor-1455 .elementor-element.elementor-element-219af31 .jet-listing-dynamic-field .jet-listing-dynamic-field__inline-wrap{width:auto;}.elementor-1455 .elementor-element.elementor-element-219af31 .jet-listing-dynamic-field .jet-listing-dynamic-field__content{width:auto;}.elementor-1455 .elementor-element.elementor-element-219af31 .jet-listing-dynamic-field{justify-content:flex-start;}.elementor-1455 .elementor-element.elementor-element-219af31 .jet-listing-dynamic-field__content{text-align:left;}/* Start custom CSS for container, class: .elementor-element-011861d *//* 1. Reset the counter once per page so numbers count up sequentially */
body {
    counter-reset: faq-counter;
}

/* 2. Style the main outer container holding all items */
.faq-items {
    border: 1px solid #f3f4f6 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    padding: 0 !important;
}

/* 3. Style the Question Field (Light theme shift) */
.faq-question {
    background: #ffffff !important; 
    color: #0b1f3a !important; 
    padding: 20px 24px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f3f4f6 !important;
}

/* 4. Generate sequential numbers (1., 2., 3.) dynamically */
.faq-question::before {
    counter-increment: faq-counter;
    content: counter(faq-counter) ". ";
    margin-right: 8px;
    color: #ff4500; 
    font-weight: 700;
}

/* 5. Style the toggle icon (+) into a clean badge */
.faq-question:after {
    content: "+" !important;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #0b1f3a !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

/* 6. Style the Answer Field and text alignment */
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 24px 0 44px !important; 
    font-size: 15px !important;
    line-height: 1.6;
    color: #4b5563 !important;
    background: #ffffff !important;
    border-bottom: 1px solid #f3f4f6 !important;
    transition: max-height 0.3s ease-out, opacity 0.2s ease-out, padding 0.3s ease-out;
}

/* ========================================================
   ACTIVE STATES (When JS toggles the '.active' class)
   ======================================================== */

/* Soft orange tint background for active items */
.faq-item.active .faq-question,
.active .faq-question,
.faq-item.active .faq-answer,
.active .faq-answer {
    background: #fff5f2 !important;
}

/* Expand the active answer panel layout */
.faq-item.active .faq-answer,
.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 10px 24px 24px 44px !important;
}

/* Change icon badge to a minus sign and light up orange */
.faq-item.active .faq-question:after,
.active .faq-question:after {
    content: "−" !important; 
    background: #ffffff !important;
    color: #ff4500 !important;
    box-shadow: 0 2px 8px rgba(255, 69, 0, 0.15);
}

/* ========================================================
   SUBTLE UPLIFT EFFECT ON OPEN
   ======================================================== */

/* Targets the active wrapper item */
.faq-item.active,
.active {
    position: relative;
    z-index: 10; /* Pulls the opened item above the others */
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02) !important;
    border-left: 3px solid #ff4500 !important; /* Optional subtle orange left accent */
    transform: scale(1.005); /* Extremely subtle micro-lift */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Ensure smooth transition reset when closing an item */
.faq-item,
.elementor-repeater-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.3s ease;
}/* End custom CSS */