/* Franchise Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styling for Franchise Page */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    color: white;
    z-index: 100;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

/* Hero Section */
.franchise-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(28, 20, 171, 0.9) 0%, rgba(15, 10, 92, 0.9) 100%), url('images2/franchise.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 120px 20px 60px;
}

.franchise-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.franchise-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.franchise-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.highlight-text {
    color: #ffc107;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.cta-primary {
    background: #ffc107;
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.cta-primary:hover {
    background: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.6);
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: #1C14AB;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: #ffc107;
}

.stat-box p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Why Franchise Section */
.why-franchise {
    padding: 80px 20px;
    background: #f8f9fa;
}

.why-franchise h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1C14AB;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Franchise Services Section */
.franchise-services {
    padding: 80px 20px;
    background: white;
}

.franchise-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.services-grid-franchise {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-franchise-card {
    background: linear-gradient(135deg, #7c7cde 0%, #8e73c7 100%);
    padding: 40px 30px;
    border-radius: 20px;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.service-franchise-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.service-franchise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.service-franchise-card:hover::before {
    top: -30%;
    right: -30%;
}

.service-franchise-card img {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: block;
    filter: none;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    object-fit: contain;
}

.service-franchise-card:hover img {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.service-franchise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-franchise-card ul {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 1;
}

.service-franchise-card ul li {
    padding: 10px 0;
    font-size: 0.98rem;
    opacity: 0.95;
    line-height: 1.6;
    position: relative;
    padding-left: 5px;
}

.service-franchise-card ul li::before {
    content: '✓';
    margin-right: 10px;
    font-weight: bold;
    color: #ffc107;
    font-size: 1.1rem;
}

/* Investment Section */
.investment-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1C14AB 0%, #0f0a5c 100%);
    color: white;
}

.investment-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.investment-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.investment-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.investment-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.investment-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.investment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.investment-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 10px;
}

.investment-card .description {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Support Section */
.support-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.support-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.support-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #1C14AB;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.support-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1C14AB;
}

.support-card p {
    color: #666;
    line-height: 1.6;
}

/* Success Stories */
.success-stories {
    padding: 80px 20px;
    background: white;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #1C14AB;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
}

.story-text {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.story-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1C14AB;
}

.story-author p {
    font-size: 0.9rem;
    color: #666;
}

/* Process Section */
.process-section-franchise {
    padding: 80px 20px;
    background: #f8f9fa;
}

.process-section-franchise h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1C14AB;
}

.process-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Application Form Section */
.application-form-section {
    padding: 80px 20px;
    background: white;
}

.application-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.franchise-application-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.franchise-application-form input,
.franchise-application-form select,
.franchise-application-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.franchise-application-form input:focus,
.franchise-application-form select:focus,
.franchise-application-form textarea:focus {
    outline: none;
    border-color: #1C14AB;
    box-shadow: 0 0 0 3px rgba(28, 20, 171, 0.1);
}

.franchise-application-form textarea {
    margin-bottom: 30px;
    resize: vertical;
}

.submit-application-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-application-btn:hover {
    background: linear-gradient(135deg, #5568d3 0%, #653a8b 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
    font-size: 1.3rem;
    color: #1C14AB;
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1C14AB 0%, #0f0a5c 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons-final {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-info {
    font-size: 1.1rem;
    margin-top: 30px;
    opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .franchise-hero {
        padding: 100px 20px 40px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-box {
        padding: 20px 30px;
    }
    
    .benefits-grid,
    .services-grid-franchise,
    .investment-grid,
    .support-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .franchise-application-form {
        padding: 30px 20px;
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons-final {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .franchise-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .why-franchise h2,
    .franchise-services h2,
    .investment-section h2,
    .support-section h2,
    .success-stories h2,
    .process-section-franchise h2,
    .application-form-section h2,
    .faq-section h2,
    .final-cta h2 {
        font-size: 1.8rem;
    }
}
