/* 
 * Businesses Choose Section CSS
 */

.businesses-choose-section {
    padding: 80px 20px;
    background-color: #f7f6f2; /* Soft warm background */
    font-family: var(--font-primary, sans-serif);
}

.bc-container {
    max-width: 90% !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* Header */
.bc-header {
    text-align: center;
    margin-bottom: 60px;
}

.bc-eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a88a5b; /* Goldish brown */
    margin-bottom: 15px;
}

.bc-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid */
.bc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.bc-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Card Visual */
.bc-card-visual {
    position: relative;
    width: 100%;
    background: #eaeaea;
}

.bc-card-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.bc-img-placeholder {
    width: 100%;
    height: 250px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bc-img-placeholder::after {
    content: 'No Image Selected';
    font-size: 13px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Icon Wrap */
.bc-card-icon-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 3px solid #fff;
    padding: 0; /* Remove padding to let icon fill or stay centered */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden; /* Ensures the icon inside follows the round shape */
}

.bc-card-icon {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed to cover to ensure it fills the circle if it has a background */
    display: block;
}

/* Dynamic background colors for the icon containers - set to the wrap */
.bc-card:nth-child(1) .bc-card-icon-wrap { background-color: #B48E5D; }
.bc-card:nth-child(2) .bc-card-icon-wrap { background-color: #5B7C99; }
.bc-card:nth-child(3) .bc-card-icon-wrap { background-color: #6C8C56; }

/* Card Content */
.bc-card-content {
    padding: 65px 20px 40px; /* Top padding leaves room for the circle */
    text-align: center;
    flex-grow: 1;
}

.bc-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.bc-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .bc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .businesses-choose-section {
        padding: 60px 15px;
    }
    
    .bc-title {
        font-size: 28px;
    }
    
    .bc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
