/* Franchise Section Styling */
.fnfranchise-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.fnsection-title .fnsub-heading {
    color: #0056ff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
}

.fnsection-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin: 10px 0;
}

.fnsection-title h2 span {
    color: #0056ff;
}

.fnsection-title p {
    color: #666;
    font-size: 15px;
    margin-bottom: 50px;
}

/* Pricing Cards Layout */
.fnpricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.fnprice-card {
    background: #000;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.fnprice-card:hover {
    transform: translateY(-5px);
}

/* Popular Card Highlight */
.fnprice-card.popular {
    border: 2px solid #0056ff;
    box-shadow: 0 15px 35px rgba(0, 86, 255, 0.1);
}

.fnpopular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0056ff;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Card Header & Icons */
.fncard-header {
    text-align: center;
    margin-bottom: 25px;
}

.fnplan-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.fnplan-icon.platinum {
    background: linear-gradient(135deg, #0056ff, #00c6ff);
    color: #fff;
}

.fnplan-icon.gold {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
    color: #fff;
}

.fnplan-icon.silver {
    background: linear-gradient(135deg, #00b4db, #0083b0);
    color: #fff;
}

.fncard-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
	border-radius: 2vw;
    padding-bottom:2vw;
	text-transform: uppercase;
}

/* Features List */
.fncard-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.fnfeature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.fnf-icon {
    width: 35px;
    height: 35px;
    background: #fff700;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
}

.fnf-text .label {
    display: block;
    font-size: 1.3vw;
    color: #fff700;
	font-weight:900;
}

.fnf-text .value {
    font-size: 1.5vw;
    font-weight: 600;
    color: #fff;
}

.fncard-desc {
    font-size: 1vw;
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
    min-height: 40px;
}

/* Action Buttons */
.fncard-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.fnplatinum-btn {
    background: #0056ff;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 86, 255, 0.3);
}

.fnplatinum-btn:hover {
    background: #0040cc;
}

.fngold-btn {
    background: #f39c12;
    color: #fff;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.fngold-btn:hover {
    background: #d68910;
}

.fnsilver-btn {
    background: #0083b0;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 131, 176, 0.3);
}

.fnsilver-btn:hover {
    background: #00668b;
}

/* Responsive Design */
@media (max-width: 992px) {
    .fnpricing-container {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}