.bittrust-hero-wrapper-98e595e6 {
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FA 100%);
}

.bt-hero-container-98e595e6 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

/* Flag Styles */
.bt-flag-wrap-98e595e6 {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    border-radius: 50%;
    animation: bt-float-98e595e6 6s ease-in-out infinite;
}

.bt-flag-glow-98e595e6 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(224, 161, 0, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
}

.bt-flag-img-98e595e6, .bt-flag-fallback-98e595e6 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(13, 27, 42, 0.1);
    border: 4px solid #fff;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bt-flag-fallback-98e595e6 svg {
    width: 50px;
    height: 50px;
}

@keyframes bt-float-98e595e6 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Typography */
.bt-label-98e595e6 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0D1B2A;
    opacity: 0.7;
    margin-bottom: 16px;
}

.bt-headline-98e595e6 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #0D1B2A;
}

.bt-subheadline-98e595e6 {
    font-size: 18px;
    font-weight: 400;
    color: #4A5568;
    line-height: 1.6;
    margin: 0 0 40px;
    max-width: 600px;
}

/* Buttons */
.bt-actions-98e595e6 {
    display: flex;
    gap: 20px; /* Increased gap for premium feel */
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.bt-btn-98e595e6 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px; /* Larger padding for premium feel */
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    min-width: 200px;
}

.bt-btn-icon-98e595e6 {
    font-size: 18px;
}

.bt-btn-icon-98e595e6 svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Primary Button (Call Now) */
.bt-btn-primary-98e595e6 {
    background-color: #E0A100; /* Default, can be overridden by controls */
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(224, 161, 0, 0.3); /* Default shadow */
    position: relative;
    overflow: hidden;
}

.bt-btn-primary-98e595e6::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.bt-btn-primary-98e595e6:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 161, 0, 0.4);
    color: #FFFFFF;
}

.bt-btn-primary-98e595e6:hover::after {
    left: 200%;
}

/* Secondary Button (View Locations) */
.bt-btn-secondary-98e595e6 {
    background-color: transparent;
    color: #0D1B2A;
    border: 2px solid #0D1B2A;
}

.bt-btn-secondary-98e595e6:hover {
    background-color: #0D1B2A;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 27, 42, 0.2);
}

/* Entrance Animations */
.fade-up-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .bt-headline-98e595e6 {
        font-size: 36px;
    }
    .bt-actions-98e595e6 {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .bt-btn-98e595e6 {
        width: 100%;
        max-width: 320px;
    }
}