/* ========================================
   FRANCHISE PAGE - PREMIUM DESIGN
   ======================================== */

/* ========================================
   FRANCHISE HERO SECTION
   ======================================== */
.franchise-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 30px 0 80px;
    overflow: hidden;
}

.franchise-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7C3AED 0%, #0F172A 50%, #06B6D4 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float-shape 20s infinite ease-in-out;
}

.shape-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.shape-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: 10%;
    animation-delay: 5s;
}

.shape-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 40%;
    left: -50px;
    animation-delay: 10s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.franchise-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.franchise-hero-content {
    color: white;
    animation: fadeInLeft 1s ease;
}

.hero-badge-franchise {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    animation: pulse-badge 2s infinite;
}

.hero-badge-franchise i {
    color: #FCA5A5;
    animation: fire-flicker 1.5s infinite;
}

@keyframes fire-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.franchise-hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--font-primary);
}

.franchise-hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 35px;
}

.earning-highlight {
    background: linear-gradient(135deg, #FDE68A 0%, #34D399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 900;
}

.franchise-features-quick {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.quick-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.quick-feature i {
    color: #34D399;
    font-size: 18px;
}

.franchise-cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-franchise-primary,
.btn-franchise-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-franchise-primary {
    background: white;
    color: var(--purple-primary);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.btn-franchise-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
}

.btn-franchise-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-franchise-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-5px);
}

.franchise-trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge i {
    font-size: 32px;
    color: #FDE68A;
}

.trust-badge strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    font-family: var(--font-primary);
}

.trust-badge span {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

/* Franchise Hero Image */
.franchise-hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.franchise-card-float {
    position: absolute;
    background: white;
    color: var(--carbon-blue-darkest);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatCard 3s infinite ease-in-out;
    z-index: 10;
}

.franchise-card-float .card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-purple-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.franchise-card-float .card-content strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-purple-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-primary);
}

.franchise-card-float .card-content span {
    display: block;
    font-size: 12px;
    color: var(--text-medium);
}

.franchise-card-float.card-1 {
    top: 50px;
    left: 0;
    animation-delay: 0s;
}

.franchise-card-float.card-2 {
    top: 45%;
    right: 0;
    animation-delay: 1s;
}

.franchise-card-float.card-3 {
    bottom: 80px;
    left: 20%;
    animation-delay: 2s;
}

.franchise-main-visual {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 250px;
    color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   EARNINGS CALCULATOR
   ======================================== */
.earnings-calculator {
    padding: 60px 0;
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.earnings-box {
    background: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
    border-radius: 20px;
    padding: 50px;
    color: white;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}

.earnings-header {
    text-align: center;
    margin-bottom: 40px;
}

.earnings-header h3 {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.earnings-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1.2fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.earning-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.earning-item.earning-total {
    background: rgba(52, 211, 153, 0.2);
    border-color: #34D399;
}

.earning-label {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.earning-value {
    font-size: 28px;
    font-weight: 900;
    font-family: var(--font-primary);
}

.earning-multiplier,
.earning-equals {
    font-size: 40px;
    font-weight: 800;
    color: #FDE68A;
}

.earnings-note {
    text-align: center;
    font-size: 15px;
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
}

.earnings-note i {
    font-size: 20px;
    color: #FDE68A;
}

/* ========================================
   WHY FRANCHISE SECTION
   ======================================== */
.why-franchise {
    padding: 80px 0;
    background: var(--bg-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    border-color: var(--purple-primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-purple-cyan);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: var(--font-primary);
}

.benefit-card > p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list i {
    color: #34D399;
    font-size: 16px;
}

/* ========================================
   HOW FRANCHISE WORKS
   ======================================== */
.how-franchise-works {
    padding: 80px 0;
    background: white;
}

.franchise-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.franchise-step {
    position: relative;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
}

.franchise-step.animate-in {
    opacity: 1;
    transform: scale(1);
}

.franchise-step:hover {
    border-color: var(--purple-primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-number-big {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-purple-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.step-icon-big {
    width: 100px;
    height: 100px;
    background: var(--purple-lightest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    font-size: 40px;
    color: var(--purple-primary);
    transition: all 0.3s ease;
}

.franchise-step:hover .step-icon-big {
    background: var(--gradient-purple-cyan);
    color: white;
    transform: scale(1.1) rotate(-10deg);
}

.franchise-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.franchise-step p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-duration {
    display: inline-block;
    background: var(--cyan-primary);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.step-arrow {
    font-size: 30px;
    color: var(--purple-primary);
    text-align: center;
}

/* ========================================
   RESPONSIBILITIES SECTION
   ======================================== */
.responsibilities-section {
    padding: 80px 0;
    background: var(--gradient-carbon-purple);
    color: white;
}

.responsibilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.responsibilities-content h2,
.we-provide-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 35px;
    font-family: var(--font-primary);
}

.responsibility-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.responsibility-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.responsibility-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.resp-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-purple-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
}

.resp-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.resp-content p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.provide-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.provide-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.provide-item:hover {
    background: rgba(255, 255, 255, 0.12);
    padding-left: 20px;
}

.provide-item i {
    font-size: 18px;
    color: #34D399;
}

/* ========================================
   REQUIREMENTS SECTION
   ======================================== */
.requirements-section {
    padding: 80px 0;
    background: white;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.requirement-card {
    background: var(--bg-gray);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    border-color: var(--cyan-primary);
    background: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.req-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-purple-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.requirement-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.requirement-card p {
    font-size: 14px;
    color: var(--text-medium);
}

/* ========================================
   SUCCESS STORIES
   ======================================== */
.success-stories {
    padding: 80px 0;
    background: var(--bg-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    font-size: 60px;
    color: var(--purple-primary);
}

.testimonial-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.testimonial-info p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #FCD34D;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--border-light);
}

.testimonial-stats .stat {
    text-align: center;
}

.testimonial-stats strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient-purple-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.testimonial-stats span {
    display: block;
    font-size: 12px;
    color: var(--text-medium);
}

/* ========================================
   FAQs SECTION
   ======================================== */
.faqs-section {
    padding: 80px 0;
    background: white;
}

.faqs-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--purple-primary);
}

.faq-item.active {
    border-color: var(--purple-primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-primary);
}

.faq-question i {
    font-size: 20px;
    color: var(--purple-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
}

/* ========================================
   APPLICATION FORM
   ======================================== */
.application-form-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-xl);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: var(--font-primary);
}

.form-header p {
    font-size: 16px;
    color: var(--text-medium);
}

.franchise-application-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.franchise-application-form .form-group {
    display: flex;
    flex-direction: column;
}

.franchise-application-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 15px;
}

.franchise-application-form label i {
    color: var(--purple-primary);
    font-size: 16px;
}

.franchise-application-form input,
.franchise-application-form select,
.franchise-application-form textarea {
    padding: 15px 20px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.franchise-application-form input:focus,
.franchise-application-form select:focus,
.franchise-application-form textarea:focus {
    outline: none;
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.btn-submit-franchise {
    width: 100%;
    background: var(--gradient-purple-cyan);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    margin-top: 30px;
}

.btn-submit-franchise:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-medium);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #34D399;
}

/* ========================================
   FRANCHISE SUPPORT
   ======================================== */
.franchise-support {
    padding: 60px 0;
    background: white;
}

.support-box {
    background: var(--gradient-purple-cyan);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-xl);
}

.support-content {
    color: white;
}

.support-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.support-content p {
    font-size: 16px;
    opacity: 0.95;
}

.support-contacts {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--text-dark);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.support-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.support-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.support-btn i {
    font-size: 20px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .franchise-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .franchise-hero-image {
        order: -1;
        height: 350px;
    }
    
    .franchise-main-visual {
        height: 350px;
        font-size: 150px;
    }
    
    .earnings-grid {
        grid-template-columns: 1fr;
    }
    
    .earning-multiplier,
    .earning-equals {
        transform: rotate(90deg);
    }
    
    .franchise-steps {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .responsibilities-grid {
        grid-template-columns: 1fr;
    }
    
    .provide-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .franchise-hero-title {
        font-size: 36px;
    }
    
    .franchise-hero-subtitle {
        font-size: 16px;
    }
    
    .earning-highlight {
        font-size: 22px;
    }
    
    .franchise-features-quick {
        grid-template-columns: 1fr;
    }
    
    .franchise-card-float {
        display: none;
    }
    
    .earnings-box {
        padding: 30px 20px;
    }
    
    .earnings-header h3 {
        font-size: 24px;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .franchise-application-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .support-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .support-contacts {
        justify-content: center;
        width: 100%;
    }
    
    .support-btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .franchise-hero-title {
        font-size: 28px;
    }
    
    .franchise-cta-buttons {
        flex-direction: column;
    }
    
    .btn-franchise-primary,
    .btn-franchise-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .franchise-trust-badges {
        flex-direction: column;
    }
    
    .trust-badge {
        width: 100%;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}