/* Partners Page Specific Styles */

/* Partners Hero Section */
.partners-hero {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-weight: 500;
}

.become-partner-btn {
    background-color: #1f2937;
    color: white;
    border: none;
    border-radius: 0.375rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.become-partner-btn:hover {
    background-color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

/* Why Partner Section */
.why-partner-section {
    background-color: #e0e7ff;
    padding: 4rem 0;
}

.why-partner-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-partner-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.partner-text {
    order: 1;
}

@media (min-width: 1024px) {
    .partner-text {
        order: 0;
    }
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.partner-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.partner-stats {
    display: flex;
    gap: 2rem;
}

@media (max-width: 480px) {
    .partner-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

.stat-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.partner-image {
    order: 0;
}

@media (min-width: 1024px) {
    .partner-image {
        order: 1;
    }
}

.partner-img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Who Can Partner Section */
.who-can-partner-section {
    background-color: #e0e7ff;
    padding: 4rem 0;
    text-align: center;
}

.partner-types-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .partner-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .partner-types-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.partner-type-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.partner-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.partner-type-icon {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.partner-type-icon i {
    font-size: 2rem;
}

.partner-type-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

/* Our Partners Section */
.our-partners-section {
    background-color: #e0e7ff;
    padding: 4rem 0;
    text-align: center;
}

.partners-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.partner-logo-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.partner-logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo-placeholder {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

/* Partners Footer Styles */
.partners-footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.skillwallet-logo {
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
}

.contact-info i {
    color: #9ca3af;
}

.office-section {
    margin-bottom: 1.5rem;
}

.office-section:last-child {
    margin-bottom: 0;
}

.office-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.address i {
    color: #9ca3af;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.address-text {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.partner-type-card,
.stat-card,
.partner-logo-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .partner-type-card,
    .stat-card {
        padding: 1.5rem 1rem;
    }
}

/* Focus styles for accessibility */
.become-partner-btn:focus,
.footer-link:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .partners-hero {
        background: white !important;
        color: black !important;
    }
    
    .partners-footer {
        background: white !important;
        color: black !important;
        border-top: 1px solid #000;
    }
    
    .partner-type-card,
    .stat-card,
    .partner-logo-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #000;
    }
}