/* Page header */
.page-header {
    background: var(--gradient-primary);
    padding: 5rem 0;
    border-radius: 0 0 40px 40px;
}

/* Business Model Card */
.model-card {
    background: var(--color-bg-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px var(--color-shadow);
    border: 1px solid var(--color-border);
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(47, 140, 143, 0.15);
}

.model-card.featured {
    border: 2px solid var(--color-accent);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-accent);
    color: var(--color-primary);
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.model-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.model-icon.franchise {
    background: rgba(47, 140, 143, 0.12);
    color: var(--color-secondary);
}

.model-icon.distributor {
    background: rgba(212, 166, 74, 0.12);
    color: var(--color-accent);
}

.model-icon.retail {
    background: rgba(30, 53, 87, 0.1);
    color: var(--color-primary);
}

/* Benefit Card */
.benefit-card {
    background: var(--color-bg-white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px var(--color-shadow);
    border: 1px solid var(--color-border);
    height: 100%;
    transition: all 0.2s;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-secondary);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    background: rgba(47, 140, 143, 0.1);
    color: var(--color-secondary);
}

/* Stat Box */
.stat-box {
    background: var(--color-bg-white);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 20px var(--color-shadow);
    border: 1px solid var(--color-border);
}

.stat-number-lg {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--color-bg-white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 12px 28px var(--color-shadow);
    border-left: 6px solid var(--color-accent);
    height: 100%;
}

/* Partner Card */
.partner-card {
    background: var(--color-bg-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 20px var(--color-shadow);
    border: 1px solid var(--color-border);
    transition: all 0.2s;
}

.partner-card:hover {
    transform: translateY(-4px);
}

/* Contact Form Card */
.form-card {
    background: var(--color-bg-white);
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px var(--color-shadow);
    border: 1px solid var(--color-border);
}

.form-control,
.form-select {
    border-radius: 12px;
    padding: 0.75rem 1.2rem;
    border: 1.5px solid var(--color-border);
    background-color: var(--color-bg-white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(47, 140, 143, 0.15);
}

/* Map Placeholder */
.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 28px var(--color-shadow);
    border: 1px solid var(--color-border);
    height: 100%;
    min-height: 300px;
}

.badge-accent {
    background-color: var(--color-accent);
    color: #1E3557;
    font-weight: 500;
}

/* Investment Range Card */
.investment-card {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 2rem;
    color: white;
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .page-header {
        padding: 3rem 0;
        border-radius: 0 0 20px 20px;
    }

    .model-card {
        padding: 2rem 1.5rem;
    }
}