/* Franchise Landing Page - Exact Match mr.blue Design */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: #0f172a;
    color: white;
}

.btn-primary:hover {
    background-color: #1e293b;
}

.btn-outline {
    background-color: white;
    color: #0f172a;
    border: 2px solid #0f172a;
}

.btn-outline:hover {
    background-color: #f8fafc;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    padding: 10px 18px;
    font-size: 13px;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

.btn-call {
    background-color: #0f172a;
    color: white;
    padding: 10px 18px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
}

/* Header */
.franchise-header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.logo h1 span {
    color: #2563eb;
}

.location-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-size: 13px;
    background: #f1f5f9;
    padding: 8px 14px;
    border-radius: 20px;
}

.header-actions {
    display: flex;
    gap: 10px;
}

/* Hero Section */
.hero-section {
    background: white;
    padding: 40px 0 60px;
    position: relative;
    overflow: visible;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 20px;
    align-items: start;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-left h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 14px;
    margin-bottom: 18px;
    color: #64748b;
    line-height: 1.7;
}

.hero-description strong {
    color: #2563eb;
    font-weight: 600;
}

.hero-guide {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 25px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    color: #475569;
    line-height: 1.5;
}

.stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
    padding: 15px 25px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background-color: #facc15;
    color: #0f172a;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 14px;
}

.hero-buttons .btn-primary:hover {
    background-color: #eab308;
}

.hero-buttons .btn-outline {
    border-color: #0f172a;
    color: #0f172a;
    background: white;
    padding: 14px 28px;
    font-weight: 600;
}

.hero-right {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image {
    position: relative;
}

.hero-image img {
    max-width: 380px;
}

/* Form Card - Overlay on Hero */
.franchise-form-section {
    position: absolute;
    top: 30px;
    right: 3%;
    z-index: 10;
    width: 280px;
    padding: 0;
}

.form-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
}

.form-card h2 {
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 18px;
    text-align: center;
    font-weight: 700;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    font-weight: 500;
    color: #475569;
    font-size: 12px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    transition: border-color 0.3s ease;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
}

.form-privacy {
    text-align: center;
    font-size: 10px;
    color: #94a3b8;
    margin-top: 10px;
}

/* Stats Section */
.stats-section {
    padding: 50px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.stat-box {
    text-align: center;
    padding: 25px 15px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.stat-content h3 {
    font-size: 12px;
    color: #475569;
    font-weight: 500;
    line-height: 1.5;
}

/* Section Titles */
.section-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto 35px;
    font-size: 13px;
    line-height: 1.7;
}

/* Why Section */
.why-section {
    padding: 45px 0 15px;
    background: white;
}

/* Opportunities Section */
.opportunities-section {
    padding: 25px 0 50px;
    background: white;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.opportunity-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 18px 14px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.opportunity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.opportunity-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
}

.card-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    white-space: nowrap;
}

.card-number {
    width: 26px;
    height: 26px;
    background: #0f172a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    margin: 0 auto 8px;
}

.card-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.opportunity-card h3 {
    font-size: 12px;
    color: #0f172a;
    margin-bottom: 6px;
    font-weight: 700;
    line-height: 1.3;
}

.opportunity-card p {
    font-size: 10px;
    color: #64748b;
    line-height: 1.5;
}

/* Laundry Section */
.laundry-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.laundry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.laundry-left h2 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 800;
}

.laundry-left > p {
    color: #475569;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.7;
}

.laundry-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    font-size: 22px;
}

.feature-item span {
    font-size: 11px;
    color: #475569;
    font-weight: 500;
}

.laundry-note {
    padding: 12px 14px;
    background: #fef3c7;
    border-radius: 8px;
    font-size: 11px;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.laundry-right {
    display: flex;
    justify-content: center;
}

.laundry-right img {
    max-width: 320px;
    border-radius: 12px;
}

/* Help Section */
.help-section {
    padding: 50px 0;
    background: white;
}

.help-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.help-left h2 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 800;
}

.help-left > p {
    color: #475569;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.7;
}

.help-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.help-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: #475569;
    padding: 8px;
    background: #f8fafc;
    border-radius: 6px;
}

.check-icon {
    color: #16a34a;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

.help-right {
    display: flex;
    justify-content: center;
}

.help-right img {
    max-width: 320px;
    border-radius: 12px;
}

/* Factors Section */
.factors-section {
    padding: 50px 0;
    background: #f8fafc;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.factor-item {
    text-align: center;
    padding: 22px 12px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.factor-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.factor-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.factor-item span {
    font-size: 11px;
    color: #475569;
    font-weight: 500;
}

/* Outlook Section */
.outlook-section {
    padding: 50px 0;
    background: white;
}

.outlook-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.outlook-left h2 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 800;
}

.outlook-left p {
    color: #475569;
    font-size: 13px;
    line-height: 1.7;
}

.outlook-right {
    display: flex;
    justify-content: center;
}

.outlook-right img {
    max-width: 320px;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
    background: #f8fafc;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 13px;
    color: #0f172a;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-toggle {
    margin-left: auto;
    font-size: 16px;
    color: #2563eb;
    font-weight: 700;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 18px 16px;
    color: #475569;
    font-size: 12px;
    line-height: 1.6;
}

/* Footer CTA */
.footer-cta {
    padding: 45px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.cta-logo h2 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 800;
}

.cta-logo h2 span {
    color: #facc15;
}

.cta-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 22px;
    font-size: 13px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background-color: #facc15;
    color: #0f172a;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .laundry-content,
    .help-content,
    .outlook-content {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 30px;
    }

    .franchise-form-section {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 350px;
        margin: 25px auto 0;
    }

    .stats-grid,
    .factors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .opportunities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .laundry-features,
    .help-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }

    .location-tag {
        display: none;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .hero-section {
        padding: 25px 0;
    }

    .hero-left h1 {
        font-size: 24px;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .stat-item {
        flex: 1;
        min-width: 85px;
        padding: 12px 15px;
    }

    .stat-number {
        font-size: 22px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats-grid,
    .factors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .opportunities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid,
    .factors-grid {
        grid-template-columns: 1fr;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .franchise-form-section {
        max-width: 100%;
    }
}
