/*---------------------------------------
  FRANCHISE & CSR SECTION
-----------------------------------------*/

.franchise-section {
    position: relative;
}

.business-pillar-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(184, 155, 94, 0.3);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
}

.business-pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-muted);
    background: rgba(35, 35, 51, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.business-pillar-icon {
    font-size: 3rem;
    color: var(--gold-muted);
    margin-bottom: 20px;
    display: inline-block;
}

.business-pillar-title {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.business-pillar-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.business-pillar-list li {
    color: var(--primary-color);
    opacity: 0.8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.business-pillar-list li i {
    color: var(--gold-muted);
    font-size: 0.8rem;
}

/* CSR Highlight */
.csr-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(184, 155, 94, 0.2);
    position: relative;
    overflow: hidden;
}

.csr-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.05) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.csr-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(184, 155, 94, 0.1);
    border: 1px solid var(--gold-muted);
    color: var(--gold-muted);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

/* Process Step */
.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold-muted);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(184, 155, 94, 0.2);
}

.step-text {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 991px) {
    .csr-section {
        padding: 40px 20px;
    }
}