/* Franchise - Sayfa Stilleri */

/* Video Section */
.fr-video-card {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

    .fr-video-card .ratio {
        border-radius: 16px;
        overflow: hidden;
    }

    .fr-video-card iframe {
        border-radius: 16px;
    }

/* Bayilik Başvuru Section - Neden Auto Kale altında */
.fr-application-section {
    background: #ededed;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

    .fr-application-section .application-card {
        position: relative;
        width: 100%;
        border-radius: 15px;
    }

    .fr-application-section .application-tabs {
        width: 100%;
    }

        .fr-application-section .application-tabs .tab {
            color: #fff;
            border: 1px solid var(--yellow);
            border-bottom: none;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }

    .fr-application-section .application-form {
        width: 100%;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

/* Modal stilleri */
.application-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .application-modal-overlay.show {
        display: flex;
    }

.application-modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.application-modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

    .application-modal-icon.success {
        background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
        color: #059669;
    }

    .application-modal-icon.error {
        background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
        color: #dc2626;
    }

.application-modal-message {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 24px;
}

.application-modal-btn {
    min-width: 140px;
    padding: 12px 32px;
    font-weight: 600;
}

@media (max-width: 576px) {
    .application-modal-box {
        padding: 30px 20px;
    }

    .application-modal-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .application-modal-message {
        font-size: 0.95rem;
    }
}
