/* franchise-pro.css */
.franchise-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 130px;
    background-color: #0b0c10;
    overflow: hidden;
    color: #fff;
    perspective: 1000px;
}

.franchise-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
        url('images/restorent1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.3) blur(2px);
    z-index: 0;
}

.franchise-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.franchise-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transform: translateZ(50px);
}

.franchise-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    transform: translateZ(30px);
}

.franchise-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    transform: translateZ(40px);
}

.btn-3d-gold {
    background: linear-gradient(135deg, #eab308 0%, #10b981 100%);
    color: #000;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 6px 0 #ca8a04, 0 15px 20px rgba(234, 179, 8, 0.3);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-3d-gold:active {
    transform: translateY(6px);
    box-shadow: 0 0px 0 #ca8a04, 0 5px 10px rgba(234, 179, 8, 0.2);
}

.franchise-models-section {
    padding: var(--space-3xl) 0;
    background: #0b0c10;
    position: relative;
}

.models-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.model-card-3d {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.model-card-3d:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.model-img-wrapper {
    height: 300px;
    margin-bottom: 2rem;
    transform: translateZ(60px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.model-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.model-card-3d h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    transform: translateZ(40px);
}

.model-card-3d p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    transform: translateZ(30px);
}

.model-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    margin-bottom: 2.5rem;
    transform: translateZ(20px);
}

.model-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-weight: 500;
}

.model-feature i {
    color: var(--color-gold);
}

.enroll-section {
    padding: var(--space-3xl) 0;
    background: #06060b;
    position: relative;
}

.enroll-container {
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
}
