/* ============================================================
   BISWASRAJ FLOORING - HOMEPAGE REDESIGN CSS
   Premium Industrial Corporate Design
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --bsf-primary: #0B2545;
    --bsf-primary-light: #13315C;
    --bsf-primary-dark: #061A33;
    --bsf-accent: #E8872A;
    --bsf-accent-hover: #D4741A;
    --bsf-accent-light: #FFF3E6;
    --bsf-gold: #C8962E;
    --bsf-white: #FFFFFF;
    --bsf-light: #F5F7FA;
    --bsf-light-alt: #EEF1F6;
    --bsf-gray: #6B7280;
    --bsf-gray-light: #9CA3AF;
    --bsf-text-dark: #1B1B2F;
    --bsf-text-body: #4A4A5A;
    --bsf-border: #E2E8F0;
    --bsf-shadow-sm: 0 2px 8px rgba(11,37,69,0.06);
    --bsf-shadow-md: 0 4px 20px rgba(11,37,69,0.10);
    --bsf-shadow-lg: 0 8px 40px rgba(11,37,69,0.14);
    --bsf-shadow-xl: 0 16px 60px rgba(11,37,69,0.18);
    --bsf-radius: 12px;
    --bsf-radius-lg: 20px;
    --bsf-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Homepage Overrides --- */
.bsf-homepage .auto-container {
    max-width: 1240px;
    padding: 0 20px;
}

.bsf-homepage section {
    position: relative;
    overflow: hidden;
}

/* --- Section Title Styles --- */
.bsf-section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.bsf-section-title .bsf-subtitle {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bsf-accent);
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.bsf-section-title .bsf-subtitle::before,
.bsf-section-title .bsf-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--bsf-accent);
}

.bsf-section-title .bsf-subtitle::before { left: -20px; }
.bsf-section-title .bsf-subtitle::after { right: -20px; }

.bsf-section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--bsf-primary);
    line-height: 1.3;
    margin: 0;
}

.bsf-section-title p {
    font-size: 19px;
    color: var(--bsf-gray);
    max-width: 600px;
    margin: 15px auto 0;
    line-height: 1.7;
}

/* ============================================================
   1. HERO / BANNER SECTION
   ============================================================ */
.bsf-hero {
    position: relative;
    background: var(--bsf-primary-dark);
    padding: 0 !important;
    margin: 0;
}

.bsf-hero .carousel-inner .item img {
    width: 100%;
    min-height: 550px;
    max-height: 700px;
    object-fit: cover;
    filter: brightness(0.55);
}

.bsf-hero .bsf-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(11,37,69,0.80) 0%, rgba(19,49,92,0.50) 50%, rgba(11,37,69,0.70) 100%);
    pointer-events: none;
}

.bsf-hero .bsf-hero-content {
    pointer-events: all;
    max-width: 700px;
    padding: 0 60px;
    animation: bsfFadeInUp 1s ease-out;
}

.bsf-hero .bsf-hero-badge {
    display: inline-block;
    background: rgba(232,135,42,0.2);
    border: 1px solid rgba(232,135,42,0.5);
    color: var(--bsf-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.bsf-hero .bsf-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--bsf-white);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.bsf-hero .bsf-hero-title span {
    color: var(--bsf-accent);
}

.bsf-hero .bsf-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 35px;
}

.bsf-hero .bsf-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bsf-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bsf-accent);
    color: var(--bsf-white) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: var(--bsf-transition);
    border: 2px solid var(--bsf-accent);
    box-shadow: 0 4px 15px rgba(232,135,42,0.35);
}

.bsf-btn-primary:hover {
    background: var(--bsf-accent-hover);
    border-color: var(--bsf-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232,135,42,0.45);
    color: var(--bsf-white) !important;
    text-decoration: none !important;
}

.bsf-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--bsf-white) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: var(--bsf-transition);
    border: 2px solid rgba(255,255,255,0.4);
}

.bsf-btn-outline:hover {
    background: var(--bsf-white);
    color: var(--bsf-primary) !important;
    border-color: var(--bsf-white);
    transform: translateY(-2px);
    text-decoration: none !important;
}

.bsf-hero .carousel-control {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(5px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-shadow: none;
    transition: var(--bsf-transition);
}

.bsf-hero .carousel-control:hover {
    background: rgba(255,255,255,0.3) !important;
    opacity: 1;
}

.bsf-hero .carousel-control.left { left: 30px; }
.bsf-hero .carousel-control.right { right: 30px; }

.bsf-hero .carousel-control .glyphicon {
    font-size: 18px;
    position: static;
    margin: 0;
    width: auto;
    height: auto;
}

/* Trust Bar */
.bsf-trust-bar {
    background: var(--bsf-primary);
    padding: 0;
    position: relative;
    z-index: 10;
}

.bsf-trust-bar .bsf-trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bsf-trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 28px 20px;
    transition: background 0.3s ease;
}

.bsf-trust-item:hover {
    background: rgba(255,255,255,0.05);
}

.bsf-trust-item .bsf-trust-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--bsf-accent);
    line-height: 1;
}

.bsf-trust-item .bsf-trust-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bsf-trust-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* ============================================================
   2. ABOUT US SECTION
   ============================================================ */
.bsf-about {
    padding: 90px 0;
    background: var(--bsf-white);
}

.bsf-about .bsf-about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.bsf-about .bsf-about-content {
    flex: 1;
}

.bsf-about .bsf-about-content .bsf-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bsf-accent);
    margin-bottom: 12px;
}

.bsf-about .bsf-about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--bsf-primary);
    line-height: 1.3;
    margin-bottom: 20px;
}

.bsf-about .bsf-about-content .bsf-about-text {
    font-size: 16px;
    color: var(--bsf-text-body);
    line-height: 1.8;
    margin-bottom: 30px;
}

.bsf-about .bsf-about-content .bsf-about-text p {
    margin-bottom: -20px;
    color: var(--bsf-text-body);
    line-height: 1.8;
    font-size: 18px;
}

.bsf-about .bsf-about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.bsf-about .bsf-highlight-item {
    display: flex;
    align-items: center;
    gap: 17px;
    font-size: 20px;
    font-weight: 600;
    color: var(--bsf-primary);
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: default;
}

.bsf-about .bsf-highlight-item:hover {
    background: var(--bsf-accent-light);
    transform: translateX(5px);
}

.bsf-about .bsf-highlight-item .bsf-check {
    width: 26px;
    height: 26px;
    background: var(--bsf-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bsf-accent);
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bsf-about .bsf-highlight-item:hover .bsf-check {
    background: var(--bsf-accent);
    color: var(--bsf-white);
    transform: rotate(360deg);
}

.bsf-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bsf-primary);
    color: var(--bsf-white) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: var(--bsf-transition);
    border: none;
}

.bsf-btn-dark:hover {
    background: var(--bsf-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232,135,42,0.35);
    color: var(--bsf-white) !important;
    text-decoration: none !important;
}

.bsf-btn-dark .fa {
    transition: transform 0.3s ease;
}

.bsf-btn-dark:hover .fa {
    transform: translateX(5px);
}

.bsf-about .bsf-about-image {
    flex: 1;
    position: relative;
}

.bsf-about .bsf-about-image img {
    width: 100%;
    border-radius: var(--bsf-radius-lg);
    box-shadow: var(--bsf-shadow-lg);
    object-fit: cover;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.bsf-about .bsf-about-image:hover img {
    transform: scale(1.03);
    box-shadow: var(--bsf-shadow-xl);
}

.bsf-about .bsf-about-image .bsf-experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bsf-accent);
    color: var(--bsf-white);
    padding: 20px 25px;
    border-radius: var(--bsf-radius);
    text-align: center;
    box-shadow: var(--bsf-shadow-lg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bsf-about .bsf-about-image:hover .bsf-experience-badge {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(232,135,42,0.4);
}

.bsf-about .bsf-experience-badge .bsf-exp-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.bsf-about .bsf-experience-badge .bsf-exp-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   3. SERVICES SECTION
   ============================================================ */
.bsf-services {
    padding: 90px 0;
    background: var(--bsf-light);
}

/* Service card - full override */
.bsf-services .service-block {
    padding: 0 10px;
}

.bsf-services .service-block .inner-box {
    background: var(--bsf-white);
    border-radius: var(--bsf-radius);
    overflow: hidden;
    box-shadow: var(--bsf-shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--bsf-border);
    margin: 10px 0 20px;
}

.bsf-services .service-block .inner-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--bsf-shadow-xl);
    border-color: var(--bsf-accent);
}

/* Image */
.bsf-services .service-block .image-box {
    position: relative;
}

.bsf-services .service-block .image {
    overflow: hidden;
    border-radius: var(--bsf-radius) var(--bsf-radius) 0 0;
}

.bsf-services .service-block .image img {
    width: 100% !important;
    height: 230px !important;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bsf-services .service-block .inner-box:hover .image img {
    transform: scale(1.1);
}

/* Lower content - remove old orange overlay */
.bsf-services .service-block .lower-content {
    position: relative;
    padding: 30px 20px 25px !important;
    padding-right: 20px !important;
    text-align: center;
    background: var(--bsf-white) !important;
    border: none !important;
    border-top: 3px solid var(--bsf-accent) !important;
}

.bsf-services .service-block .lower-content::before {
    display: none !important;
}

/* Icon box - clean circle */
.bsf-services .service-block .lower-content .icon-box {
    position: absolute !important;
    top: -20px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--bsf-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(232,135,42,0.3);
    transition: all 0.4s ease;
}

.bsf-services .service-block .lower-content .icon-box::before,
.bsf-services .service-block .lower-content .icon-box::after {
    display: none !important;
}

.bsf-services .service-block .lower-content .icon-box a {
    color: var(--bsf-white) !important;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.bsf-services .service-block .lower-content .icon-box .icon {
    color: var(--bsf-white) !important;
    background: none !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
}

.bsf-services .service-block .inner-box:hover .lower-content .icon-box {
    background: var(--bsf-primary);
    transform: translateX(-50%) rotate(360deg) scale(1.1);
}

/* Title */
.bsf-services .service-block .lower-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 0;
}

.bsf-services .service-block .lower-content h3 a {
    color: var(--bsf-primary) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bsf-services .service-block .inner-box:hover .lower-content h3 a {
    color: var(--bsf-accent) !important;
}

/* Description */
.bsf-services .service-block .lower-content p {
    color: var(--bsf-gray) !important;
    font-size: 16px;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* OWL Carousel Dots */
.bsf-services .services-carousel .owl-dots {
    position: relative !important;
    bottom: auto !important;
    text-align: center;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.bsf-services .services-carousel .owl-dots .owl-dot {
    width: 10px !important;
    height: 10px !important;
    background: var(--bsf-border) !important;
    border-radius: 50% !important;
    display: inline-block;
    margin: 0 !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bsf-services .services-carousel .owl-dots .owl-dot:hover {
    background: var(--bsf-gray-light) !important;
}

.bsf-services .services-carousel .owl-dots .owl-dot.active {
    background: var(--bsf-accent) !important;
    width: 28px !important;
    border-radius: 5px !important;
}

/* OWL Nav Arrows */
.bsf-services .owl-nav .owl-prev,
.bsf-services .owl-nav .owl-next {
    background: var(--bsf-primary) !important;
    color: var(--bsf-white) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.bsf-services .owl-nav .owl-prev:hover,
.bsf-services .owl-nav .owl-next:hover {
    background: var(--bsf-accent) !important;
}

/* ============================================================
   4. FUN FACTS / COUNTER SECTION
   ============================================================ */
.bsf-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bsf-primary) 0%, var(--bsf-primary-light) 100%);
    position: relative;
}

.bsf-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    background-size: 30px 30px;
}

.bsf-stats .auto-container {
    position: relative;
    z-index: 2;
}

.bsf-stats .title-column .inner-column h3 {
    color: var(--bsf-white) !important;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.bsf-stats .title-column .inner-column h3 br + br { display: none; }

.bsf-stats .counter-column .count-box {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--bsf-radius);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--bsf-transition);
}

.bsf-stats .counter-column .count-box:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-5px);
}

.bsf-stats .counter-column .count-box .icon {
    font-size: 36px;
    color: var(--bsf-accent);
    margin-bottom: 15px;
    display: block;
}

.bsf-stats .counter-column .count-box .count-text {
    font-size: 42px;
    font-weight: 800;
    color: var(--bsf-white);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.bsf-stats .counter-column .count-box .counter-title {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin: 0;
}

/* ============================================================
   5. WHY CHOOSE US SECTION
   ============================================================ */
.bsf-why-choose {
    padding: 90px 0;
    background: var(--bsf-white);
}

.bsf-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.bsf-why-card {
    background: var(--bsf-white);
    border: 1px solid var(--bsf-border);
    border-radius: var(--bsf-radius);
    padding: 35px 20px;
    text-align: center;
    transition: var(--bsf-transition);
    position: relative;
    overflow: hidden;
}

.bsf-why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bsf-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.bsf-why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bsf-shadow-lg);
    border-color: transparent;
}

.bsf-why-card:hover::before {
    transform: scaleX(1);
}

.bsf-why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--bsf-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--bsf-accent);
    transition: var(--bsf-transition);
}

.bsf-why-card:hover .bsf-why-icon {
    background: var(--bsf-accent);
    color: var(--bsf-white);
    transform: rotateY(180deg);
}

.bsf-why-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--bsf-primary);
    margin-bottom: 10px;
}

.bsf-why-card p {
    font-size: 15px;
    color: var(--bsf-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   6. GALLERY SECTION
   ============================================================ */
.bsf-gallery {
    padding: 90px 0;
    background: var(--bsf-light);
}

.bsf-filter-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
}

.bsf-filter-btns .bsf-filter-btn {
    display: inline-block;
    background: var(--bsf-white);
    color: var(--bsf-text-body);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--bsf-transition);
    border: 1px solid var(--bsf-border);
}

.bsf-filter-btns .bsf-filter-btn:hover,
.bsf-filter-btns .bsf-filter-btn.active {
    background: var(--bsf-primary);
    color: var(--bsf-white);
    border-color: var(--bsf-primary);
}

.bsf-gallery .project-block .inner-box {
    border-radius: var(--bsf-radius);
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--bsf-shadow-sm);
    transition: var(--bsf-transition);
}

.bsf-gallery .project-block .inner-box:hover {
    box-shadow: var(--bsf-shadow-lg);
    transform: translateY(-5px);
}

.bsf-gallery .project-block {
    margin-bottom: 25px;
}

.bsf-gallery .project-block .image-box figure img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bsf-gallery .project-block .inner-box:hover .image-box figure img {
    transform: scale(1.1);
}

.bsf-gallery .project-block .overlay-box {
    background: linear-gradient(to top, rgba(11,37,69,0.9) 0%, rgba(11,37,69,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--bsf-transition);
}

.bsf-gallery .project-block .inner-box:hover .overlay-box {
    opacity: 1;
}

.bsf-gallery .project-block .overlay-box .content h3 a {
    color: var(--bsf-white) !important;
    font-size: 18px;
    font-weight: 600;
}

.bsf-gallery .project-block .overlay-box .icon-box a {
    width: 40px;
    height: 40px;
    background: var(--bsf-accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bsf-white) !important;
    margin-right: 8px;
    transition: var(--bsf-transition);
}

.bsf-gallery .project-block .overlay-box .icon-box a:hover {
    background: var(--bsf-white);
    color: var(--bsf-primary) !important;
}

.bsf-gallery .link-box {
    text-align: center;
    margin-top: 20px;
}

.bsf-gallery .link-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bsf-primary);
    color: var(--bsf-white) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: var(--bsf-transition);
}

.bsf-gallery .link-box a:hover {
    background: var(--bsf-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232,135,42,0.3);
}

/* ============================================================
   7. FAQ SECTION
   ============================================================ */
.bsf-faq {
    padding: 90px 0;
    background: var(--bsf-white);
}

.bsf-faq-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.bsf-faq-content {
    flex: 1;
}

.bsf-faq-sidebar {
    flex: 0 0 380px;
    background: linear-gradient(135deg, var(--bsf-primary) 0%, var(--bsf-primary-light) 100%);
    border-radius: var(--bsf-radius-lg);
    padding: 40px;
    color: var(--bsf-white);
    text-align: center;
}

.bsf-faq-sidebar h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--bsf-white);
}

.bsf-faq-sidebar p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.bsf-faq-sidebar .bsf-btn-primary {
    width: 100%;
    justify-content: center;
}

.bsf-accordion-item {
    border: 1px solid var(--bsf-border);
    border-radius: var(--bsf-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--bsf-transition);
}

.bsf-accordion-item.active {
    border-color: var(--bsf-accent);
    box-shadow: 0 2px 12px rgba(232,135,42,0.1);
}

.bsf-accordion-header {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--bsf-primary);
    background: var(--bsf-white);
    transition: var(--bsf-transition);
    user-select: none;
}

.bsf-accordion-header:hover {
    background: var(--bsf-light);
}

.bsf-accordion-item.active .bsf-accordion-header {
    background: var(--bsf-accent-light);
    color: var(--bsf-accent);
}

.bsf-accordion-icon {
    width: 28px;
    height: 28px;
    background: var(--bsf-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--bsf-primary);
    transition: var(--bsf-transition);
    flex-shrink: 0;
}

.bsf-accordion-item.active .bsf-accordion-icon {
    background: var(--bsf-accent);
    color: var(--bsf-white);
    transform: rotate(180deg);
}

.bsf-accordion-body {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.bsf-accordion-item.active .bsf-accordion-body {
    padding: 0 24px 20px;
    max-height: 300px;
}

.bsf-accordion-body p {
    font-size: 15px;
    color: var(--bsf-text-body);
    line-height: 1.8;
    margin: 0;
}

/* ============================================================
   8. CONTACT / ENQUIRY FORM SECTION
   ============================================================ */
.bsf-contact-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--bsf-primary-dark) 0%, var(--bsf-primary) 60%, var(--bsf-primary-light) 100%);
    position: relative;
}

.bsf-contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,26,51,0.95);
    z-index: 1;
}

.bsf-contact-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.bsf-contact-info {
    flex: 1;
    color: var(--bsf-white);
}

.bsf-contact-info .bsf-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bsf-accent);
    margin-bottom: 12px;
}

.bsf-contact-info h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--bsf-white) !important;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.bsf-contact-info p {
    font-size: 16px;
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.8;
    margin-bottom: 30px;
}

.bsf-contact-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bsf-contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bsf-contact-feature .bsf-cf-icon {
    width: 44px;
    height: 44px;
    background: rgba(232,135,42,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bsf-accent);
    flex-shrink: 0;
}

.bsf-contact-feature span {
    font-size: 14px;
    font-weight: 600;
    color: var(--bsf-text-dark) !important;
}

.bsf-contact-form-wrap {
    flex: 0 0 480px;
}

.bsf-contact-form-card {
    background: var(--bsf-white);
    border-radius: var(--bsf-radius-lg);
    padding: 40px;
    box-shadow: var(--bsf-shadow-xl);
}

.bsf-contact-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--bsf-primary);
    margin-bottom: 8px;
    text-align: center;
}

.bsf-contact-form-card .bsf-form-subtitle {
    font-size: 14px;
    color: var(--bsf-gray);
    text-align: center;
    margin-bottom: 25px;
}

.bsf-contact-form-card .form-group {
    margin-bottom: 18px;
}

.bsf-contact-form-card .form-group input,
.bsf-contact-form-card .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--bsf-text-dark);
    background: var(--bsf-light);
    border: 2px solid transparent;
    border-radius: 10px;
    outline: none;
    transition: var(--bsf-transition);
    font-family: inherit;
}

.bsf-contact-form-card .form-group input:focus,
.bsf-contact-form-card .form-group textarea:focus {
    border-color: var(--bsf-accent);
    background: var(--bsf-white);
    box-shadow: 0 0 0 4px rgba(232,135,42,0.1);
}

.bsf-contact-form-card .form-group textarea {
    height: 110px;
    resize: vertical;
}

.bsf-contact-form-card .form-group input::placeholder,
.bsf-contact-form-card .form-group textarea::placeholder {
    color: var(--bsf-gray-light);
}

.bsf-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--bsf-accent);
    color: var(--bsf-white) !important;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--bsf-transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.bsf-submit-btn:hover {
    background: var(--bsf-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232,135,42,0.4);
}

.bsf-submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.bsf-submit-btn:active::after {
    width: 300px;
    height: 300px;
}

/* ============================================================
   9. TESTIMONIAL SECTION
   ============================================================ */
.bsf-testimonials {
    padding: 90px 0;
    background: var(--bsf-light);
}

/* Testimonial card - full override */
.bsf-testimonials .testimonial-carousel {
    padding-bottom: 50px;
}

.bsf-testimonials .testimonial-block .inner-box {
    background: var(--bsf-white) !important;
    border-radius: var(--bsf-radius);
    padding: 35px 30px 30px !important;
    padding-left: 30px !important;
    box-shadow: var(--bsf-shadow-sm);
    border: 1px solid var(--bsf-border);
    margin: 10px;
    transition: var(--bsf-transition);
    position: relative;
    min-height: auto !important;
    text-align: center;
}

.bsf-testimonials .testimonial-block .inner-box::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 80px;
    color: var(--bsf-accent);
    opacity: 0.12;
    font-family: Georgia, serif;
    line-height: 1;
}

.bsf-testimonials .testimonial-block .inner-box:hover {
    box-shadow: var(--bsf-shadow-lg);
    border-color: var(--bsf-accent);
    transform: translateY(-5px);
}

/* Thumb - centered, not absolute */
.bsf-testimonials .testimonial-block .thumb {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 75px !important;
    height: 75px !important;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--bsf-accent);
    margin: 0 auto 20px !important;
    box-shadow: 0 4px 15px rgba(232,135,42,0.2);
}

.bsf-testimonials .testimonial-block .thumb::before {
    display: none !important;
}

.bsf-testimonials .testimonial-block .thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 50%;
}

/* Text */
.bsf-testimonials .testimonial-block .text {
    font-size: 15px;
    color: var(--bsf-text-body) !important;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

/* Info - name & designation */
.bsf-testimonials .testimonial-block .info {
    border-top: 1px solid var(--bsf-border);
    padding-top: 15px;
}

.bsf-testimonials .testimonial-block .info .name {
    font-size: 17px !important;
    font-weight: 700;
    color: var(--bsf-primary) !important;
    display: block !important;
    margin-right: 0 !important;
    margin-bottom: 3px;
}

.bsf-testimonials .testimonial-block .info .designation {
    font-size: 13px !important;
    color: var(--bsf-accent) !important;
    font-weight: 600;
    display: block !important;
}

/* OWL Dots for Testimonials */
.bsf-testimonials .testimonial-carousel .owl-dots {
    position: relative !important;
    bottom: auto !important;
    text-align: center;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.bsf-testimonials .testimonial-carousel .owl-dots .owl-dot {
    width: 10px !important;
    height: 10px !important;
    background: var(--bsf-border) !important;
    border-radius: 50% !important;
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
    transition: all 0.3s ease;
}

.bsf-testimonials .testimonial-carousel .owl-dots .owl-dot:hover {
    background: var(--bsf-gray-light) !important;
}

.bsf-testimonials .testimonial-carousel .owl-dots .owl-dot.active {
    background: var(--bsf-accent) !important;
    width: 28px !important;
    border-radius: 5px !important;
}

/* ============================================================
   10. BLOG SECTION
   ============================================================ */
.bsf-blogs {
    padding: 90px 0;
    background: var(--bsf-white);
}

/* Blog cards - equal height row */
.bsf-blogs .row {
    display: flex;
    flex-wrap: wrap;
}

/* Blog cards - full override */
.bsf-blogs .news-block {
    margin-bottom: 30px !important;
    display: flex;
    float: none !important;
}

.bsf-blogs .news-block .inner-box {
    background: var(--bsf-white);
    border-radius: var(--bsf-radius);
    overflow: hidden;
    box-shadow: var(--bsf-shadow-sm);
    border: 1px solid var(--bsf-border);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bsf-blogs .news-block .content-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bsf-blogs .news-block .content-box .link-box {
    margin-top: auto;
}

.bsf-blogs .news-block .inner-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--bsf-shadow-lg);
    border-color: var(--bsf-accent);
}

/* Image */
.bsf-blogs .news-block .image-box {
    overflow: hidden;
    position: relative;
    border-radius: var(--bsf-radius) var(--bsf-radius) 0 0;
}

.bsf-blogs .news-block .image-box a {
    display: block;
}

.bsf-blogs .news-block .image-box img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.bsf-blogs .news-block .inner-box:hover .image-box img {
    transform: scale(1.08);
}

/* Date badge */
.bsf-blogs .news-block .image-box .date {
    position: absolute;
    top: 15px;
    left: 15px;
    right: auto !important;
    bottom: auto !important;
    background: var(--bsf-accent) !important;
    color: var(--bsf-white) !important;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    line-height: 1.3;
    z-index: 2;
}

/* Content box */
.bsf-blogs .news-block .content-box {
    padding: 22px !important;
    border-bottom: none !important;
}

.bsf-blogs .news-block .inner-box:hover .content-box {
    border-bottom: none !important;
}

/* Title */
.bsf-blogs .news-block .content-box h3 {
    font-size: 17px !important;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.bsf-blogs .news-block .content-box h3 a {
    color: var(--bsf-primary) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bsf-blogs .news-block .inner-box:hover .content-box h3 a {
    color: var(--bsf-accent) !important;
}

/* Info */
.bsf-blogs .news-block .content-box .info {
    margin-bottom: 10px;
    padding: 0;
    list-style: none;
}

.bsf-blogs .news-block .content-box .info li {
    font-size: 13px;
    color: var(--bsf-gray) !important;
}

.bsf-blogs .news-block .content-box .info li a {
    color: var(--bsf-accent) !important;
    font-weight: 600;
    text-decoration: none;
}

/* Text */
.bsf-blogs .news-block .content-box .text {
    font-size: 14px;
    color: var(--bsf-text-body) !important;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Read More link */
.bsf-blogs .news-block .content-box .link-box {
    padding: 0 !important;
}

.bsf-blogs .news-block .content-box .link-box a {
    font-size: 14px !important;
    font-weight: 600;
    color: var(--bsf-accent) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.bsf-blogs .news-block .content-box .link-box a:hover {
    color: var(--bsf-primary) !important;
    gap: 10px;
}

.bsf-blogs .news-block .content-box .link-box a::after {
    content: '\f105';
    font-family: FontAwesome;
    font-size: 16px;
}

/* ============================================================
   11. CLIENTS SECTION
   ============================================================ */
.bsf-clients {
    padding: 70px 0;
    background: var(--bsf-light);
}

.bsf-clients .sponsors-carousel .slide-item .image-box {
    background: var(--bsf-white);
    padding: 15px 25px;
    border-radius: var(--bsf-radius);
    border: 1px solid var(--bsf-border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: var(--bsf-transition);
    margin: 5px;
}

.bsf-clients .sponsors-carousel .slide-item .image-box:hover {
    box-shadow: var(--bsf-shadow-md);
    border-color: var(--bsf-accent);
}

.bsf-clients .sponsors-carousel .slide-item .image-box img {
    max-height: 80px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    transition: var(--bsf-transition);
}

@keyframes bsfPulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,135,42,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(232,135,42,0); }
}

/* ============================================================
   12. HEADER RESET & UPPER
   ============================================================ */
body.bsf-homepage .header-style-one .header-top {
    margin-top: 0 !important;
    bottom: 0 !important;
}

body.bsf-homepage .header-style-one .header-upper {
    bottom: 0 !important;
}

body.bsf-homepage .header-style-one .header-lower {
    bottom: 0 !important;
}

/* Hide original logo from header-upper since it's now in the nav */
body.bsf-homepage .header-upper .pull-left.logo-outer1 {
    display: none !important;
}

body.bsf-homepage .header-upper {
    background: var(--bsf-primary-dark) !important;
    border-bottom: none;
    padding: 12px 0 !important;
    position: relative !important;
    bottom: 0 !important;
}

body.bsf-homepage .header-upper .auto-container > .clearfix {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.bsf-homepage .header-upper .pull-right.upper-right {
    float: none !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 !important;
}

/* Info box - complete restyle */
body.bsf-homepage .header-upper .info-box {
    float: none !important;
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 0 !important;
    padding-left: 0 !important;
    margin: 0 !important;
    min-height: auto !important;
    position: relative;
}

body.bsf-homepage .header-upper .info-box .icon-box {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 42px;
    height: 42px;
    line-height: 42px !important;
    background: rgba(232,135,42,0.15);
    border: none !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

body.bsf-homepage .header-upper .info-box:hover .icon-box {
    background: var(--bsf-accent);
}

body.bsf-homepage .header-upper .info-box .icon-box span {
    color: var(--bsf-accent) !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

body.bsf-homepage .header-upper .info-box:hover .icon-box span {
    color: var(--bsf-white) !important;
}

body.bsf-homepage .header-upper .info-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.bsf-homepage .header-upper .info-box ul li {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.3;
    font-weight: 400;
}

body.bsf-homepage .header-upper .info-box ul li strong,
body.bsf-homepage .header-upper .info-box strong {
    color: var(--bsf-white) !important;
    font-weight: 600;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    line-height: 1.3 !important;
}

body.bsf-homepage .header-upper .info-box ul li a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

body.bsf-homepage .header-upper .info-box ul li a:hover {
    color: var(--bsf-accent) !important;
}

/* Social icons in header upper */
body.bsf-homepage .header-upper .social-links {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

body.bsf-homepage .header-upper .social-links a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px !important;
    height: 34px !important;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.bsf-homepage .header-upper .social-links img {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50%;
    object-fit: cover;
}

body.bsf-homepage .header-upper .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ============================================================
   13. NAVIGATION BAR (Header Lower) - Logo + Menu
   ============================================================ */
body.bsf-homepage .header-lower {
    background: var(--bsf-white) !important;
    position: relative !important;
    bottom: 0 !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

body.bsf-homepage .header-lower .nav-outer {
    background: var(--bsf-white) !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Nav Logo inside the navbar */
body.bsf-homepage .bsf-nav-logo {
    flex-shrink: 0;
    padding: 4px 25px 4px 0;
    display: flex;
    align-items: center;
}

body.bsf-homepage .bsf-nav-logo a {
    display: flex;
    align-items: center;
}

body.bsf-homepage .bsf-nav-logo img {
    height: 70px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

body.bsf-homepage .header-lower .main-menu::before,
body.bsf-homepage .header-lower .main-menu::after {
    background-color: var(--bsf-white) !important;
}

body.bsf-homepage .header-lower .main-menu::before {
    display: none !important;
}

body.bsf-homepage .main-menu {
    flex: 1;
}

body.bsf-homepage .main-menu .navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 0;
    width: 100%;
    margin: 0;
}

body.bsf-homepage .main-menu .navigation > li {
    margin-right: 0;
    padding: 0;
    float: none;
}

body.bsf-homepage .main-menu .navigation > li > a {
    color: var(--bsf-primary) !important;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    position: relative;
}

body.bsf-homepage .main-menu .navigation > li.current > a {
    padding-right: 18px;
}

/* Remove old orange active arrow */
body.bsf-homepage .main-menu .navigation > li > a::after,
body.bsf-homepage .main-menu .navigation > li.current > a::after {
    display: none !important;
    content: none !important;
}

/* Hover bottom line effect */
body.bsf-homepage .main-menu .navigation > li > a::before {
    content: '' !important;
    position: absolute !important;
    bottom: 10px !important;
    top: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 0 !important;
    height: 3px !important;
    background: var(--bsf-accent) !important;
    transition: width 0.3s ease !important;
    border-radius: 3px !important;
}

body.bsf-homepage .main-menu .navigation > li:hover > a::before,
body.bsf-homepage .main-menu .navigation > li.current > a::before {
    width: 60% !important;
}

body.bsf-homepage .main-header .main-menu .navigation > li:hover > a,
body.bsf-homepage .main-header .main-menu .navigation > li.current > a,
body.bsf-homepage .main-header .main-menu .navigation > li.current-menu-item > a {
    color: var(--bsf-accent) !important;
    background: none !important;
}

/* --- Dropdown Menus --- */
body.bsf-homepage .main-menu .navigation > li > ul {
    background: var(--bsf-white);
    border: none;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--bsf-shadow-lg);
    border-top: 3px solid var(--bsf-accent);
    padding: 8px 0;
    min-width: 240px;
}

body.bsf-homepage .main-menu .navigation > li > ul > li > a {
    color: var(--bsf-text-dark) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    transition: all 0.3s ease;
    border-bottom: none !important;
}

body.bsf-homepage .main-menu .navigation > li > ul > li:hover > a {
    background: var(--bsf-light);
    color: var(--bsf-accent) !important;
    padding-left: 28px;
}

body.bsf-homepage .main-menu .navigation > li > ul > li > ul {
    background: var(--bsf-white);
    border: none;
    border-radius: 8px;
    box-shadow: var(--bsf-shadow-lg);
    border-top: 3px solid var(--bsf-accent);
    padding: 8px 0;
}

body.bsf-homepage .main-menu .navigation > li > ul > li > ul > li > a {
    color: var(--bsf-text-dark) !important;
    font-size: 13px;
    padding: 8px 20px;
}

body.bsf-homepage .main-menu .navigation > li > ul > li > ul > li > a:hover {
    color: var(--bsf-accent) !important;
    background: var(--bsf-light);
}

/* --- Enquiry CTA Button in Nav --- */
body.bsf-homepage .main-menu .navigation > li.bsf-nav-enquiry {
    margin-left: 15px;
    padding: 0;
}

body.bsf-homepage .main-menu .navigation > li.bsf-nav-enquiry > a {
    background: var(--bsf-accent) !important;
    color: var(--bsf-white) !important;
    padding: 11px 28px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    animation: bsfPulseGlow 2.5s infinite;
    margin: 6px 0;
    line-height: 20px;
    border: 2px solid var(--bsf-accent);
}

body.bsf-homepage .main-menu .navigation > li.bsf-nav-enquiry > a::before {
    display: none !important;
}

body.bsf-homepage .main-menu .navigation > li.bsf-nav-enquiry > a:hover {
    background: var(--bsf-primary) !important;
    color: var(--bsf-white) !important;
    border-color: var(--bsf-primary);
    animation: none;
    box-shadow: 0 4px 20px rgba(11,37,69,0.3);
}

/* --- Sticky Header --- */
body.bsf-homepage .sticky-header {
    background: var(--bsf-white) !important;
    box-shadow: var(--bsf-shadow-md);
}

body.bsf-homepage .sticky-header .auto-container {
    display: flex;
    align-items: center;
}

body.bsf-homepage .sticky-header .logo.pull-left {
    flex-shrink: 0;
    padding: 5px 20px 5px 0;
    float: none !important;
}

body.bsf-homepage .sticky-header .logo.pull-left img {
    height: 50px;
    width: auto;
}

body.bsf-homepage .sticky-header .right-col.pull-right {
    flex: 1;
    float: none !important;
    display: flex;
    justify-content: flex-end;
}

body.bsf-homepage .sticky-header .main-menu {
    float: none !important;
}

body.bsf-homepage .sticky-header .main-menu .navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 0;
    margin: 0;
}

body.bsf-homepage .sticky-header .main-menu .navigation > li {
    float: none;
    margin-right: 0;
}

body.bsf-homepage .main-header .sticky-header .main-menu .navigation > li > a {
    color: var(--bsf-primary) !important;
    font-size: 14px;
    font-weight: 700;
    padding: 22px 18px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    background: none !important;
}

body.bsf-homepage .sticky-header .main-menu .navigation > li > a::before,
body.bsf-homepage .sticky-header .main-menu .navigation > li > a::after,
body.bsf-homepage .sticky-header .main-menu .navigation > li.current > a::after,
body.bsf-homepage .sticky-header .main-menu::before,
body.bsf-homepage .sticky-header .main-menu::after {
    display: none !important;
}

body.bsf-homepage .main-header .sticky-header .main-menu .navigation > li:hover > a,
body.bsf-homepage .main-header .sticky-header .main-menu .navigation > li.current > a,
body.bsf-homepage .main-header .sticky-header .main-menu .navigation > li.current-menu-item > a {
    color: var(--bsf-accent) !important;
    background: none !important;
}

/* Sticky Enquiry Button */
body.bsf-homepage .sticky-header .main-menu .navigation > li.bsf-nav-enquiry {
    margin-left: 10px;
}

body.bsf-homepage .sticky-header .main-menu .navigation > li.bsf-nav-enquiry > a {
    background: var(--bsf-accent) !important;
    color: var(--bsf-white) !important;
    padding: 11px 28px !important;
    border-radius: 50px !important;
    margin: 6px 0;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--bsf-accent);
    animation: bsfPulseGlow 2.5s infinite;
}

body.bsf-homepage .sticky-header .main-menu .navigation > li.bsf-nav-enquiry > a:hover {
    background: var(--bsf-primary) !important;
    color: var(--bsf-white) !important;
    border-color: var(--bsf-primary);
    animation: none;
}

/* Sticky Dropdown */
body.bsf-homepage .sticky-header .main-menu .navigation > li > ul {
    background: var(--bsf-white);
    border: none;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--bsf-shadow-lg);
    border-top: 3px solid var(--bsf-accent);
    padding: 8px 0;
}

body.bsf-homepage .sticky-header .main-menu .navigation > li > ul > li > a {
    color: var(--bsf-text-dark) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
}

body.bsf-homepage .sticky-header .main-menu .navigation > li > ul > li:hover > a {
    background: var(--bsf-light);
    color: var(--bsf-accent) !important;
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.bsf-footer {
    background: var(--bsf-primary-dark) !important;
    color: rgba(255,255,255,0.8);
    padding-top: 60px;
}

.bsf-footer .widget-title {
    color: var(--bsf-white) !important;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
}

.bsf-footer .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--bsf-accent);
    border-radius: 2px;
}

/* About widget */
.bsf-footer .about-widget .text {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.bsf-footer .about-widget .text p {
    color: rgba(255,255,255,0.7);
}

/* ISO Certification Badge */
.bsf-iso-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(232,135,42,0.12);
    border: 1px solid rgba(232,135,42,0.3);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.bsf-iso-icon {
    width: 45px;
    height: 45px;
    background: var(--bsf-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bsf-iso-icon .fa {
    color: var(--bsf-white);
    font-size: 20px;
}

.bsf-iso-text strong {
    display: block;
    color: var(--bsf-accent);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.bsf-iso-text span {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 500;
}

/* Social Links in footer */
.bsf-footer .bsf-social-links {
    display: flex !important;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bsf-footer .bsf-social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8) !important;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bsf-footer .bsf-social-links li a:hover {
    background: var(--bsf-accent);
    color: var(--bsf-white) !important;
    transform: translateY(-3px);
}

/* Quick Links */
.bsf-footer .links-widget .list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bsf-footer .links-widget .list li {
    margin-bottom: 10px;
}

.bsf-footer .links-widget .list li a {
    color: rgba(255,255,255,0.7) !important;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.bsf-footer .links-widget .list li a::before {
    display: none;
}

.bsf-footer .links-widget .list li a:hover {
    color: var(--bsf-accent) !important;
    padding-left: 5px;
}

/* Contact List */
.bsf-footer .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bsf-footer .contact-list li {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.bsf-footer .contact-list li .fa {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--bsf-accent);
    font-size: 15px;
}

.bsf-footer .contact-list li a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bsf-footer .contact-list li a:hover {
    color: var(--bsf-accent) !important;
}

/* Footer Bottom */
.bsf-footer .footer-bottom {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding: 18px 0;
}

.bsf-footer .footer-bottom .copyright-text {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.bsf-footer .footer-bottom .copyright-text a {
    color: var(--bsf-accent);
    text-decoration: none;
}

.bsf-footer .footer-bottom .copyright-text a:hover {
    color: var(--bsf-white);
}

/* Scroll to top */
.bsf-footer .scroll-to-top {
    background: var(--bsf-accent);
    color: var(--bsf-white);
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.bsf-footer .scroll-to-top:hover {
    background: var(--bsf-white);
    color: var(--bsf-primary);
}

/* ============================================================
   15. ANIMATIONS
   ============================================================ */
@keyframes bsfFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bsfFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bsf-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.bsf-animate-on-scroll.bsf-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   16. RESPONSIVE DESIGN
   ============================================================ */

/* Large tablets / small desktops */
@media (max-width: 1199px) {
    .bsf-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bsf-hero .bsf-hero-title {
        font-size: 40px;
    }

    .bsf-contact-form-wrap {
        flex: 0 0 420px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .bsf-section-title h2 {
        font-size: 30px;
    }

    .bsf-hero .bsf-hero-title {
        font-size: 34px;
    }

    .bsf-hero .bsf-hero-content {
        padding: 0 40px;
    }

    .bsf-hero .carousel-inner .item img {
        min-height: 450px;
    }

    .bsf-trust-bar .bsf-trust-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .bsf-trust-item {
        flex: none;
        justify-content: center;
        padding: 20px 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .bsf-trust-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.1);
    }

    .bsf-trust-divider {
        display: none;
    }

    .bsf-about .bsf-about-grid {
        flex-direction: column;
        gap: 40px;
    }

    .bsf-about .bsf-about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .bsf-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bsf-faq-grid {
        flex-direction: column;
    }

    .bsf-faq-sidebar {
        flex: 1;
        width: 100%;
    }

    .bsf-contact-grid {
        flex-direction: column;
    }

    .bsf-contact-form-wrap {
        flex: 1;
        width: 100%;
    }

    .bsf-contact-info {
        text-align: center;
    }

    .bsf-contact-features {
        justify-content: center;
    }

    /* Mobile nav fixes */
    body.bsf-homepage .header-lower .nav-outer {
        display: block;
    }

    body.bsf-homepage .bsf-nav-logo {
        padding: 8px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    body.bsf-homepage .bsf-nav-logo img {
        height: 38px;
    }

    body.bsf-homepage .main-menu .navigation {
        display: block;
        padding-left: 0;
    }

    body.bsf-homepage .main-menu .navigation > li {
        float: none;
        padding: 0;
        margin-right: 0;
    }

    body.bsf-homepage .main-menu .navigation > li > a {
        padding: 12px 20px !important;
        font-size: 14px !important;
        border-bottom: 1px solid var(--bsf-border);
    }

    body.bsf-homepage .main-menu .navigation > li > a::before {
        display: none !important;
    }

    body.bsf-homepage .main-menu .navigation > li.bsf-nav-enquiry {
        margin: 10px 20px;
    }

    body.bsf-homepage .main-menu .navigation > li.bsf-nav-enquiry > a {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    /* Mobile header upper */
    body.bsf-homepage .header-upper .pull-right.upper-right {
        justify-content: center;
        gap: 15px;
    }

    body.bsf-homepage .header-upper .info-box .icon-box {
        width: 34px;
        height: 34px;
    }

    body.bsf-homepage .header-upper .info-box ul li {
        font-size: 12px;
    }
}

/* Small tablets / large phones */
@media (max-width: 767px) {
    .bsf-section-title h2 {
        font-size: 26px;
    }

    .bsf-section-title .bsf-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .bsf-hero .bsf-hero-title {
        font-size: 28px;
    }

    .bsf-hero .bsf-hero-desc {
        font-size: 15px;
    }

    .bsf-hero .bsf-hero-content {
        padding: 0 25px;
    }

    .bsf-hero .bsf-hero-actions {
        flex-direction: column;
    }

    .bsf-hero .bsf-hero-actions a {
        text-align: center;
        justify-content: center;
    }

    .bsf-hero .carousel-inner .item img {
        min-height: 500px;
    }

    .bsf-hero .carousel-control { display: none; }

    .bsf-trust-bar .bsf-trust-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .bsf-trust-item {
        flex: none;
        padding: 15px 10px;
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }

    .bsf-trust-item .bsf-trust-number {
        font-size: 26px;
    }

    .bsf-trust-item .bsf-trust-text {
        font-size: 11px;
        text-align: center;
    }

    .bsf-about .bsf-about-highlights {
        grid-template-columns: 1fr;
    }

    .bsf-about .bsf-about-content h2 {
        font-size: 26px;
    }

    .bsf-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bsf-contact-features {
        grid-template-columns: 1fr;
    }

    .bsf-contact-form-card {
        padding: 25px;
    }

    .bsf-faq-sidebar {
        padding: 30px;
    }

    .bsf-blogs .news-block {
        margin-bottom: 20px;
    }

    section.bsf-about,
    section.bsf-services,
    section.bsf-why-choose,
    section.bsf-gallery,
    section.bsf-faq,
    section.bsf-contact-section,
    section.bsf-testimonials,
    section.bsf-blogs {
        padding: 60px 0;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .bsf-hero .bsf-hero-title {
        font-size: 24px;
    }

    .bsf-hero .bsf-hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .bsf-hero .carousel-inner .item img {
        min-height: 450px;
    }

    .bsf-why-grid {
        grid-template-columns: 1fr;
    }

    .bsf-section-title h2 {
        font-size: 22px;
    }

    .bsf-about .bsf-experience-badge {
        position: relative;
        bottom: auto;
        left: auto;
        display: inline-block;
        margin-top: 15px;
    }

    .bsf-accordion-header {
        font-size: 14px;
        padding: 15px 18px;
    }

    .bsf-contact-form-card {
        padding: 20px;
    }

    .bsf-contact-info h2 {
        font-size: 26px;
    }
}

/* ============================================================
   17. UTILITY OVERRIDES
   ============================================================ */
/* Override old marquee section */
.bsf-homepage .clients-section[style*="padding:25px"] {
    display: none !important;
}

/* Override existing section padding conflicts */
.bsf-homepage .about-us,
.bsf-homepage .services-section,
.bsf-homepage .fun-fact-section,
.bsf-homepage .projects-section,
.bsf-homepage .call-to-action,
.bsf-homepage .call-back-section,
.bsf-homepage .team-section,
.bsf-homepage .testimonial-section,
.bsf-homepage .news-section,
.bsf-homepage .clients-section {
    /* Reset old padding and backgrounds - replaced by bsf- classes */
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
.bsf-homepage ::selection {
    background: var(--bsf-accent);
    color: var(--bsf-white);
}

/* Sticky buttons and widget hiding moved to header-global.css */
