/* Bu (Business Unit) Pages Styling - L'Abidjanaise D'Assurances */

.bu_header {
    background: linear-gradient(135deg, #3e444a 0%, #22262a 100%);
    min-height: 400px;
    position: relative;
    padding: 60px 0;
    color: #fff;
    overflow: hidden;
}

.bu_header::after {
    content: '';
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 127, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.bu_hero_content {
    position: relative;
    z-index: 2;
}

.bu_hero_content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.bu_hero_content .underline {
    width: 80px;
    height: 6px;
    background: #EF7F35;
    margin-bottom: 25px;
}

.bu_hero_content p {
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 650px;
    line-height: 1.5;
    opacity: 0.9;
}

.bu_hero_illustration {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bu_hero_illustration img {
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Breadcrumbs for BU */
.bu_breadcrumbs {
    padding: 15px 0;
    background: #fdfdfd;
    border-bottom: 1px solid #eee;
}

.bu_breadcrumbs p {
    margin: 0;
    color: #888;
    font-size: 14px;
}

.bu_breadcrumbs span {
    color: #EF7F35;
    font-weight: 600;
}

/* Main Content */
.bu_main_section {
    padding: 80px 0;
    background: #fff;
}

.bu_hook {
    color: #2d3436;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
}

.bu_content_text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.bu_content_text p {
    margin-bottom: 25px;
}

.bu_content_text strong {
    color: #2d3436;
    font-weight: 700;
}

/* Service Image Styles */
.service-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
    max-height: 400px;
}

.service-image-container:hover .service-image {
    transform: scale(1.05);
}

/* Feature Cards */
.bu_feature_cards {
    margin: 60px 0;
}

.feature_card {
    padding: 45px 35px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature_card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
    opacity: 0.9;
}

.feature_card .main_text {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.feature_card.teal {
    background: #EF7F35;
}

.feature_card.blue {
    background: #3e444a;
}

.feature_card.orange {
    background: #2d3436;
}

/* Appointment Form */
.bu_appointment {
    background: #f8f9fa;
    padding: 100px 0;
}

.appointment_card {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
}

.appointment_card h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    color: #2d3436;
}

.appointment_form .form-control {
    height: 60px;
    border-radius: 12px;
    border: 1px solid #e1e8ef;
    padding: 0 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.appointment_form .form-control:focus {
    border-color: #EF7F35;
    box-shadow: 0 0 0 4px rgba(239, 127, 53, 0.1);
    outline: none;
}

.appointment_form textarea.form-control {
    height: auto;
    padding: 20px 25px;
}

.submit_bu_btn {
    width: 100%;
    height: 60px;
    background: #EF7F35;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(239, 127, 53, 0.3);
}

.submit_bu_btn:hover {
    background: #e06d22;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(239, 127, 53, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Director Message */
.director-message {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-top: 20px;
    opacity: 0.95;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3436;
    text-align: center;
    margin-bottom: 60px;
}

/* Competitive Advantages */
.competitive-advantages {
    margin: 40px 0;
}

.advantage-item {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #EF7F35;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: #EF7F35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
}

.advantage-description {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1rem;
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.testimonial-icon {
    font-size: 3rem;
    color: #EF7F35;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #495057;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-weight: 700;
    color: #2d3436;
    font-size: 1.1rem;
}

/* Form Subtitle */
.form-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Margin Utilities */
.mb-10 {
    margin-bottom: 80px;
}

.bu_hook,
.bu_content_text,
.feature_card,
.appointment_card {
    animation: fadeInUp 0.8s ease-out forwards;
}

.bu_content_text {
    animation-delay: 0.2s;
}

.bu_feature_cards .row>div:nth-child(1) .feature_card {
    animation-delay: 0.4s;
}

.bu_feature_cards .row>div:nth-child(2) .feature_card {
    animation-delay: 0.5s;
}

.bu_feature_cards .row>div:nth-child(3) .feature_card {
    animation-delay: 0.6s;
}

.appointment_card {
    animation-delay: 0.8s;
}

/* Responsive */
@media (max-width: 991px) {
    .bu_hero_content h1 {
        font-size: 2.5rem;
    }

    .bu_hook {
        font-size: 1.8rem;
    }

    .feature_card .main_text {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .bu_header {
        padding: 80px 0 40px;
        text-align: center;
        min-height: 85vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .bu_hero_content .underline {
        margin: 0 auto 30px;
    }

    .bu_hero_illustration {
        margin-top: 30px;
        height: 40vh;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .bu_hero_illustration img {
        height: 100%;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .appointment_card {
        padding: 30px 20px;
    }
}