/* Program Partners Page Specific Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

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

.hero-title {
    font-size: 3.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 2.5rem;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Opportunity Section */
.opportunity-section {
    padding: 80px 0;
    background: var(--background-light);
}

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

.opportunity-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.opportunity-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-dark);
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border-left: 4px solid var(--secondary-color);
}

/* Opportunity Section */
.opportunity {
    padding: 80px 0;
    background-color: var(--background-light);
}

.opportunity-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.opportunity-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.opportunity-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.opportunity-visual {
    display: flex;
    justify-content: center;
}

.opportunity-chart {
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--text-light);
    box-shadow: var(--shadow-medium);
}

.opportunity-chart i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.opportunity-chart h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5rem;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: white;
}

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.product-showcase:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.noosh-product {
    border-left: 5px solid #ff6b35;
}

.luccrei-product {
    border-left: 5px solid #4a90e2;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-logo-container {
    flex-shrink: 0;
}

.product-logo-large {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.product-intro {
    flex: 1;
}

.product-name {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.product-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-item p {
    color: var(--text-dark);
    line-height: 1.5;
}

.info-item ul {
    list-style: none;
    padding: 0;
}

.info-item li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.info-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Products Separator */
.products-separator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.separator-icon {
    background: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Application Form */
.application-form {
    background: linear-gradient(135deg, var(--background-light) 0%, #f8f9fa 100%);
    padding: 100px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.partner-form input:focus,
.partner-form select:focus,
.partner-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(111, 115, 178, 0.1);
}

.partner-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    padding: 1.25rem 3rem;
    min-width: 280px;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.form-submit-btn i {
    font-size: 1.2rem;
}

/* Target Profile Section - Horizontal Layout */
.target-profile .profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.target-profile .profile-card {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 1.8rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 200px;
}

.target-profile .profile-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
    border-color: var(--tertiary-color);
}

.target-profile .profile-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.target-profile .profile-title {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.target-profile .profile-description {
    color: var(--text-dark);
    line-height: 1.4;
    font-size: 0.9rem;
}

/* How It Works Section - Horizontal Layout */
.how-it-works .steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.how-it-works .step-item {
    flex: 1;
    text-align: center;
    background: white;
    padding: 2rem 1.3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.how-it-works .step-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.how-it-works .step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    margin: 0 auto 1.2rem;
    flex-shrink: 0;
}

.how-it-works .step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.how-it-works .step-title {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.how-it-works .step-description {
    color: var(--text-dark);
    line-height: 1.4;
    font-size: 0.85rem;
    flex: 1;
}

.how-it-works .step-arrow {
    color: var(--secondary-color);
    font-size: 1.3rem;
    align-self: center;
    margin: 0 0.3rem;
    flex-shrink: 0;
}

.form-submit-btn:hover {
    background: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .target-profile .profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .how-it-works .steps-container {
        gap: 1rem;
    }
    
    .how-it-works .step-item {
        padding: 1.8rem 1rem;
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .opportunity-intro,
    .opportunity-description {
        font-size: 1.1rem;
    }
    
    .opportunity-description {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-showcase {
        padding: 2rem;
    }
    
    .product-name {
        font-size: 1.6rem;
    }
    
    .product-tagline {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Target Profile Mobile */
    .target-profile .profile-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .target-profile .profile-card {
        padding: 2rem;
        min-height: auto;
    }
    
    .target-profile .profile-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .target-profile .profile-title {
        font-size: 1.1rem;
    }
    
    .target-profile .profile-description {
        font-size: 1rem;
    }
    
    /* How It Works Mobile */
    .how-it-works .steps-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .how-it-works .step-item {
        min-height: auto;
        padding: 2rem;
    }
    
    .how-it-works .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .how-it-works .step-title {
        font-size: 1.1rem;
    }
    
    .how-it-works .step-description {
        font-size: 0.95rem;
    }
    
    .how-it-works .step-arrow {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-submit-btn {
        min-width: auto;
        width: 100%;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .opportunity-section {
        padding: 60px 0;
    }
    
    .opportunity-intro,
    .opportunity-description {
        font-size: 1rem;
    }
    
    .opportunity-description {
        padding: 1rem;
    }
    
    .products-section {
        padding: 60px 0;
    }
    
    .product-showcase {
        padding: 1.5rem;
    }
    
    .product-logo-large {
        width: 60px;
        height: 60px;
    }
    
    .product-name {
        font-size: 1.4rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
}
