/* Partners Shortcode Styles */

.qv-partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.qv-partners-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.qv-partners-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.qv-partners-title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.qv-partners-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Partners Grid */
.qv-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    align-items: start;
}

/* Individual Partner Card */
.qv-partner-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.qv-partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.qv-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Partner Image */
.qv-partner-image {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    flex-shrink: 0;
}

.qv-partner-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.qv-partner-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.qv-partner-placeholder .dashicons {
    font-size: 32px;
    color: white;
}

/* Partner Info */
.qv-partner-info {
    padding: 20px;
}

.qv-partner-name {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.qv-partner-gender {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qv-partner-fullname {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
}

.qv-partner-village {
    text-align: center;
    margin-bottom: 18px;
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.4;
}

.qv-partner-village strong {
    color: #667eea;
    font-weight: 700;
}

/* Contact Information */
.qv-partner-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qv-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 13px;
}

.qv-contact-item:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.qv-contact-item .dashicons {
    font-size: 16px;
    color: #667eea;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.qv-contact-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 13px;
}

.qv-contact-link:hover {
    color: #667eea;
    text-decoration: none;
}

.qv-whatsapp-link {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 13px;
}

.qv-whatsapp-link:hover {
    color: #128c7e;
    text-decoration: none;
}

/* Partnership Form Section */
.qv-partnership-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Info */
.qv-contact-info {
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.qv-contact-info p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}

.qv-contact-info a {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.qv-contact-info a:hover {
    color: #128c7e;
    text-decoration: underline;
}

.qv-partnership-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.qv-partnership-form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.qv-partnership-form-header p {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0;
}

/* Form Styles */
.qv-partnership-form {
    max-width: 800px;
    margin: 0 auto;
}

.qv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.qv-form-group {
    display: flex;
    flex-direction: column;
}

.qv-form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.qv-form-group input,
.qv-form-group select,
.qv-form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.qv-form-group input:focus,
.qv-form-group select:focus,
.qv-form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.qv-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.qv-form-actions {
    text-align: center;
    margin-top: 30px;
}

.qv-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.qv-submit-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.qv-submit-btn .dashicons {
    font-size: 18px;
}

/* No Partners Message */
.qv-no-partners {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.qv-no-partners-icon {
    margin-bottom: 30px;
}

.qv-no-partners-icon .dashicons {
    font-size: 80px;
    color: #bdc3c7;
}

.qv-no-partners h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.qv-no-partners p {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0 0 40px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .qv-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .qv-partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .qv-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .qv-partners-title {
        font-size: 28px;
    }
    
    .qv-partners-subtitle {
        font-size: 16px;
    }
    
    .qv-partnership-form-section {
        padding: 30px 20px;
    }
    
    .qv-partner-name {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .qv-partner-contact {
        gap: 10px;
    }
    
    .qv-contact-item {
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .qv-partners-container {
        padding: 10px;
    }
    
    .qv-partners-header {
        padding: 30px 15px;
    }
    
    .qv-partners-title {
        font-size: 24px;
    }
    
    .qv-partner-image {
        padding: 20px 15px 15px;
    }
    
    .qv-partner-image img,
    .qv-partner-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .qv-partner-placeholder .dashicons {
        font-size: 40px;
    }
    
    .qv-partner-info {
        padding: 20px;
    }
    
    .qv-partner-fullname {
        font-size: 18px;
    }
}