/* ================= HERO SECTION ================= */
.bf-hero-section{
    width:100%;
    overflow:hidden;
    margin-top:90px;
    margin-bottom:60px;
}

/* ================= HERO WRAPPER ================= */
.bf-hero-wrapper{
    position:relative;
    width:100%;
    height:75vh;
    min-height:650px;
}

/* ================= SINGLE BANNER ================= */
.bf-single-banner{
    position:absolute;
    inset:0;
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
    image-rendering:-webkit-optimize-contrast;
}

/* Overlay */
.bf-single-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,.65),
        rgba(0,0,0,.25)
    );
    z-index:1;
}

.section-subtitle{
    font-size: 22px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #070c1f;
}

/* ================= BANNER TEXT ================= */
.bf-slide-text{
    position:absolute;
    left:60px;
    bottom:230px;
    max-width:900px;
    z-index:2;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.bf-slide-text h1,
.bf-slide-text h2{
    font-family:'Roboto', sans-serif;
    font-size:2.6rem;
    font-weight:700;
    color:#ff9f1a;
    line-height:1.2;
    margin:0;
    text-shadow:0 4px 14px rgba(0,0,0,.8);
}

.bf-slide-text p{
    font-size:1.2rem;
    color:#fff;
    line-height:1.5;
    margin:0;
    text-shadow:0 3px 10px rgba(0,0,0,.7);
}

/* ================= CTA BUTTONS ================= */
.bf-cta-group{
    display:flex;
    gap:20px;
    margin-top:10px;
}

.bf-btn-primary{
    display:inline-block;
    padding:14px 28px;
    border-radius:5px;
    font-weight:600;
    color:#fff;
    text-decoration:none;
    background:#FF5733;
    transition:transform .25s ease, box-shadow .25s ease;
}

.bf-btn-primary:hover{
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

/* ================= FORM ================= */
.bfq-form-wrap{
    position:absolute;
    right:60px;
    top:50%;
    transform:translateY(-50%);
    z-index:3;
    max-width:420px;
}

.bfq-form-box{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.bfq-form-title{
    text-align:center;
    margin-bottom:15px;
    font-size:1.25rem;
    color:#111;
}

.bfq-input,
.bfq-textarea{
    width:100%;
    padding:10px 12px;
    margin-bottom:10px;
    border-radius:5px;
    border:1px solid #ccc;
}

.bfq-submit{
    width:100%;
    padding:12px;
    background:#00A3A1;
    color:#fff;
    border:none;
    border-radius:5px;
    font-weight:600;
    cursor:pointer;
}

        /* Base (desktop-first) */
            .booth-points {
                margin-top: 15px;
                margin-bottom: 20px;
            }
            
            .booth-points li {
              position: relative;
              padding-left: clamp(26px, 6vw, 35px); /* tighter on mobile, original on desktop */
              margin-bottom: clamp(10px, 3.2vw, 15px);
              font-size: clamp(14px, 4vw, 18px);     /* 14px on small phones → 18px on desktop */
              line-height: 1.6;
              font-weight: 500;
              color: #222;
            }
            
            .booth-points li::before {
              content: "✔";
              position: absolute;
              left: 0;
              top: 0.1em;                            /* better vertical alignment across sizes */
              color: #ff5722;
              font-weight: 700;
              font-size: clamp(14px, 4.2vw, 18px);
              margin-bottom: 30px; /* 👈 adds space below the list */
            }
            
            /* Extra polish for very small devices */
            @media (max-width: 480px) {
              .booth-points li {
                word-wrap: break-word;
                hyphens: auto;
              }
            }
            
            /* Optional: reduce motion users */
            @media (prefers-reduced-motion: reduce) {
              .booth-points li,
              .booth-points li::before {
                transition: none !important;
              }
            }

/* ================= RESPONSIVE ================= */
@media(max-width:1200px){
    .bf-slide-text{max-width:520px;}
    .bfq-form-wrap{max-width:360px;}
}

@media(max-width:768px){
    .bf-hero-wrapper{
        height:50vh;
        min-height:400px;
        padding-bottom:30px;
    }

    .bf-slide-text{
        left:20px;
        right:20px;
        bottom:100px;
        max-width:100%;
    }

    .bf-slide-text h1,
    .bf-slide-text h2{
        font-size:1.7rem;
        line-height:1.25;
    }

    .bf-slide-text p{
        font-size:1rem;
    }

    .bf-cta-group{
        flex-direction:column;
    }

    .bf-btn-primary{
        width:50%;
        padding:10px 18px;
        font-size:0.95rem;
        border-radius:10px;
        text-align:center;
    }

    /* mobile pe form hide */
    .bfq-form-wrap{
        display:none;
    }
    
    .bf-hero-section{
        margin-bottom: 0 !important;
    }
    
    .faq-questions-section {
        margin: 0px 10px;
    }
    
    .section-subtitle{
        font-size: 18px;
    }
}