#corporate-event-fabrication-page{
    font-family: mark, sans-serif !important;
    background: #fff;
    color: #16161c;
    overflow-x: hidden;
}

/* ---------- shared buttons ---------- */

.event-fab-primary-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 0;
    border-radius: 30px;
    background: #2fbf5b !important;
    color: #08210f !important;
    box-shadow: 0 8px 18px rgba(47,191,91,0.3);
    font-weight: 800;
    padding: 0 30px;
    transition: 0.25s ease;
}

.event-fab-primary-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(47,191,91,0.4);
}

.event-fab-primary-btn i{
    margin-left: 10px;
}

.event-fab-outline-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 30px;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: #fff;
    font-weight: 700;
    padding: 0 28px;
    transition: 0.25s ease;
}

.event-fab-outline-btn:hover{
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}

.event-fab-dark-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 0;
    border-radius: 30px;
    background: #141418 !important;
    color: #fff !important;
    font-weight: 700;
    padding: 0 30px;
    transition: 0.25s ease;
}

.event-fab-dark-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.event-fab-dark-btn i{
    margin-left: 10px;
}

/* ---------- sections & titles ---------- */

.event-fab-section{
    padding: 5rem 0;
    background: #fff;
}

.event-fab-section.gray{
    background: #f6f6f8;
}

.event-fab-section.dark{
    background: radial-gradient(circle at 20% 80%, rgba(33, 6, 104, 0.4) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(65, 14, 200, 0.4) 0%, transparent 50%), #000;
    background-color: #000000;        
}

.event-fab-section-eyebrow{
    display: block;
    color: #2fbf5b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
}

.event-fab-section-title{
    color: #16161c;
    font-size: 2.4rem;
    line-height: 1.15;
    font-weight: 500;
    text-align: center;
    margin-bottom: 14px;
}

.event-fab-section.dark .event-fab-section-title{
    color: #fff;
}

.event-fab-section-subtitle{
    color: #5b5b66;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.event-fab-section.dark .event-fab-section-subtitle{
    color: rgba(255,255,255,0.62);
}

/* ---------- reveal animation ---------- */

.event-fab-reveal{
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.event-fab-reveal.revealed{
    opacity: 1;
    transform: none;
}

/* ---------- hero ---------- */

.event-fab-hero{
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: #0a0a0f;
    overflow: hidden;
}

.event-fab-hero-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-fab-hero-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8,8,14,0.85) 0%, rgba(8,8,14,0.55) 55%, rgba(8,8,14,0.35) 100%);
}

.event-fab-hero .container{
    position: relative;
    z-index: 2;
    padding-top: 70px;
    padding-bottom: 70px;
}

.event-fab-hero-eyebrow{
    display: block;
    color: #2fbf5b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.event-fab-hero-title{
    color: #fff;
    font-size: 3.6rem;
    line-height: 1.08;
    font-weight: 500;
    margin-bottom: 0;
}

.event-fab-hero-desc{
    color: rgba(255,255,255,0.82);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 24px 0 0;
}

.event-fab-hero-actions{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.event-fab-hero-stats{
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    margin-top: 44px;
}

.event-fab-hero-stats strong{
    display: block;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.event-fab-hero-stats span{
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}

/* ---------- trusted by logos ---------- */

.event-fab-logos-section{
    padding: 2.6rem 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f3;
}

.event-fab-logos-title{
    color: #9a9aa4;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.event-fab-logos-section .comps-logo{
    width: 100%;
    height: 90px;
    object-fit: contain;
    object-position: center;
    padding: 10px 20px;
}

/* ---------- what we build cards ---------- */

.event-fab-build-card{
    height: 100%;
    background: linear-gradient(136deg,rgb(2, 2, 36) 45%, rgb(0, 0, 0) 100%);
    border: 1px solid #ececf0;
    border-radius: 20px;
    padding: 25px 15px;
    box-shadow: 0 10px 30px rgba(20,20,40,0.05);
    transition: 0.3s ease;
}

.event-fab-build-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(20,20,40,0.13);
    border-color: #e0e0e6;
}

.event-fab-build-icon{
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.event-fab-build-icon.icon-green{
    background: #eafaf0;
    color: #1d9e4d;
}

.event-fab-build-icon.icon-amber{
    background: #fdf3e3;
    color: #cf9433;
}

.event-fab-build-icon.icon-purple{
    background: #f0edfb;
    color: #7e6bc4;
}

.event-fab-build-card h3{
    color: #fff;
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
}

.event-fab-build-card p{
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}
.single-service-img{
    width: 100%;
    display: block;
    height: 230px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 20px;
}

/* ---------- production journey ---------- */

.event-fab-journey-flow{
    --journey-card-height: 170px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 60px 60px;
    margin-top: 28px;
}

.event-fab-journey-flow::before,
.event-fab-journey-flow::after{
    content: "";
    position: absolute;
    left: 12.5%;
    right: 12.5%;
    border-top: 2px dashed rgba(47,191,91,0.65);
    z-index: 0;
    pointer-events: none;
}

.event-fab-journey-flow::before{
    top: calc(var(--journey-card-height) / 2);
}

.event-fab-journey-flow::after{
    bottom: calc(var(--journey-card-height) / 2);
}

.event-fab-journey-turn{
    position: absolute;
    top: calc(var(--journey-card-height) / 2);
    right: 10.5%;
    bottom: calc(var(--journey-card-height) / 2);
    border-right: 2px dashed rgba(47,191,91,0.65);
    z-index: 0;
    pointer-events: none;
}

.event-fab-journey-step{
    position: relative;
    z-index: 1;
}

.event-fab-journey-step:nth-of-type(5){
    grid-column: 4;
    grid-row: 2;
}

.event-fab-journey-step:nth-of-type(6){
    grid-column: 3;
    grid-row: 2;
}

.event-fab-journey-step:nth-of-type(7){
    grid-column: 2;
    grid-row: 2;
}

.event-fab-journey-step:nth-of-type(8){
    grid-column: 1;
    grid-row: 2;
}

.event-fab-journey-card{
    height: 100%;
    min-height: var(--journey-card-height);
    background: #030409;
    background: linear-gradient(18deg, rgba(3, 4, 9, 1) 0%, rgb(18, 16, 27) 50%);
    border: 1px solid #644b81;
    border-radius: 18px;
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    box-shadow: 1px 1px 21px 5px rgba(88, 66, 114, 0.37);
}

.event-fab-journey-card:hover{
    transform: translateY(-6px);
    border-color: #2fbf5b;
    background: #030409;
    background: linear-gradient(18deg, rgba(0, 0, 0, 1) 0%, rgb(0, 0, 0) 50%);
}

.event-fab-journey-num{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #2fbf5b;
    color: #08210f;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.event-fab-journey-card h3{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

/* ---------- fabrication services alternating rows ---------- */

.event-fab-service-row{
    margin-bottom: 4rem;
}

.event-fab-service-row:last-child{
    margin-bottom: 0;
}

.event-fab-service-row:nth-child(even){
    flex-direction: row-reverse;
}

.event-fab-service-media{
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(20,20,40,0.12);
}

.event-fab-service-media img{
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-fab-service-row:hover .event-fab-service-media img{
    transform: scale(1.05);
}

.event-fab-service-tag{
    display: inline-block;
    color: #2fbf5b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.event-fab-service-row h3{
    color: #16161c;
    font-size: 1.8rem;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 14px;
}

.event-fab-service-row p{
    color: #5b5b66;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ---------- events we execute ---------- */

.event-fab-event-card{
    display: block;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 190px;
    box-shadow: 0 10px 26px rgba(20,20,40,0.08);
    transition: 0.3s ease;
}

.event-fab-event-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(20,20,40,0.18);
}

.event-fab-event-card img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-fab-event-card:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,18,0) 40%, rgba(10,10,18,0.85) 100%);
    z-index: 1;
}

.event-fab-event-card span{
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 15px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    z-index: 2;
}

/* ---------- production capabilities ---------- */

.event-fab-capability-pill{
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
    background: #fff;
    border: 1px solid #ececf0;
    border-radius: 14px;
    padding: 15px 18px;
    transition: 0.3s ease;
}

.event-fab-capability-pill:hover{
    border-color: #2fbf5b;
    transform: translateY(-3px);
}

.event-fab-capability-pill i{
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 11px;
    background: #eafaf0;
    color: #1d9e4d;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-fab-capability-pill span{
    color: #16161c;
    font-size: 15.5px;
    font-weight: 600;
}

/* ---------- branding chips ---------- */

.event-fab-brand-chips{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.event-fab-brand-chip{
    color: #e6e6ea;
    background: #16161f;
    border: 1px solid #26262f;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 22px;
    transition: 0.3s ease;
}

.event-fab-brand-chip:hover{
    background: #2fbf5b;
    border-color: #2fbf5b;
    color: #08210f;
}

/* ---------- materials tiles ---------- */

.event-fab-material-tile{
    height: 100%;
    background: #f6f6f8;
    border: 1px solid #ececf0;
    border-radius: 16px;
    padding: 22px 12px;
    text-align: center;
    transition: 0.3s ease;
}

.event-fab-material-tile:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(20,20,40,0.1);
}

.event-fab-material-tile i{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e6e6ec;
    color: #16161c;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.event-fab-material-tile span{
    color: #16161c;
    font-size: 15px;
    font-weight: 600;
}

/* ---------- why sos party ---------- */

.event-fab-why-card{
    height: 100%;
    background: #fff;
    border: 1px solid #ececf0;
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 10px 30px rgba(20,20,40,0.05);
    transition: 0.3s ease;
}

.event-fab-why-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(20,20,40,0.12);
}

.event-fab-why-num{
    color: #e3e3e8;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
}

.event-fab-why-card h3{
    color: #16161c;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.event-fab-why-card p{
    color: #6a6a74;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ---------- portfolio masonry ---------- */

.event-fab-portfolio{
    columns: 3 300px;
    column-gap: 16px;
}

.event-fab-portfolio-item{
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(20,20,40,0.1);
}

.event-fab-portfolio-item img{
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.event-fab-portfolio-item:hover img{
    transform: scale(1.05);
}

/* ---------- before / after slider ---------- */

.event-fab-ba-frame{
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
    height: 480px;
    user-select: none;
    margin-top: 10px;
}

.event-fab-ba-frame > img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-fab-ba-before{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
    z-index: 2;
}

.event-fab-ba-before img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    max-width: none;
    object-fit: cover;
    filter: grayscale(0.35) brightness(0.8);
}

.event-fab-ba-tag{
    position: absolute;
    bottom: 16px;
    color: #fff;
    background: rgba(10,10,18,0.6);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 14px;
    z-index: 3;
}

.event-fab-ba-tag.tag-before{
    left: 18px;
}

.event-fab-ba-tag.tag-after{
    right: 18px;
}

.event-fab-ba-divider{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    transform: translateX(-1.5px);
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.event-fab-ba-divider span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #16161c;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

#event-fab-ba-range{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
}

/* ---------- industries ---------- */

.event-fab-industry-card{
    height: 100%;
    background: #fff;
    border: 1px solid #ececf0;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 8px 22px rgba(20,20,40,0.05);
    transition: 0.3s ease;
}

.event-fab-industry-card:hover{
    transform: translateY(-5px);
    border-color: #2fbf5b;
}

.event-fab-industry-card i{
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #eafaf0;
    color: #1d9e4d;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.event-fab-industry-card span{
    color: #16161c;
    font-size: 16px;
    font-weight: 700;
}

/* ---------- cities ---------- */

.event-fab-city-pill{
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    background: #fff;
    border: 1px solid #ececf0;
    border-radius: 14px;
    padding: 15px 18px;
    transition: 0.3s ease;
}

.event-fab-city-pill:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(20,20,40,0.1);
}

.event-fab-city-pill i{
    color: #2fbf5b;
}

.event-fab-city-pill span{
    color: #16161c;
    font-size: 15.5px;
    font-weight: 600;
}

/* ---------- testimonials ---------- */

.event-fab-testimonial-card{
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ececf0;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(20,20,40,0.05);
}

.event-fab-stars{
    color: #e0a94a;
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.event-fab-testimonial-card p{
    color: #3a3a44;
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 22px;
    flex: 1;
}

.event-fab-testimonial-author{
    display: flex;
    align-items: center;
    gap: 13px;
}

.event-fab-testimonial-avatar{
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #2fbf5b;
    color: #08210f;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-fab-testimonial-author strong{
    display: block;
    color: #16161c;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.event-fab-testimonial-author span{
    color: #8a8a94;
    font-size: 13.5px;
}

/* ---------- faqs ---------- */

.event-fab-faq-section .custom-accordion{
    max-width: 820px;
    margin: 0 auto;
}

.event-fab-faq-section .faq-item{
    background: #fff;
    border: 1px solid #ececf0;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(20,20,40,0.04);
    padding: 22px 24px;
    margin-bottom: 12px;
}

.event-fab-faq-section .faq-ques{
    display: block;
    color: #16161c;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
    margin-bottom: 0;
}

.event-fab-faq-section .faq-ques i{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f2f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.event-fab-faq-section .faq-item.open .faq-ques i{
    transform: translateY(-50%) rotate(180deg);
}

.event-fab-faq-section .faq-ans{
    color: #5b5b66;
    font-size: 15.5px;
    line-height: 1.7;
    padding-top: 14px;
    margin-bottom: 0;
}

/* ---------- related services ---------- */

.event-fab-related-card{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 100%;
    background: #f6f6f8;
    border: 1px solid #ececf0;
    border-radius: 16px;
    color: #16161c;
    padding: 20px 24px;
    transition: 0.3s ease;
}

.event-fab-related-card:hover{
    background: #101014;
    transform: translateY(-4px);
    color: #fff;
}

.event-fab-related-card span{
    font-size: 17px;
    font-weight: 700;
}

/* ---------- final cta + lead form ---------- */

.event-fab-cta-section{
    padding: 5rem 0;
    background: radial-gradient(circle at 20% 80%, rgba(33, 6, 104, 0.4) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(65, 14, 200, 0.4) 0%, transparent 50%), #000;
    background-color: #000000; 
}

.event-fab-cta-section h2{
    color: #fff;
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
}

.event-fab-cta-section > .container > p{
    color: rgba(255,255,255,0.68);
    font-size: 1.15rem;
    line-height: 1.7;
    text-align: center;
    max-width: 660px;
    margin: 18px auto 0;
}

.event-fab-cta-actions{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.event-fab-lead-card{
    background: #fff;
    border-radius: 24px;
    padding: 40px 34px 28px;
    margin-top: 48px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

.event-fab-lead-card > h3{
    color: #16161c;
    font-size: 1.7rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 6px;
}

.event-fab-lead-card > p{
    color: #6a6a74;
    font-size: 15px;
    text-align: center;
    margin-bottom: 1rem;
}

.event-fab-lead-form .form-group{
    position: relative;
    margin-bottom: 15px;
}

.event-fab-lead-form .form-control{
    min-height: 48px;
    border: 1px solid #dcdce2;
    border-radius: 12px;
    background: #fafafb;
    color: #16161c;
    font-size: 14px;
    padding-right: 40px;
}

.event-fab-lead-form .form-control:focus{
    border-color: #2fbf5b;
    box-shadow: 0 0 0 3px rgba(47,191,91,0.12);
}

.event-fab-form-icon{
    position: absolute;
    right: 13px;
    top: 15px;
    color: #8a8a94;
    pointer-events: none;
}

.event-fab-phone-group .lead_selected_isd_code{
    position: absolute;
    left: 0;
    top: 0;
    width: 78px;
    height: 48px;
    border-right: 1px solid #dcdce2;
    z-index: 3;
    color: #16161c;
    padding: 6px 8px 0 12px;
    font-size: 13px;
}

.event-fab-phone-group .lead_selected_isd_code i{
    position: absolute;
    right: 8px;
    top: 17px;
}

.event-fab-phone-group #lead_isd_code{
    position: absolute;
    left: 0;
    top: 0;
    width: 78px;
    opacity: 0;
    z-index: 4;
    cursor: pointer;
}

.event-fab-phone-group input[name='lead_phone']{
    padding-left: 88px;
}

.event-fab-error-msg{
    display: none;
    color: #d92323;
    font-size: 12px;
    padding: 5px 2px 0;
}

.event-fab-submit-btn{
    width: 100%;
    min-height: 48px;
}

.event-fab-form-note{
    color: #6a6a74;
    font-size: 12px;
    margin: 7px 0 0;
    text-align: center;
}

.event-fab-form-note i{
    color: #2fbf5b;
}

.event-fab-contact-links{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 20px;
    border-top: 1px solid #f0f0f3;
    padding-top: 22px;
}

.event-fab-contact-links a{
    display: flex;
    align-items: center;
    gap: 9px;
    color: #5b5b66;
    font-size: 14.5px;
}

.event-fab-contact-links a strong{
    color: #16161c;
}

.event-fab-contact-links a i{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eafaf0;
    color: #1d9e4d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-fab-contact-links a:last-child i{
    background: #fdf3e3;
    color: #cf9433;
}

.event-fab-lead-form select.form-control{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* ---------- login/signup modal ---------- */

#login-signup-prompt .modal-content{
    border-radius: 8px;
    overflow: hidden;
}

.event-fab-login-info{
    background: #eafaf0;
    padding: 44px 28px;
}

.event-fab-login-info h2{
    color: #16211c;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 24px;
}

.event-fab-login-info ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-fab-login-info li{
    color: #27332d;
    font-size: 15px;
    margin-bottom: 12px;
}

.event-fab-login-info i{
    color: #2fbf5b;
    margin-right: 8px;
}

.event-fab-login-form{
    padding: 42px 32px;
}

#login-signup-prompt h3{
    color: #16211c;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 22px;
}

#login-signup-prompt button.close{
    position: absolute;
    right: 18px;
    top: 10px;
    font-weight: 400;
}

#login-signup-prompt .custom-btn-signin-signup{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 30px;
    background: #2fbf5b;
    color: #08210f;
    font-weight: 800;
    padding: 0 24px;
    margin-bottom: 14px;
}

#login-signup-prompt .additional-actions,
#login-signup-prompt .privacy-tnc-note{
    color: #5d666d;
    font-size: 13px;
}

#login-signup-prompt .additional-actions a,
#login-signup-prompt .privacy-tnc-note a{
    color: #1d9e4d;
}

#login-signup-prompt .form-group{
    position: relative;
}

#login-signup-prompt .signin-show-pword-ico,
#login-signup-prompt .signin-hide-pword-ico,
#login-signup-prompt .signup-show-pword-ico,
#login-signup-prompt .signup-hide-pword-ico{
    position: absolute;
    right: 12px;
    top: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #69747c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ---------- whatsapp floats ---------- */

.whatsapp-chat-desktop{
    position: fixed;
    right: 18px;
    bottom: 90px;
    width: 52px;
    z-index: 99;
}

.whatsapp-chat-mob{
    display: none;
    position: fixed;
    right: 14px;
    bottom: 80px;
    width: 48px;
    z-index: 99;
}

/*
footer.footer:not(.footer-m-bottom){
    background-color: #fff!important;
}
*/

/* ---------- responsive ---------- */
@media (max-width: 991px){
    .event-fab-hero{
        min-height: 0;
    }

    .event-fab-hero-title{
        font-size: 2.6rem;
    }

    .event-fab-section,
    .event-fab-cta-section{
        padding: 4rem 0;
    }

    .event-fab-section-title{
        font-size: 2rem;
    }

    .event-fab-service-row:nth-child(even){
        flex-direction: row;
    }

    .event-fab-service-media{
        margin-bottom: 24px;
    }

    .event-fab-service-media img{
        height: 280px;
    }

    .event-fab-ba-frame{
        height: 380px;
    }

    .event-fab-cta-section h2{
        font-size: 2.2rem;
    }
}

@media (max-width: 767px){
    .event-fab-hero-title{
        font-size: 2.1rem;
    }

    .event-fab-hero-desc{
        font-size: 1rem;
    }

    .event-fab-hero-stats{
        gap: 24px;
        margin-top: 34px;
    }

    .event-fab-hero-stats strong{
        font-size: 24px;
    }

    .event-fab-section,
    .event-fab-cta-section{
        padding: 3.4rem 0;
    }

    .event-fab-section-title{
        font-size: 1.65rem;
    }

    .event-fab-section-subtitle{
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .event-fab-logos-section .comps-logo{
        height: 65px;
        padding: 8px 12px;
    }

    .event-fab-service-row h3{
        font-size: 1.4rem;
    }

    .event-fab-service-row p{
        font-size: 0.95rem;
    }

    .event-fab-service-row{
        margin-bottom: 2.6rem;
    }

    .event-fab-service-media img{
        height: 220px;
    }

    .event-fab-journey-flow{
        display: block;
        margin-top: 22px;
    }

    .event-fab-journey-flow::before{
        top: 21px;
        bottom: 21px;
        left: 21px;
        right: auto;
        border-top: 0;
        border-left: 2px dashed rgba(47,191,91,0.65);
    }

    .event-fab-journey-flow::after,
    .event-fab-journey-turn{
        display: none;
    }

    .event-fab-journey-step{
        margin-bottom: 16px;
    }

    .event-fab-journey-step:last-child{
        margin-bottom: 0;
    }

    .event-fab-journey-card{
        min-height: 0;
        flex-direction: row;
        justify-content: flex-start;
        gap: 14px;
        padding: 18px;
        text-align: left;
    }

    .event-fab-journey-num{
        flex: 0 0 42px;
        margin: 0;
    }

    .event-fab-event-card{
        height: 150px;
    }

    .event-fab-ba-frame{
        height: 230px;
        border-radius: 16px;
    }

    .event-fab-ba-divider span{
        width: 36px;
        height: 36px;
    }

    .event-fab-cta-section h2{
        font-size: 1.75rem;
    }
    
    .event-fab-cta-actions{
        margin-top: 1rem;
    }

    .event-fab-lead-card{
        padding: 26px 18px 18px;
        border-radius: 18px;
    }

    .event-fab-contact-links{
        gap: 14px;
    }

    .event-fab-faq-section .faq-item{
        padding: 16px 18px;
    }

    .event-fab-faq-section .faq-ques{
        font-size: 15.5px;
        padding-right: 36px;
    }

    .event-fab-faq-section .faq-ans{
        font-size: 14.5px;
    }

    .whatsapp-chat-desktop{
        display: none;
    }

    .whatsapp-chat-mob{
        display: block;
    }
    
    .px-mob:nth-child(odd){
        padding-left: 15px;
        padding-right: 7.5px;
    }
    
    .px-mob:nth-child(even){
        padding-right: 15px;
        padding-left: 7.5px;
    }
    
    .event-fab-capability-pill{
        padding: 10px 5px 10px 10px;
        gap: 10px;
        word-break: break-word;
    }
}
