/* ================================================================
   FRANCHISE SECTION REDESIGN (OPEN FLOW & TRANSPARENT VEHICLE CART)
   ================================================================ */

.franchise-open-section {
    position: relative;
    background: radial-gradient(circle at 80% 50%, rgba(247, 206, 104, 0.12) 0%, rgba(250, 246, 240, 0.6) 60%, var(--bg-page) 100%);
    overflow: hidden;
}

.franchise-open-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194, 130, 19, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.franchise-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.franchise-headline-box .section-title {
    font-size: clamp(2.1rem, 3.8vw, 3rem);
    color: #1a0b04;
    line-height: 1.2;
}

.franchise-desc-text {
    font-size: 1.08rem;
    color: #5c4538;
    line-height: 1.75;
    margin-bottom: 28px;
}

.franchise-hotline-strip {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1.5px solid var(--border-gold-bright);
    padding: 12px 26px;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(194, 130, 19, 0.12);
    transition: var(--transition-smooth);
}

.franchise-hotline-strip:hover {
    transform: translateY(-3px);
    border-color: #d83a15;
    box-shadow: 0 10px 25px rgba(216, 58, 21, 0.18);
}

.hotline-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff3dc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c28213;
    font-size: 1.2rem;
}

.franchise-hotline-strip .hotline-title {
    font-size: 0.8rem;
    color: #8c5607;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.franchise-hotline-strip .hotline-number {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: #1a0b04;
    text-decoration: none;
    transition: color 0.2s ease;
}

.franchise-hotline-strip .hotline-number:hover {
    color: #d83a15;
}

.franchise-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 35px;
}

.franchise-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 18px;
    border: 1.5px solid rgba(194, 130, 19, 0.2);
    box-shadow: 0 4px 15px rgba(71, 37, 13, 0.04);
    transition: var(--transition-smooth);
}

.franchise-feature-item:hover {
    transform: translateY(-4px);
    border-color: #c28213;
    box-shadow: 0 10px 25px rgba(71, 37, 13, 0.1);
}

.franchise-feature-item i {
    color: #d83a15;
    font-size: 1.35rem;
    margin-top: 2px;
}

.franchise-feature-item strong {
    font-size: 0.98rem;
    color: #1a0b04;
    display: block;
    margin-bottom: 3px;
}

.franchise-feature-item p {
    font-size: 0.84rem;
    color: #6b5548;
    margin: 0;
    line-height: 1.45;
}

/* Open Vehicle Showcase (Transparent with soft floor shadow) */
.franchise-vehicle-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-ambient-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 206, 104, 0.35) 0%, rgba(216, 58, 21, 0.08) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(25px);
    pointer-events: none;
    z-index: 1;
}

.vehicle-img-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 10px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.franchise-vehicle-box:hover .vehicle-img-wrapper {
    transform: translateY(-8px) scale(1.02);
}

.cart-transparent-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(71, 37, 13, 0.22));
    transition: filter 0.4s ease, transform 0.4s ease;
}

.franchise-vehicle-box:hover .cart-transparent-img {
    filter: drop-shadow(0 28px 40px rgba(71, 37, 13, 0.3));
}

.vehicle-floating-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a0b04;
    border: 2px solid #f7ce68;
    padding: 10px 24px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.vehicle-floating-badge i {
    color: #f7ce68;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .franchise-split-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .franchise-features-list {
        grid-template-columns: 1fr;
    }
    .franchise-vehicle-box {
        margin-top: 15px;
    }
    .cart-transparent-img {
        max-width: 420px;
    }
}
